/* Beyond Finanz Professional Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: hsl(210, 100%, 14%);
    --primary-light: hsl(210, 60%, 25%);
    --primary-foreground: hsl(0, 0%, 98%);
    --gold: hsl(43, 100%, 50%);
    --gold-light: hsl(43, 100%, 92%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(210, 20%, 15%);
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    --accent: hsl(43, 100%, 92%);
    --border: hsl(214, 32%, 91%);
    
    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 5rem 0;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-subtle: 0 2px 8px hsla(210, 100%, 14%, 0.08);
    --shadow-medium: 0 8px 25px hsla(210, 100%, 14%, 0.12);
    --shadow-large: 0 20px 50px hsla(210, 100%, 14%, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header Styles */
.header {
    background-color: var(--primary);
    color: var(--primary-foreground);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 3rem;
    width: 3rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-foreground);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--primary-foreground);
    margin: 2px 0;
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--primary-light);
    margin-top: 1rem;
}

.nav-link-mobile {
    color: var(--primary-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link-mobile:hover {
    color: var(--gold);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--primary-foreground);
    box-shadow: var(--shadow-subtle);
    transform: scale(1);
}

.btn-hero:hover {
    box-shadow: var(--shadow-large);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--accent);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-professional {
    background: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow-subtle);
}

.btn-professional:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-medium);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), hsl(43, 80%, 60%));
    color: var(--primary);
    box-shadow: var(--shadow-medium);
    transform: scale(1);
}

.btn-gold:hover {
    box-shadow: var(--shadow-large);
    transform: scale(1.05);
}

.btn-contact {
    background: white;
    color: var(--primary);
    border: 1px solid white;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-contact:hover {
    background: hsl(0, 0%, 95%);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('src/assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(210, 100%, 14%, 0.95), hsla(210, 60%, 25%, 0.85));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 4xl;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 2xl;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 3xl;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 3xl;
}

.trust-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.trust-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title.white {
    color: white;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), hsl(43, 80%, 60%));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-divider.gold {
    background: var(--gold);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 4xl;
    margin: 0 auto;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--background), var(--muted));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.about-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold), hsl(43, 80%, 60%));
    color: var(--primary);
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--muted-foreground);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 6xl;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-4px);
}

.service-header {
    background: linear-gradient(180deg, var(--background), var(--muted));
    padding: 2rem 2rem 1.5rem;
    text-align: center;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: var(--transition);
}

.blue-gradient {
    background: linear-gradient(135deg, hsl(220, 100%, 50%), hsl(220, 100%, 60%));
    color: white;
}

.green-gradient {
    background: linear-gradient(135deg, hsl(140, 100%, 40%), hsl(140, 100%, 50%));
    color: white;
}

.amber-gradient {
    background: linear-gradient(135deg, hsl(45, 100%, 50%), hsl(45, 100%, 60%));
    color: white;
}

.purple-gradient {
    background: linear-gradient(135deg, hsl(270, 100%, 50%), hsl(270, 100%, 60%));
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-content {
    padding: 2rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.service-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--gold);
    border-radius: 50%;
    margin: 0.5rem 0.75rem 0 0;
    flex-shrink: 0;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--background), var(--muted));
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 6xl;
    margin: 0 auto 4rem;
}

.products-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-large);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.gold-bg {
    background: var(--gold-light);
}

.accent-bg {
    background: var(--accent);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.products-image {
    position: relative;
}

.product-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
}

.cta-section {
    text-align: center;
}

.cta-card {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--primary);
    color: var(--primary-foreground);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 6xl;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card, .hours-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.75rem;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--gold);
}

.contact-header h3 {
    font-size: 1.5rem;
}

.director-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-small {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-values {
    color: rgba(255, 255, 255, 0.9);
}

.contact-values div {
    margin-bottom: 0.25rem;
}

.hours-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--gold), hsl(43, 80%, 60%));
    color: var(--primary);
    padding: 3rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.contact-cta-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.8);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-footer p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-company {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 2.5rem;
    width: 2.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-certifications {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-certifications div {
    margin-bottom: 0.25rem;
}

.footer-links h3, .footer-services h3 {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-light);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .contact-buttons {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-legal {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-company {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.nav-link-mobile:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Animation classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}