/* ========================================
   BUZYPRO COMPONENT SYSTEM
   Reusable Classes for Service Pages
   ======================================== */

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.75rem;
}

.card-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.text-small-muted {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */

.section {
    padding: 5rem 0;
}

.section--compact {
    padding: 3rem 0;
}

.section--spaced {
    padding: 6rem 0;
}

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

.section--gradient {
    background: linear-gradient(135deg, #e8f0ff 0%, #f0e8ff 100%);
}

/* ========================================
   GRADIENT UTILITIES
   ======================================== */

.gradient-vibrant {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.gradient-subtle {
    background: linear-gradient(135deg, #f0e8ff 0%, #e8f8ff 100%);
}

.gradient-team {
    background: linear-gradient(135deg, #ffe8f0 0%, #fff0e8 100%);
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* ========================================
   CARD COMPONENTS
   ======================================== */

.card-base {
    border-radius: 12px;
    background: white;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-base:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 117, 0.2);
}

/* ========================================
   HERO SECTION COMPONENTS
   ======================================== */

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-accent {
    color: #FFD700;
}

.hero-lead {
    font-size: 1.3rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
}

.hero-inner-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-icon-wrapper {
    margin-bottom: 2rem;
}

.hero-icon {
    font-size: 4rem;
    color: #FFD700;
}

.hero-subtitle {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.hero-stats {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   BUTTON COMPONENTS
   ======================================== */

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

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

.btn-contrast:active,
.btn-contrast:focus {
    background-color: #084a6c;
    border-color: #084a6c;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(15, 76, 117, 0.5);
}

/* ========================================
   NAVBAR COMPONENTS
   ======================================== */

.navbar-subtext {
    font-size: 0.6rem;
}

/* ========================================
   TESTIMONIAL COMPONENTS
   ======================================== */

.testimonials-title {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonials-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
}

.carousel-control-custom {
    position: absolute;
    bottom: -60px;
    width: auto;
    height: auto;
    opacity: 1;
}

.carousel-control-custom .carousel-control-prev-icon,
.carousel-control-custom .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 12px;
    width: auto;
    height: auto;
}

.carousel-control-custom:hover .carousel-control-prev-icon,
.carousel-control-custom:hover .carousel-control-next-icon {
    background-color: var(--secondary-color);
}

.carousel-indicators-custom {
    position: relative;
    bottom: auto;
    z-index: 15;
}

.carousel-indicators-custom button {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 0 6px;
}

.carousel-indicators-custom button.active {
    background-color: var(--primary-color);
}

/* ========================================
   ABOUT SECTION COMPONENTS
   ======================================== */

.about-title {
    color: var(--primary-color);
    font-size: 2rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.placeholder-image-large {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 76, 117, 0.3);
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.placeholder-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.placeholder-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ========================================
   TEAM SECTION COMPONENTS
   ======================================== */

.team-title {
    color: var(--primary-color);
    font-size: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.team-name {
    color: var(--primary-color);
}

/* ========================================
   CONTACT FORM COMPONENTS
   ======================================== */

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ========================================
   FOOTER COMPONENTS
   ======================================== */

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    min-width: 300px;
}

.footer-compliance-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-compliance-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-compliance-links a:hover {
    color: #FFD700;
}

.footer-compliance-links .divider {
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #FFD700;
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .hero-image-wrapper {
        height: 300px;
        margin-top: 2rem;
    }

    .hero-float-circle {
        width: 200px;
        height: 200px;
    }

    .hero-inner-circle {
        width: 130px;
        height: 130px;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-right-section {
        justify-content: center;
        width: 100%;
    }

    .footer-compliance-links {
        justify-content: center;
    }

    .carousel-control-custom {
        bottom: -50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-flex.gap-3 > * {
        width: 100%;
    }

    .team-card {
        padding: 1.5rem;
    }

    .placeholder-image-large {
        height: 300px;
    }

    .carousel-indicators-custom {
        margin-top: 1.5rem !important;
    }
}
