/* =========================
   Root Variables (Brand)
========================= */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --dark-color: #212529;
    --light-color: #f8f9fa;

    --gradient-primary: linear-gradient(135deg, #4361ee, #3a0ca3);
    --gradient-secondary: linear-gradient(135deg, #4cc9f0, #4361ee);
}

/* =========================
   Global
========================= */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* =========================
   Navbar
========================= */
.navbar-brand {
    font-size: 1.6rem;
    color: var(--primary-color) !important;
}

/* =========================
   Hero Section
========================= */
.hero-section {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
}

/* =========================
   Page Header
========================= */
.page-header {
    background: var(--gradient-primary);
    padding: 100px 0 60px;
}

/* =========================
   Section Title
========================= */
.section-title {
    position: relative;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--accent-color);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================
   Service Icon (Cards)
========================= */
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* =========================
   WhatsApp Button
========================= */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1ebc5c, #0f7a67);
    color: #fff;
}

/* =========================
   CTA Section
========================= */
.cta-section {
    background: var(--gradient-secondary);
    padding: 60px 0;
}

/* =========================
   Footer
========================= */
footer {
    background: var(--dark-color);
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

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

/* =========================
   Forms
========================= */
.form-control,
.form-select {
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 90px 0 60px;
    }

    .page-header {
        padding: 80px 0 50px;
    }
}



/* =========================
   Scroll Animations
========================= */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.animate-show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}


.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.animate-show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
