/* Variables */
:root {
    --primary-color: #ff7214;
    --secondary-color: #1a2c4e;
    --light-color: #f1faee;
    --dark-color: #1a2c4e;
    --grey-color: #6c757d;
    --light-grey: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #2ecc71;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 70px 0;
    margin-top: -20px;
}

section[id] {
    scroll-margin-top: 110px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e66500;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 8px 0;
}

.header .container {
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 90px;
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: 15px;
}

.phone i {
    color: var(--primary-color);
    margin-right: 5px;
}

.service-24h {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.main-nav {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-list {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* Hero section */
.hero {
    height: 80vh;
    min-height: 500px;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 125px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 44, 78, 0.85) 0%, rgba(26, 44, 78, 0.7) 50%, rgba(255, 114, 20, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services section */
.services {
    background-color: var(--light-grey);
}

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

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Zones section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.area {
    background-color: var(--light-grey);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.area:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* About section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: none;
    text-align: center;
    width: auto;
    max-width: fit-content;
    max-height: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
}

.about-image img {
    max-width: 100%;
    max-height: 430px;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.img-elegant {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(1.02) contrast(1.05);
}

.img-elegant:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.benefits-list {
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Testimonials section */
.testimonials {
    background-color: var(--light-grey);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 300px;
    flex: 1;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.client-name {
    font-weight: 600;
    text-align: right;
    color: var(--secondary-color);
}

/* Contact section */
.contact {
    background-color: var(--light-grey);
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-column {
    flex: 1;
}

.contact-form-column {
    flex: 1;
}

.contact-info-block {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    min-width: 30px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-content p {
    margin-bottom: 5px;
    color: #333;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--secondary-color);
}

.google-map {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e66500;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c9c9c9;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to top & floating call */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.floating-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(26, 44, 78, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.floating-call-button:hover {
    background-color: #e66500;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .logo-img {
        max-height: 80px;
    }

    .hero {
        margin-top: 110px;
    }

    section[id] {
        scroll-margin-top: 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .contact-info {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        max-height: 70px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        align-items: center;
    }

    .nav-list.active {
        max-height: 300px;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .hero {
        margin-top: 100px;
        height: auto;
        min-height: 400px;
        padding: 80px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .benefits-list {
        text-align: left;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .footer-content {
        flex-direction: column;
    }

    section[id] {
        scroll-margin-top: 90px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
        margin-top: -10px;
    }
    
    section[id] {
        scroll-margin-top: 80px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image img {
        max-height: 300px;
    }

    .form-container {
        padding: 20px;
    }

    .logo-img {
        max-height: 70px;
    }
}

/* Instagram section */
.instagram-section {
    background-color: #fff;
    padding: 80px 0;
}

.instagram-container {
    margin-top: 30px;
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.instagram-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.instagram-cta .btn {
    font-size: 1.1rem;
}

.instagram-cta .btn i {
    margin-right: 8px;
}

.highlight-color {
    color: #ff7214;
} 