:root {
    --primary: #3B82F6;
    --secondary: #06B6D4;
    --accent: #10B981;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #6b7280 !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Hero Section */
.hero-section {
    padding: 190px 0 80px;
    background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 50%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

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

.badge-1 {
    top: 50px;
    right: 50px;
}

.badge-2 {
    bottom: 100px;
    left: 0;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: #f8f9fa;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    height: 40px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Service Card */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-body {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-body ul {
    list-style: none;
    padding-left: 0;
}

.service-body ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Process Section */
.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #fff 100%);
    position: relative;
}

.promo-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), transparent);
    top: 50px;
    left: 10%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), transparent);
    bottom: 100px;
    right: 15%;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Guide Card */
.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.guide-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.newsletter-input {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: none;
}

.newsletter-btn {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: none;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 50px 0 20px;
    background: #1a1a1a;
    color: white;
}

footer h4, footer h5 {
    color: white;
}

footer p {
    color: #d1d5db;
}

footer .text-muted {
    color: #d1d5db !important;
}

footer ul li {
    color: #d1d5db;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        width: 300px;
        height: 300px;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .badge-1 {
        top: 20px;
        right: 20px;
    }
    
    .badge-2 {
        bottom: 50px;
        left: 0;
    }
}