* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.display-6 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lead {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.navbar-brand, .brand-primary, .brand-secondary, .brand-footer-primary, .brand-footer-secondary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Color Variables */
:root {
    --primary-color: #A62152;
    --secondary-color: #4561AF;
    --primary-hover: #C8356B;
    --secondary-hover: #5C7BD1;
    --accent-color: #FFD700;
    --text-light: rgba(255, 255, 255, 0.75);
}

/* General Hover Effects */
.hover-primary:hover {
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

.text-light-emphasis {
    color: var(--text-light) !important;
}

/* Button Styles */
.btn-outline-light:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transition: all 0.3s ease;
}

footer .btn-outline-light:nth-child(3):hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

/* Custom button hover effects */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus,
.btn-primary-custom:active,
.btn-primary-custom:focus-visible {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: white !important;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover,
.btn-secondary-custom:focus,
.btn-secondary-custom:active,
.btn-secondary-custom:focus-visible {
    background-color: var(--secondary-hover) !important;
    border-color: var(--secondary-hover) !important;
    color: white !important;
}

.hero {
    position: relative;
    overflow: hidden;
    background-image: url(../images/heroBackground.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

[data-bs-theme="dark"] .hero {
    background-image: none !important;
}

#hero .text-white {
    margin-bottom: 4vh;
}

#hero-main-content {
    margin-bottom: 4vh;
}

#hero-disclaimer {
    margin-top: 3vh;
    padding-bottom: 3vh;
}

#hero .text-white h1 {
    margin-bottom: 3vh;
}

#hero .text-white .lead {
    margin-bottom: 4vh;
}

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

.company-badge {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.accent-text {
    color: var(--accent-color) !important;
    font-weight: 800;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.hero-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Brand Colors */
.brand-primary {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.brand-secondary {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.brand-footer-primary {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.brand-footer-secondary {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

/* Feature Cards */
.feature-card {
    background: hsla(0, 0%, 0%, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.feature-card-equal-height {
    height: 100%;
    min-height: 200px;
}

.feature-icon-container {
    background: hsla(0, 0%, 100%, 0.85);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Customer Badge */
.customers-badge {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.customer-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.customer-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: -10px;
    border: 3px solid #fff;
}

.customer-avatars .more {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stats Section */
.stats-row .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.stats-row .stat-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-content p {
    opacity: 0.8;
}

/* CTA Section */
.cta-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(166, 33, 82, 0.6) 50%, rgba(166, 33, 82, 0.3) 100%), url(../images/landing-cta.jpg);
    background-size: cover;
    background-position: center;
}

/* Contact Section */
.contact-section-reduced {
    padding-top: 2rem !important;
    margin-top: -2.5rem !important;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Accordion Styles */
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    background: transparent;
}

.faq-accordion .accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    color: #6c757d;
    line-height: 1.7;
}

/* Copyright Text Colors */
.copyright-primary {
    color: var(--primary-color);
    font-weight: 600;
}

.copyright-secondary {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive Design with Proportional Spacing */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 70vh !important;
        padding-top: 4vh;
        padding-bottom: 4vh;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    #hero .text-white {
        margin-bottom: 3vh !important;
    }
    
    #hero-main-content {
        margin-bottom: 3vh !important;
    }
    
    #hero-disclaimer {
        margin-top: 2.5vh !important;
        padding-bottom: 2.5vh !important;
    }
    
    /* Feature Cards responsive - stack vertically on tablet/mobile */
    #hero .row.g-4 .col-12.col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: -2rem !important;
    }
    
    #hero .feature-card-equal-height {
        height: auto !important;
        min-height: auto !important;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 3vh;
        padding-bottom: 3vh;
    }
    
    #hero .text-white h1 {
        margin-bottom: 2.5vh !important;
    }
    
    #hero .text-white .lead {
        margin-bottom: 3vh !important;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .company-badge {
        font-size: 0.9rem;
    }
    
    .stat-content h4 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding-top: 2vh;
        padding-bottom: 2vh;
    }
    
    #hero .text-white {
        margin-bottom: 2vh !important;
    }
    
    #hero-main-content {
        margin-bottom: 2vh !important;
    }
    
    #hero-disclaimer {
        margin-top: 2vh !important;
        padding-bottom: 2vh !important;
    }
    
    #hero .text-white h1 {
        margin-bottom: 2vh !important;
    }
    
    #hero .text-white .lead {
        margin-bottom: 2.5vh !important;
    }
}

/* Large screens - maintain proportional spacing */
@media (min-width: 1200px) {
    .hero {
        padding-top: 6vh;
        padding-bottom: 6vh;
    }
    
    #hero .text-white {
        margin-bottom: 5vh !important;
    }
    
    #hero-main-content {
        margin-bottom: 5vh !important;
    }
    
    #hero-disclaimer {
        margin-top: 4vh !important;
        padding-bottom: 4vh !important;
    }
    
    #hero .text-white h1 {
        margin-bottom: 3.5vh !important;
    }
    
    #hero .text-white .lead {
        margin-bottom: 4.5vh !important;
    }
}

/* Extra large screens - maintain proportions */
@media (min-width: 1400px) {
    .hero {
        padding-top: 7vh;
        padding-bottom: 7vh;
    }
    
    #hero .text-white {
        margin-bottom: 5vh !important;
    }
    
    #hero-main-content {
        margin-bottom: 5vh !important;
    }
    
    #hero-disclaimer {
        margin-top: 4vh !important;
        padding-bottom: 4vh !important;
    }
}

[data-bs-theme="dark"] footer.bg-dark {
    background-color: rgba(var(--ins-secondary-bg-rgb),var(--ins-bg-opacity))!important;
}

