/* SPRONEXT Website Styles - SmartFoodNet inspired design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-teal { color: var(--spronext-teal); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--spronext-teal);
    color: white;
}

.btn-primary:hover {
    background-color: var(--spronext-teal-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--spronext-teal);
    border: 2px solid var(--spronext-teal);
}

.btn-outline:hover {
    background-color: var(--spronext-teal);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
    max-width: 200px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--spronext-teal);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

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

.graphic-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--spronext-teal);
    opacity: 0.8;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: var(--spronext-teal-light);
    opacity: 0.6;
    top: 50px;
    right: 50px;
    animation-delay: -2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: var(--spronext-teal-dark);
    opacity: 0.4;
    bottom: 100px;
    left: 30px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Vision Section */
.vision {
    background-color: var(--bg-secondary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vision-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--spronext-teal), var(--spronext-teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--spronext-teal);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    position: relative;
}

.service-graphic {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--spronext-teal), var(--spronext-teal-light));
}

.bg-blue { background: linear-gradient(135deg, var(--accent-blue), #6bb6ff); }
.bg-green { background: linear-gradient(135deg, var(--accent-green), #50e3c2); }
.bg-teal { background: linear-gradient(135deg, var(--spronext-teal), var(--spronext-teal-light)); }

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--spronext-teal);
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.service-features li:before {
    content: "✓";
    color: var(--spronext-teal);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Stats Section */
.stats {
    background: var(--spronext-teal);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Partners Section */
.partners {
    background-color: var(--bg-secondary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--spronext-teal);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--spronext-gray-300);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--spronext-teal);
}

/* Footer */
.footer {
    background-color: var(--spronext-gray-900);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    margin-top: 1rem;
    color: var(--spronext-gray-300);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--spronext-teal);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--spronext-gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--spronext-gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--spronext-gray-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-list {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
/* Footer logo styling */
.footer-logo {
    filter: brightness(0) invert(1);
}

/* Hero image styling for PNG images */
.hero-circles,
.hero-logo-with-tagline {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-logo-with-tagline:hover {
    opacity: 1;
}

/* Hero PNG image styles */
.hero-circles {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-with-tagline {
    max-width: 100%;
    height: auto;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

/* Override hero-graphic for PNG images */
.hero-graphic {
    flex-direction: column !important;
    gap: 2rem !important;
}

/* Hide old circle elements */
.graphic-element,
.circle-1,
.circle-2, 
.circle-3 {
    display: none !important;
}

/* Fix overlapping hero images */
.hero-circles {
    max-width: 70% !important;
    height: auto !important;
    margin-bottom: 2rem !important;
    z-index: 1 !important;
    position: relative !important;
    display: block !important;
}

.hero-logo-with-tagline {
    max-width: 85% !important;
    height: auto !important;
    margin-top: 1rem !important;
    z-index: 2 !important;
    position: relative !important;
    display: block !important;
}

/* Improve hero graphic layout */
.hero-graphic {
    padding: 2rem 0 !important;
    min-height: 450px !important;
    justify-content: space-between !important;
}

/* Sync animation timing to prevent overlap */
.hero-circles {
    animation: float 6s ease-in-out infinite !important;
    animation-delay: 0s !important;
}

.hero-logo-with-tagline {
    animation: float 6s ease-in-out infinite !important;
    animation-delay: 0s !important;
}

/* Responsive adjustments for hero images */
@media (max-width: 768px) {
    .hero-circles {
        max-width: 90% !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-logo-with-tagline {
        max-width: 95% !important;
        margin-top: 0.5rem !important;
    }
    
    .hero-graphic {
        min-height: 350px !important;
        padding: 1rem 0 !important;
    }
}

/* Fix hero-graphic positioning to prevent overlapping */
.hero-graphic {
    position: relative \!important;
    transform: none \!important;
    overflow: hidden \!important;
    contain: layout style \!important;
}

/* Ensure hero section doesn't interfere with subsequent sections */
.hero {
    overflow: visible \!important;
    position: relative \!important;
    z-index: 1 \!important;
}

/* Add proper spacing after hero section */
.vision {
    margin-top: 0 \!important;
    position: relative \!important;
    z-index: 2 \!important;
}

/* Reset any transforms on hero images */
.hero-circles,
.hero-logo-with-tagline {
    transform: none \!important;
}

/* Fix hero-graphic positioning - corrected */
.hero-graphic {
    position: relative !important;
    transform: none !important;
    overflow: hidden !important;
}

.hero {
    overflow: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.vision {
    margin-top: 0 !important;
    position: relative !important;
    z-index: 2 !important;
    clear: both !important;
}

/* Replace float animation with margin-based animation to avoid transforms */
@keyframes floatSafe {
    0%, 100% { margin-top: 0px; }
    50% { margin-top: -10px; }
}

.hero-circles {
    animation: floatSafe 6s ease-in-out infinite !important;
}

.hero-logo-with-tagline {
    animation: floatSafe 6s ease-in-out infinite !important;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--spronext-teal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hide desktop nav */
.desktop-nav {
    display: none;
}


/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--spronext-gray-200);
    background: var(--spronext-teal);
}

.mobile-menu-header img {
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-sections {
    padding: 2rem 0;
}

.mobile-menu-section {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.mobile-menu-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--spronext-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--spronext-teal);
}

.mobile-menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-section ul li {
    margin-bottom: 0.75rem;
}

.mobile-menu-section ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-section ul li a:hover {
    color: var(--spronext-teal);
    border-left-color: var(--spronext-teal);
    padding-left: 1.5rem;
}

.mobile-menu-contact {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--spronext-gray-200);
    margin-top: auto;
}

.mobile-menu-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--spronext-teal) 0%, var(--spronext-teal-light) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Company Overview */
.company-overview {
    padding: 5rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h3 {
    color: var(--spronext-teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.key-strengths {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.key-strengths h4 {
    color: var(--spronext-teal);
    margin-bottom: 1rem;
}

.key-strengths ul {
    list-style: none;
    padding: 0;
}

.key-strengths li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.overview-image img {
    width: 100%;
    height: auto;
}

/* Company Values */
.company-values {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--spronext-teal);
    margin-bottom: 1rem;
}

/* Company Culture */
.company-culture {
    padding: 5rem 0;
}

.culture-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    padding: 2rem;
    border-left: 4px solid var(--spronext-teal);
    background: white;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.culture-item h3 {
    color: var(--spronext-teal);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Recruitment */
.recruitment {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.recruitment-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.recruitment-benefits {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item h5 {
    color: var(--spronext-teal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recruitment-contact {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Service Detail */
.service-detail {
    padding: 5rem 0;
}

.service-detail.alt {
    background: var(--bg-secondary);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.alt .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h3 {
    color: var(--spronext-teal);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item h4 {
    color: var(--spronext-teal);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-approach {
    margin-top: 3rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--spronext-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--spronext-teal);
    margin-bottom: 0.5rem;
}

.digital-benefits ul {
    list-style: none;
    padding: 0;
}

.digital-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.digital-benefits li:before {
    content: "✓";
    color: var(--spronext-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.program-card h4 {
    color: var(--spronext-teal);
    margin-bottom: 0.5rem;
}

/* Service Process */
.service-process {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--spronext-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--spronext-teal);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--spronext-teal);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--spronext-teal);
}

/* Support Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--spronext-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--spronext-teal);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.consultation-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.consultation-info h3 {
    color: var(--spronext-teal);
    margin-bottom: 1rem;
}

.consultation-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.consultation-benefits li {
    padding: 0.5rem 0;
    color: var(--text-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--spronext-gray-300);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--spronext-teal);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question h3 {
    margin: 0;
    color: var(--spronext-teal);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--spronext-teal);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Newsroom Section */
.newsroom-section {
    padding: 5rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-item h3 {
    margin-bottom: 1rem;
}

.news-item h3 a {
    color: var(--spronext-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: var(--spronext-teal-dark);
}

.news-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.news-link {
    color: var(--spronext-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--spronext-teal-dark);
}

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

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .overview-content,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .approach-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hide by default */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--spronext-teal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex; /* Show on mobile */
    }

    .desktop-nav {
        display: none; /* Hide desktop nav on mobile */
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -300px; /* Start off-screen */
    width: 300px;
    height: 100%;
    background: white;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0; /* Slide in */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--spronext-gray-200);
    background: var(--spronext-teal);
}

.mobile-menu-header img {
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-sections {
    padding: 2rem 0;
    flex-grow: 1;
}

.mobile-menu-section {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.mobile-menu-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--spronext-teal);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--spronext-teal);
}

.mobile-menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-section ul li {
    margin-bottom: 0.75rem;
}

.mobile-menu-section ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-section ul li a:hover {
    color: var(--spronext-teal);
    border-left-color: var(--spronext-teal);
    padding-left: 1.5rem;
    background-color: var(--bg-secondary);
}

.mobile-menu-contact {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--spronext-gray-200);
}

.mobile-menu-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}