/* Base Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #444444;
    --text-color: #333;
    --light-color: #f5f5f5;
    --dark-color: #222;
    --accent-color: #25D366;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: 4rem 0;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.whatsapp-btn {
    background-color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    padding: 0 0 30px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #2c2c2c;
    background-image: radial-gradient(circle, #3a3a3a 10%, transparent 10%), radial-gradient(circle, #3a3a3a 10%, transparent 10%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-mobile-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 50%;
    margin: 0;
    padding: 4rem 0;
    color: var(--primary-color);
    position: relative;
    z-index: 3;
}

.hero-cta {
    display: none;
}

.desktop-cta {
    display: inline-block;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: none;
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: none;
    color: #e0e0e0;
}

.hero-content p strong {
    color: white;
    font-weight: 700;
}

/* Benefits Section */
.benefits {
    background-color: white;
}

/* For Who Section */
.for-who {
    background-color: white;
    padding: 4rem 0;
}

.for-who .subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.for-who-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.for-who-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.for-who-item .icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.for-who-item p {
    margin: 0;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background-color: #1a1a1a;
    color: white;
}

.about h2:after {
    background-color: var(--secondary-color);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.authority-markers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.authority-item {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.authority-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.authority-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.authority-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.authority-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    padding: 0 10px;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    padding: 10px;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-controls button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.carousel-controls button:hover {
    background-color: white;
}

.prev-btn {
    margin-left: 10px;
}

.next-btn {
    margin-right: 10px;
}

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

.testimonials-grid {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 90%;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.client-info {
    margin-top: 1.5rem;
}

.client-info h4 {
    margin-bottom: 0.2rem;
}

.client-info p {
    color: #777;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background-color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.contact-info > .cta-button {
    align-self: center;
    margin-top: 1rem;
}



.address-link, .phone-link {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.address-link:hover, .phone-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #E1306C;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.tagline {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Media Queries */
/* Hero Image */
.hero-image {
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 40%;
    height: auto;
    max-height: 80%;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 10px 0 0 10px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-top: 20px;
        min-height: 100vh;
        justify-content: flex-start;
    }
    
    .hero .logo {
        display: none;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .hero-mobile-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0.5rem 0;
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        margin: 0.5rem auto;
        transform: none;
        top: 0;
        border-radius: 10px;
        order: 2;
        right: auto;
    }
    
    .hero-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0 1rem;
        order: 3;
    }
    
    .carousel-item img {
        height: 350px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .authority-markers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    

}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .for-who-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .authority-markers {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
