:root {
    --gan-primary: #28a745;
    --gan-secondary: #1a365d;
    --gan-light-bg: #f8f9fa;
    --gan-dark-text: #212529;
    --gan-border: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gan-dark-text);
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gan-primary) !important;
    letter-spacing: 0.05em;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gan-dark-text) !important;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--gan-primary);
    border-color: var(--gan-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-outline-primary {
    color: var(--gan-primary);
    border-color: var(--gan-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--gan-primary);
    border-color: var(--gan-primary);
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--gan-light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gan-secondary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--gan-primary);
    margin-bottom: 1rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 6rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gan-secondary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--gan-primary);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-bullets {
    list-style: none;
    padding: 0;
}

.hero-bullets li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #495057;
}

.hero-bullets li:before {
    content: "✓ ";
    color: var(--gan-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Process Timeline */
.process-step {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.process-step:not(:last-child):before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 2.5rem;
    bottom: -2rem;
    width: 2px;
    background-color: var(--gan-primary);
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--gan-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: white;
    font-size: 1.5rem;
}

/* Form */
.form-control:focus {
    border-color: var(--gan-primary);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--gan-secondary);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--gan-secondary);
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--gan-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gan-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}
