/* HUGO Brand Colors and Custom Styles */
:root {
    --hugo-red: #0e765c;
    --hugo-dark: #1a1a1a;
    --hugo-light: #f8f9fa;
}

/* Custom HUGO Button Styles */
.btn-hugo {
    background-color: var(--hugo-red);
    border-color: var(--hugo-red);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-hugo:hover {
    background-color: #c71530;
    border-color: #c71530;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(227, 24, 55, 0.3);
}

.btn-outline-hugo {
    color: var(--hugo-red);
    border-color: var(--hugo-red);
    background-color: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-hugo:hover {
    background-color: var(--hugo-red);
    border-color: var(--hugo-red);
    color: white;
    transform: translateY(-1px);
}

/* Text Colors */
.text-hugo {
    color: var(--hugo-red) !important;
}

.bg-hugo {
    background-color: var(--hugo-red) !important;
}

.border-hugo {
    border-color: var(--hugo-red) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-hero .price-large {
    color: var(--hugo-red);
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-icon:hover i {
    transform: scale(1.1);
}

/* Cards Hover Effects */
.card {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

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

/* Pricing Cards */
.price-display {
    padding: 1rem 0;
}

.price-display .h2 {
    color: var(--hugo-red);
    font-weight: 700;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Payment Methods */
.payment-methods i {
    transition: transform 0.3s ease;
}

.payment-methods i:hover {
    transform: scale(1.1);
}

/* Accordion Custom Styles */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--hugo-light);
    color: var(--hugo-red);
}

.accordion-button:focus {
    border-color: var(--hugo-red);
    box-shadow: 0 0 0 0.25rem rgba(227, 24, 55, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

footer .social-links a {
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

footer .social-links a:hover {
    color: var(--hugo-red) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }

    .price-large {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {

    .btn-hugo,
    .btn-outline-hugo {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .card-body {
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge Styles */
.badge {
    font-size: 0.75em;
    font-weight: 600;
}

/* List Styling */
.list-unstyled li {
    padding: 0.25rem 0;
}

/* Guarantee Section */
.guarantee {
    background-color: rgba(227, 24, 55, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--hugo-red);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--hugo-red);
    outline-offset: 2px;
}

/* Loading Animation */
.spinner-hugo {
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--hugo-red);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}