/* Elite GPS - Premium Light Design System */
:root {
    --bg: #ffffff;
    --section-alt: #f8fafc;
    --card-bg: #ffffff;
    --primary: #38bdf8; /* Elite Blue */
    --primary-dark: #0284c7;
    --secondary: #1e293b; /* Slate 800 */
    --accent: #22c55e; /* WhatsApp Green */
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
nav {
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    height: 90px;
    width: auto;
}

/* Hero */
.hero {
    padding: 200px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 24px;
}

h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-img img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(56, 189, 248, 0.15);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 12px;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

/* Contact Area */
.contact-section {
    background: var(--section-alt);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    border: 1px solid var(--border);
}

/* Buttons */
.btn {
    padding: 18px 44px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.whatsapp-btn {
    background: var(--accent);
    color: white;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    z-index: 1000;
}

/* Pricing Box */
.price-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.price-item {
    text-align: center;
}

.price-item h4 {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary);
}

.amount span {
    font-size: 1rem;
    opacity: 0.5;
}

.price-item:last-child .amount {
    color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--secondary);
    color: white;
    text-align: center;
}

@media (max-width: 968px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    h1 { font-size: 3rem; }
    .contact-section { padding: 40px 20px; }
}
