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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2.2rem;
    color: #34495e;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: #2980B9;
    transition: color 0.3s ease;
}

a:hover {
    color: #1F618D;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 15px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-notice[style*="display: none"] {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-deny,
.cookie-more {
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.cookie-accept {
    background: #2980B9;
    color: white;
}

.cookie-accept:hover {
    background: #1F618D;
    color: white;
}

.cookie-deny {
    background: #e74c3c;
    color: white;
}

.cookie-deny:hover {
    background: #c0392b;
    color: white;
}

.cookie-more {
    background: transparent;
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
}

.cookie-more:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
    color: inherit;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(41, 128, 185, 0.8);
    transition: all 0.3s ease;
}

.profile-image.logo-square {
    border-radius: 8px;
    background: white;
    padding: 2px;
}

.profile-image:hover {
    border-color: #2980B9;
    transform: scale(1.1);
}

.logo-text h1 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0;
    font-weight: 600;
}

.logo-text p {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin: 0;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: #ecf0f1;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav a:hover {
    color: white;
    background: rgba(39, 174, 96, 0.2);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.7) 0%, rgba(93, 173, 226, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #f8f9fa;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #f8f9fa;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.feature i {
    font-size: 2.5rem;
    color: #f8f9fa;
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 500;
    color: #f8f9fa;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2980B9;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #2980B9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

.about-profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: all 0.4s ease;
}

.about-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.2);
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-welcome {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2980B9;
    margin-bottom: 1.5rem;
}

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

.about-closing {
    font-weight: 600;
    color: #2c3e50;
}

.about-cta {
    display: inline-block;
    background: linear-gradient(45deg, #2980B9, #5DADE2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
    margin-top: 1rem;
}

.about-cta:hover {
    background: linear-gradient(45deg, #1F618D, #2980B9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-image-header {
    position: relative;
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8);
}

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

.service-image-header .service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-image-header .service-icon i {
    color: #2980B9;
    font-size: 1.5rem;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.service-details {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details li i {
    color: #2980B9;
    font-size: 0.8rem;
}

.service-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-areas {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.service-note {
    background: #EBF5FB;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #2980B9;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(45deg, #2980B9, #5DADE2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    margin-top: auto;
    text-align: center;
}

.service-cta:hover {
    background: linear-gradient(45deg, #1F618D, #2980B9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.4);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #f39c12;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: #e9ecef;
}

.contact-card i {
    font-size: 1.8rem;
    color: #2980B9;
    margin-top: 0.2rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-card a {
    color: #2980B9;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980B9;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-text {
    flex: 1;
    word-wrap: break-word;
}

.submit-button {
    width: 100%;
    background: #2980B9;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background: #1F618D;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0 1.5rem 0;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #2980B9;
}

.footer-section a:hover {
    color: #5DADE2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

.footer-credit {
    margin-top: 1rem;
}

.footer-credit p {
    color: #95a5a6;
    font-size: 0.8rem;
    margin: 0;
}

.footer-credit a {
    color: #2980B9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #5DADE2;
}

/* Contact Link Icons */
.maps-link, .whatsapp-contact-link {
    display: inline-block;
    margin-left: 8px;
    color: #2980B9;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.maps-link:hover, .whatsapp-contact-link:hover {
    color: #5DADE2;
    opacity: 1;
    transform: scale(1.1);
}

.whatsapp-contact-link {
    color: #25D366;
}

.whatsapp-contact-link:hover {
    color: #128C7E;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #2980B9 0%, #5DADE2 100%);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    padding: 25px 20px;
}

.modal-body p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-footer {
    padding: 0 20px 25px;
}

.modal-button {
    background: #2980B9;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    background: #1F618D;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .nav {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: auto;
    }

    .nav a span {
        display: none;
    }

    .whatsapp-nav {
        padding: 8px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: 60vh;
        margin-top: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-profile-img {
        width: 200px;
        height: 200px;
    }

    .about-text h2 {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-features .feature {
        min-width: 100px;
    }

    .feature i {
        font-size: 2rem;
    }

    .feature span {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .service-image-header {
        height: 180px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-image-header .service-icon {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }

    .service-image-header .service-icon i {
        font-size: 1.3rem;
    }

    .service-content {
        padding: 1.5rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        justify-content: center;
        gap: 8px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .services,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .whatsapp-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* WhatsApp Styles */
.whatsapp-link {
    color: #25d366;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
    transform: scale(1.05);
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.whatsapp-nav {
    background: #25d366;
    color: white !important;
}

.whatsapp-nav:hover {
    background: #128c7e !important;
    color: white !important;
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header .container {
        gap: 0.5rem;
    }

    .nav {
        gap: 0.25rem;
    }

    .nav a {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .hero {
        padding: 100px 0 50px;
        margin-top: 90px;
    }

    .about-profile-img {
        width: 180px;
        height: 180px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-welcome {
        font-size: 1.2rem;
    }

    .about-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .profile-image {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        min-width: auto;
    }

    .feature i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-image-header {
        height: 160px;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-image-header .service-icon {
        width: 40px;
        height: 40px;
        top: 8px;
        right: 8px;
    }

    .service-image-header .service-icon i {
        font-size: 1.2rem;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .cookie-notice {
        padding: 10px;
    }

    .cookie-buttons {
        gap: 6px;
    }

    .cookie-accept,
    .cookie-deny,
    .cookie-more {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 70px;
    }
}
