@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #2563eb; /* Deep vibrant blue */
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --accent-color: #ef4444; /* Premium red for urgent */
    --accent-dark: #dc2626;
    --bg-main: #f8fafc;
    --text-dark: #0f172a;
    --text-body: #475569;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.05);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

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

/* Typography Details */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section with Premium Mesh-like Gradient */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 10% 10%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(239, 68, 68, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 10%, rgba(59, 130, 246, 0.05) 0px, transparent 50%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-body);
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

/* Call Button - Very Premium */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: white;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 15px 30px -10px rgba(239, 68, 68, 0.5);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-call:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.6);
}

.btn-call svg {
    width: 24px;
    height: 24px;
    animation: phoneRing 2.5s infinite;
}

/* Sections */
section {
    padding: 8rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--text-dark);
}

/* Services Grid UI/UX */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Transforming the simple UL list into a premium grid */
.services-list {
    list-style: none;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.services-list li {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-light);
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-dark);
}

.services-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.services-list li::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Image wrapper with nice soft UI shadow */
.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 2rem 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-content p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-content a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--accent-color);
}

.copyright {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneRing {
    0%, 10%, 20%, 100% { transform: rotate(0); }
    5%, 15% { transform: rotate(15deg); }
    7.5%, 17.5% { transform: rotate(-15deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 { 
        grid-template-columns: 1fr; 
        gap: 4rem;
    }
    .image-wrapper {
        transform: none;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 8rem 1rem 3rem; }
    .hero h1 { font-size: 2.5rem; }
    section { padding: 4rem 1rem; }
    .card { padding: 2rem; }
}
