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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
html{
    overflow-x: hidden;
}
.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-decline {
    background: #95a5a6;
    color: white;
}

.cookie-decline:hover {
    background: #7f8c8d;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section - Diagonal Split */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/banner.jpg') center/cover;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    animation: slideInLeft 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    animation: slideInLeft 1s ease 0.4s both;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

/* Services Section - Card Grid with Unique Layouts */
.services {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card:nth-child(odd) {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.service-card:nth-child(even) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

/* Business Growth Scale - Interactive */
.growth-scale {
    padding: 100px 20px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.scale-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.scale-slider {
    margin: 50px 0;
    position: relative;
}

.scale-track {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
    position: relative;
}

.scale-progress {
    height: 100%;
    background: white;
    border-radius: 5px;
    width: 30%;
    transition: width 0.3s;
}

.scale-handle {
    position: absolute;
    top: -10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    left: 30%;
    transform: translateX(-50%);
    transition: left 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.9em;
}

.growth-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Timeline Section - Unique Layout */
.timeline {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #3498db;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 0 30px;
    backdrop-filter: blur(10px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Case Studies Map */
.case-studies {
    padding: 100px 20px;
    background: #ecf0f1;
}

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

.spain-map {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px;
    background: url('images/map.svg') center/cover;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.map-point:nth-child(1) { top: 35%; left: 41%; }
.map-point:nth-child(3) { top: 53%; left: 61%; }
.map-point:nth-child(2) { top: 18%; left: 76%; }

.case-info {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.case-info.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Pricing Section - Accordion Style */
.pricing {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.pricing-item {
    background: rgba(255,255,255,0.1);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.pricing-header:hover {
    background: rgba(255,255,255,0.1);
}

.pricing-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-content.active {
    max-height: 300px;
    padding: 25px;
    padding-top: 0;
}

.price-tag {
    background: #e74c3c;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2em;
}

/* Contact Section - Split Layout */
.contact {
    padding: 100px 20px;
    background: #34495e;
    color: white;
}

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

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    font-size: 16px;
}

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

.submit-btn {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #c0392b;
}

.contact-info {
    text-align: center;
}

.contact-info iframe {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.footer-section ul{
    display: flex;
    gap: 10px;
    list-style: none;
}

.footer-section ul a{
    color: #fff;
    transition: 0.3s linear;
}

.footer-section ul a:hover{
    color: #e74c3c;
    transition: 0.3s linear;

}


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5em; }
    .hero p { font-size: 1.1em; }
    .nav-links { display: none; }
    .contact-container { grid-template-columns: 1fr; }
    .timeline-line { display: none; }
    .timeline-item { flex-direction: column !important; }
    .timeline-content { margin: 0; }
    .cookie-content { flex-direction: column; text-align: center; }
}



.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}
.text-wrapper ul{
    list-style: initial!important;
}

.text-wrapper p{
    margin-bottom: 10px;
}