/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: rgba(165,110,33,1);
}

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

/* Header */
.header {
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-login {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(207, 192, 192, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-login i {
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: rgba(165,110,33,1);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 500px;
    margin: 0 auto;
}

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

.hero-main {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.hero-highlight {
    color:rgb(232,160,103);
    font-weight: 900;
    letter-spacing: 0.06em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 400;
    margin-bottom: 1.7rem;
    margin-top: 0.2rem;
    text-align: left;
    letter-spacing: 0.01em;
}

.highlight {
    color: rgb(232,160,103);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 550;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background:rgb(232,160,103);
    color: #080808;
}

.btn-primary:hover {
    background: #dfdcd7;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.hero-video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #181818;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,20,20,0.18);
    border-radius: 12px;
    pointer-events: none;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    color: #fbbf24;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

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

.section-header h2 {
    font-size: 2.0rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color:rgb(232,160,103);
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #000000;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.about-card-image {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card:hover .about-card-image img {
    transform: scale(1.03);
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.image-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.image-placeholder p {
    font-size: 0.8rem;
    margin: 0;
}

.about-card-content {
    padding: 1rem 1.2rem;
}

.about-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(232,160,103);;
}

.about-card-content p {
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
    font-size: 0.85rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.about-placeholder p {
    color: #64748b;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #232323;
}

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

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

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

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer-r2 {
    background: #232323;
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    position: relative;
    margin-top: 0;
}
.footer-r2-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
    max-width: 950px;
    margin: 0 auto 1.5rem auto;
    padding: 0 1.2rem;
}
.footer-r2-info {
    flex: 1 1 320px;
    min-width: 220px;
}
.footer-r2-title {
    color: #e9a96a;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 0.04em;
}
.footer-r2-info p {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}
.footer-r2-map {
    flex: 1 1 350px;
    min-width: 220px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.footer-r2-bottom {
    text-align: center;
    color: #bdbdbd;
    font-size: 1rem;
    margin-top: 1.2rem;
    font-style: italic;
}
.footer-r2-whatsapp {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 9999;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.footer-r2-whatsapp:hover {
    background: #128c7e;
    color: #fff;
}
@media (max-width: 900px) {
    .footer-r2-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .footer-r2-map {
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .footer-r2-content {
        padding: 0 0.5rem;
    }
    .footer-r2-map iframe {
        width: 100% !important;
        min-width: 0 !important;
        height: 160px !important;
    }
    .footer-r2-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-video {
        aspect-ratio: 16/9;
        max-width: 100vw;
    }
    .hero-video video, .hero-video-overlay {
        border-radius: 8px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-card {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-card-image {
        width: 100%;
        height: 120px;
        border-radius: 8px 8px 0 0;
    }
    
    .about-card-content {
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-r2-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-r2-whatsapp {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-video video,
    .video-placeholder {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .about-card-image {
        height: 100px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

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

.service-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

.about-single-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-single-card .about-card-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.about-single-card .about-card-content p {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-single-card .btn {
    margin-top: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-single-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .about-single-card .about-card-content h2 {
        font-size: 1.5rem;
    }
    
    .about-single-card .about-card-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-single-card {
        padding: 1.5rem 1rem;
    }
    
    .about-single-card .about-card-content h2 {
        font-size: 1.3rem;
    }
    
    .about-single-card .about-card-content p {
        font-size: 0.9rem;
    }
    
    .about-single-card .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.technology .about-single-card {
    background: #1a1a1a;
    border-radius: 0px;
    padding: 1.0rem 0.5rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technology .about-single-card::before {
    display: none !important;
    content: none !important;
}

.highlight-versatilidade {
    color: rgb(232,160,103);
    font-weight: 700;
}

.highlight-tecnologia {
    color: rgb(232,160,103);
    font-weight: 700;
}

.btn-large {
    padding: 14px 60px !important;
    font-size: 1.0rem !important;
    font-weight: 700 !important;
    font-family: Arial, sans-serif !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    transition: all 0.15s ease !important;
    min-width: 250px !important;
    border: 1px solid rgb(232,160,103) !important;
    background: rgb(232,160,103) !important;
    color: #1a1a1a !important;
    letter-spacing: 0.5px !important;
}

.btn-large:hover {
    transform: none !important;
    box-shadow: none !important;
    background:rgb(232,160,103) !important;
    border-color:rgb(232,160,103) !important;
}

/* Center Card Section */
.center-card-section {
    padding: 80px 0;
    background: #f8fafc;
    color: #333;
}

.center-card {
    background: #e2e8f0;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.center-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #cbd5e1, #94a3b8, #64748b);
    border-radius: 14px;
    z-index: -1; 
    opacity: 0.3;
}

.center-card-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.center-card-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.center-card .btn {
    margin-top: 0.5rem;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .center-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .center-card-content h2 {
        font-size: 1.6rem;
    }
    
    .center-card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .center-card {
        padding: 1.5rem 1rem;
    }
    
    .center-card-content h2 {
        font-size: 1.4rem;
    }
    
    .center-card-content p {
        font-size: 0.95rem;
    }
    
    .center-card .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

.about-single-card-inner {
    background: #1a1a1a;
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-single-card-inner {
        padding: 2rem 1rem;
    }
}

.about-complex-card {
    display: flex;
    background: #1a1a1a;
    border-radius: 0;
    box-shadow: 0 40px 100px rgba(0,0,0,0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 6rem auto 0 auto;
    max-width: 1000px;
    min-height: 320px;
    overflow: hidden;
}
.complex-card-image {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232323;
}
.complex-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.complex-card-features {
    flex: 2 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
    background: #1a1a1a;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.feature-item:last-child {
    margin-bottom: 0;
}
.feature-item i {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}
.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}
.feature-item p {
    color: #d1d5db;
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.5;
}
.feature-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    display: block;
}
@media (max-width: 900px) {
    .about-complex-card {
        flex-direction: column;
        max-width: 98vw;
    }
    .complex-card-image {
        max-width: 100%;
        min-height: 180px;
    }
    .complex-card-features {
        padding: 1.5rem 1rem;
    }
}

.complex-card-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 1px;
    color: #fff;
}
.highlight-conveniencia,
.highlight-conforto {
    color: rgb(235,163,99);
}
@media (max-width: 900px) {
    .complex-card-title {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }
}

.flex-solutions-section {
    text-align: center;
    margin: 7rem auto 0 auto;
    max-width: 700px;
}
.flex-solutions-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
}
.highlight-flexiveis {
    color: rgb(235,163,99);
}
.flex-solutions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.flex-solution-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    justify-content: center;
    max-width: 600px;
    position: relative;
    padding-bottom: 2.5rem;
}
.flex-solution-item:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #888;
    width: 100%;
    margin: 0 auto;
}
.flex-solution-item i {
    color: rgb(235,163,99);
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.flex-solution-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    text-align: left;
}
.flex-solution-item p {
    color: #d1d5db;
    font-size: 1.13rem;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}
@media (max-width: 600px) {
    .flex-solutions-title {
        font-size: 1.2rem;
    }
    .flex-solutions-section {
        margin: 2.5rem 0 0 0;
        padding: 0 0.5rem;
    }
    .flex-solutions-list {
        gap: 1.2rem;
    }
    .flex-solution-item {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .flex-solution-item h4, .flex-solution-item p {
        text-align: center;
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-modern-card {
    display: flex;
    background: #232323;
    border-radius: 0;
    box-shadow: 0 40px 100px rgba(0,0,0,0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    align-items: stretch;
}
.contact-modern-content {
    flex: 1 1 0;
    padding: 2rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #232323;
}
.contact-modern-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.highlight-r2 {
    color: rgb(232,160,103);
}
.contact-modern-text {
    color: #d1d5db;
    font-size: 1.13rem;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.btn-contact-modern {
    background: rgb(232,160,103) !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    padding: 0.5rem 0.9rem !important;
    border: none !important;
    border-radius: 0 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 24px rgba(235,163,99,0.15) !important;
    transition: background 0.2s;
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
}
.btn-contact-modern:hover {
    background: #e29a3a !important;
    color: #fff !important;
}
.contact-modern-image {
    flex: 1 1 220px;
    min-width: 120px;
    max-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232323;
}
.contact-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .contact-modern-card {
        flex-direction: column;
        max-width: 98vw;
    }
    .contact-modern-content {
        padding: 2rem 1.2rem;
    }
    .contact-modern-image {
        max-width: 100%;
        min-height: 180px;
    }
}

.contact-split-card {
    display: block;
    background: #f3f4f6;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 1.5px solid #e5e7eb;
    max-width: 430px;
    margin: 0 auto;
    padding: 2.5rem 1.7rem 1.7rem 1.7rem;
    text-align: center;
    position: relative;
    min-height: unset;
    height: unset;
    overflow: visible;
}
.contact-split-content {
    padding: 0;
    background: none;
    color: #232323;
    text-align: center;
    display: block;
    height: unset;
}
.contact-split-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #232323;
    margin-bottom: 1.3rem;
    letter-spacing: 0.7px;
    line-height: 1.2;
}
.contact-split-text {
    color: #444;
    font-size: 1.07rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}
.btn-contact-split {
    background: rgb(235,163,99) !important;
    color: #232323 !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.97rem !important;
    padding: 0.5rem 1.2rem !important;
    border: none !important;
    border-radius: 6px !important;
    letter-spacing: 1px !important;
    box-shadow: 0 2px 8px rgba(235,163,99,0.13) !important;
    transition: background 0.18s, box-shadow 0.18s;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    display: inline-block;
}
.btn-contact-split:hover {
    background: #e29a3a !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(235,163,99,0.18) !important;
}
.contact-split-image {
    width: 100%;
    margin-top: 0.7rem;
    min-width: unset;
    max-width: unset;
    height: unset;
    display: block;
    background: none;
}
.contact-split-image img {
    width: 100%;
    max-width: 210px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.highlight-r2 {
    color: rgb(235,163,99);
}

.faq-section {
    margin: 5rem auto 0 auto;
    max-width: 1000px;
    padding: 0 1rem 4rem 1rem;
}
.faq-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.faq-card {
    background: #181818;
    color: rgb(235,163,99);
    font-size: 1.08rem;
    font-weight: 500;
    border-radius: 10px;
    padding: 1.3rem 2rem;
    cursor: pointer;
    border: 1px solid #222;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.faq-card:hover {
    background: #232323;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

.faq-answer {
    display: none;
    background: #202020;
    color: #ccc;
    padding: 1rem 2rem;
    border-left: 3px solid rgb(235,163,99);
    border-radius: 0 0 10px 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}



.contact-image-card {
    display: flex;
    max-width: 900px;
    min-height: 380px;
    margin: 3rem auto 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    border-radius: 0;
    overflow: hidden;
    background: none;
}
.contact-image-card-left {
    flex: 1 1 0;
    background: #181818;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.2rem 2.5rem;
    text-align: center;
}
.contact-image-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 2.2rem;
    letter-spacing: 0.13em;
    line-height: 1.13;
    color: #fff;
    text-align: center;
    text-shadow: 0 4px 24px rgba(235,163,99,0.13), 0 1px 2px rgba(0,0,0,0.12);
}
.contact-image-title .highlight-r2 {
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-shadow: 0 2px 12px rgba(235,163,99,0.18);
}
.contact-image-text {
    color: #fff;
    font-size: 1.13rem;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    text-align: center;
}
.btn-contact-image {
    background: rgb(235,163,99) !important;
    color: #181818 !important;
    font-family:"   DM Sans", sans-serif;
    font-weight: 600 !important;
    font-size: 1 !important;
    padding: 0.8rem 2.9 rem !important;
    border: none !important;
    border-radius: 0,1 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 2px 8px rgba(235,163,99,0.13) !important;
    transition: background 0.18s, box-shadow 0.18s;
    margin: 0 auto;
    display: block;
}
.btn-contact-image:hover {
    background: rgb(232,160,103) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(235,163,99,0.18) !important;
}
.contact-image-card-right {
    flex: 1 1 0;
    background: #232323;
    min-width: 260px;
    height: 100%;
}
.highlight-r2 {
    color: rgb(235,163,99);
}
.contact-image-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}
@media (max-width: 900px) {
    .contact-image-card {
        flex-direction: column;
        min-height: 0;
        max-width: 98vw;
    }
    .contact-image-card-left {
        padding: 2rem 1.2rem 1.2rem 1.2rem;
    }
    .contact-image-card-right {
        min-width: 100px;
        height: 120px;
    }
    .contact-image-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
}
@media (max-width: 600px) {
    .hero-video {
        aspect-ratio: 16/9;
        max-width: 100vw;
    }
    .hero-video video, .hero-video-overlay {
        border-radius: 6px;
    }
}

@media (max-width: 500px) {
    .hero-video {
        max-width: 98vw;
        border-radius: 8px;
    }
    .hero-video video, .hero-video-overlay {
        border-radius: 8px;
    }
} 