/* 
   JVGEO Creative Modern Design - Layout completamente novo e criativo
   Aproveitando apenas as cores e imagens originais
*/

/* Reset e base moderna */
* {
    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: #ffffff;
    background: linear-gradient(135deg, #305c69 0%, #2a5259 50%, #1e3a42 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navegação moderna flutuante */
.modern-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(48, 92, 105, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-nav .logo {
    height: 32px;
}

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

.modern-nav .nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.modern-nav .nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.modern-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a7c59, #325466);
    transition: width 0.3s ease;
}

.modern-nav .nav-links a:hover::after {
    width: 100%;
}

.modern-nav .cta-btn {
    background: linear-gradient(45deg, #4a7c59, #3a7281);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-nav .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero section revolucionária */
.hero-revolution {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-revolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/bg.jpg') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #4a7c59, #3a7281);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(83, 99, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83, 99, 158, 0.4);
}

.btn-secondary-modern {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Logo em Destaque */
.hero-logo {
    margin: 2rem 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo img {
    height: 300px;
    max-width: 100%;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 20px 50px rgba(74, 124, 89, 0.3));
        transform: scale(1.02);
    }
}

/* Floating logo */
.floating-logo {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-logo img {
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Seção de stats moderna */
.stats-modern {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(83, 99, 158, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(83, 99, 158, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a7c59, #3a7281);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Seções de serviços modernas */
.services-modern {
    padding: 8rem 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(83, 99, 158, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(83, 99, 158, 0.3);
}

.service-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Footer minimalista */
.footer-modern {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #4a7c59;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(48, 92, 105, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(83, 99, 158, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(83, 99, 158, 0.8);
}

/* Responsividade */
@media (max-width: 1024px) {
    .modern-nav {
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
    
    .modern-nav .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
}

/* Modern Clients Section */
.clients-modern {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clients-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a7c59, #325466);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.clients-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: grayscale(1);
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Modern Contact Section */
.contact-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7c59, #325466);
    border-radius: 50%;
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-details p {
    color: #cbd5e1;
    margin: 0;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-visual {
    position: relative;
}

.contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .clients-header h2 {
        font-size: 2.5rem;
    }
    
    .marquee-content img {
        height: 40px;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

/* Enhanced Contact Section */
.contact-enhanced {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #305c69 0%, #2a5259 50%, #1e3a42 100%);
    color: #ffffff;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #22c55e);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 124, 89, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(74, 124, 89, 0.1);
    border: 2px solid rgba(74, 124, 89, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.contact-cta {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary-modern {
    background: white;
    color: #4a7c59;
    border: 2px solid white;
}

.cta-actions .btn-primary-modern:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-secondary-modern {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-actions .btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .contact-enhanced {
        padding: 6rem 1rem 4rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Page Hero */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #4a7c59 0%, #325466 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Modern */
.content-modern {
    padding: 6rem 2rem;
    background: white;
}

.content-grid {
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* MVV Modern */
.mvv-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mvv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.mvv-card p {
    color: #64748b;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Responsive */
/* Process Timeline */
.process-timeline {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.timeline-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4a7c59, #22c55e);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    margin-left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a7c59;
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-enhanced {
        padding: 4rem 1rem 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-actions {
        justify-content: center;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-timeline {
        padding: 4rem 1rem;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .timeline-header h2 {
        font-size: 2rem;
    }
}

/* Detailed Services Section */
.services-detailed {
    padding: 4rem 0;
    background: #f8fafc;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-content {
    padding: 2rem;
}

.service-image {
    order: 2;
}

.service-block.reverse .service-image {
    order: 1;
}

.service-block.reverse .service-content {
    order: 2;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.service-intro {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-list li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    font-size: 0.95rem;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1rem;
}

.service-list li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(34, 197, 94, 0.08));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #4a7c59;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.highlight-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Services CTA */
.services-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #305c69 0%, #2a5259 50%, #1e3a42 100%);
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .service-block.reverse {
        direction: ltr;
    }
    
    .service-image {
        order: 1;
    }
    
    .service-content {
        order: 2;
        padding: 1rem;
    }
    
    .service-block.reverse .service-image,
    .service-block.reverse .service-content {
        order: unset;
    }
    
    .service-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services-detailed {
        padding: 2rem 0;
    }
    
    .service-block {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .service-header h2 {
        font-size: 1.7rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary-modern,
    .cta-buttons .btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Hide original elements */
#header, #menu, #banner, #footer {
    display: none !important;
}

.wrapper {
    display: none !important;
}

/* Body adjustments */
body {
    padding-top: 0 !important;
}
