* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 40px 20px 60px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 0, 0.05) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.hero-visual {
    max-width: 1200px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.sap-graphic {
    width: 100%;
    height: auto;
    max-height: 350px;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.3));
}

.sap-hub circle {
    animation: pulse-hub 3s ease-in-out infinite;
}

@keyframes pulse-hub {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.module-node {
    animation: float 4s ease-in-out infinite;
}

.module-node:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.sub-module {
    animation: pulse-small 3s ease-in-out infinite;
}

.sub-module:nth-child(odd) {
    animation-delay: 0.3s;
}

@keyframes pulse-small {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.connections line {
    animation: flow 2s linear infinite;
    stroke-dasharray: 10, 5;
}

@keyframes flow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 15; }
}

.cloud-module ellipse {
    animation: cloud-pulse 4s ease-in-out infinite;
}

@keyframes cloud-pulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.08);
    }
}

.data-points circle {
    animation: blink 2s ease-in-out infinite;
}

.data-points circle:nth-child(even) {
    animation-delay: 1s;
}

@keyframes blink {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-content h1 span {
    color: #e6693d;
}

.header-content p {
    font-size: 1.4em;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 70px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.15);
    border: 3px solid #e6693d;
}

.intro-section h2 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.intro-section h2 span {
    color: #e6693d;
}

.intro-section p {
    font-size: 1.2em;
    color: #555;
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a1a1a;
    margin: 70px 0 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e6693d, transparent);
}

.section-title span {
    color: #e6693d;
}

/* Main Service Cards */
.main-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.main-service-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 6px solid #e6693d;
    position: relative;
    overflow: hidden;
}

.main-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.main-service-card:hover::before {
    left: 100%;
}

.main-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.25);
}

.main-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e6693d 0%, #e6693d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 42px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
}

.main-service-card:hover .main-service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.6);
}

.main-service-card h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: 700;
}

.main-service-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    font-size: 1.05em;
    line-height: 1.7;
}

.service-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #e6693d;
    font-weight: bold;
    font-size: 1.6em;
    top: 8px;
}

/* Module Grid Sections */
.modules-section {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.modules-section h3 {
    color: #1a1a1a;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.modules-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #e6693d;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.module-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 35px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6693d, #e6693d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-card:hover {
    border-color: #e6693d;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.module-card h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #e6693d;
    font-weight: 600;
}

.module-card p {
    font-size: 1.05em;
    opacity: 0.95;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin: 80px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.why-choose h2 {
    font-size: 3em;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.why-choose h2 span {
    color: #e6693d;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #e6693d;
}

.benefit-item p {
    font-size: 1.05em;
    opacity: 0.9;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(255, 107, 0, 0.15);
    margin-top: 60px;
    border: 3px solid #e6693d;
}

.cta-section h2 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-size: 2.8em;
}

.cta-section h2 span {
    color: #e6693d;
}

.cta-section > p {
    font-size: 1.25em;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.cta-buttons-section {
    text-align: center;
}

.cta-buttons-section h3 {
    color: #1a1a1a;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #e6693d 0%, #e6693d 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 320px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #e6693d 0%, #e6693d 100%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button.whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.consultation-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.consultation-form-section h3 {
    color: #1a1a1a;
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1em;
}

.form-group label .required {
    color: #e6693d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6693d;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #e6693d 0%, #e6693d 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgb(230 105 61 / 39%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
    background: linear-gradient(135deg, #e6693d 0%, #e6693d 100%);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
}

.footer-section h3 {
    color: #e6693d;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h4 {
    color: #e6693d;
    font-size: 1.2em;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
}

.footer-section p {
    margin: 8px 0;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 0.95em;
}

.footer-section .tagline {
    color: #e6693d;
    font-weight: 600;
    font-size: 1.05em;
    margin-top: 10px;
}

.footer-section .mission {
    font-style: italic;
    opacity: 0.85;
    margin-top: 10px;
}

.footer-section a {
    color: #e6693d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #e6693d;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1300px;
    margin: 30px auto 0;
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    margin: 8px 0;
    opacity: 0.8;
    font-size: 0.9em;
}

.footer-bottom p:first-child {
    font-weight: 600;
    font-size: 1em;
    opacity: 0.95;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@media (max-width: 968px) {
    .header-content h1 {
        font-size: 2.5em;
    }

    .sap-graphic {
        max-height: 250px;
    }

    .main-services {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .why-choose h2 {
        font-size: 2.2em;
    }

    .footer-content {
        text-align: center;
    }
}
.service-features ul {
    list-style: none !important;

}


        .global-presence-bar {
            max-width: 1300px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(255, 107, 0, 0.3);
            flex-wrap: wrap;
        }

        .global-presence-bar h4 {
            color: #ff6b00;
            font-size: 1.3em;
            font-weight: 600;
            margin: 0;
        }

        .global-presence-bar .countries {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .global-presence-bar .countries span {
            color: white;
            font-size: 1.1em;
            font-weight: 500;
        }

        .global-presence-bar .separator {
            color: #ff6b00;
            font-weight: bold;
        }