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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-orange: #ff6b35;
    --accent-blue: #4a90e2;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --beige: #f4ebe4;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.js-loaded .scroll-animate {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-animate {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

body.js-loaded .scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
}

.scroll-animate-left {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

body.js-loaded .scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
}

.scroll-animate-right {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

body.js-loaded .scroll-animate-scale {
    opacity: 0;
    transform: scale(0.9);
}

.scroll-animate-scale {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

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

.nav-menu a.active {
    color: var(--accent-blue);
}

.nav-menu a.active::after {
    width: 100%;
}

.cta-nav {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-nav:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.cta-nav i {
    font-size: 1.1rem;
}

.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: white;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
}

.hero-text {
    padding-right: 2rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image {
    position: relative;
    height: 600px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd4a3 0%, #ff9a76 50%, #ff6b9d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: 'Image Placeholder';
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    z-index: 1;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ffd700;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.services-intro {
    padding: 6rem 0;
    background: white;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid-intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-intro-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.service-intro-card:hover {
    transform: translateY(-10px);
}

.service-intro-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    object-fit: cover;
}

.service-intro-card:hover .service-intro-image {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-intro-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.stats-section {
    padding: 6rem 0;
    background: var(--beige);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.stats-text h2 {
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.4;
}

.stats-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stats-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.stats-image:hover {
    transform: scale(1.05);
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #ddd;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimonial-section {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.testimonial-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.testimonial-image:hover {
    transform: scale(1.05);
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-dark);
}

.gallery-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.gallery-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.gallery-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.gallery-image {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    transition: all 0.4s ease;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.gallery-text h3 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.process-section {
    padding: 6rem 0;
    background: white;
}

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

.process-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.process-image:hover {
    transform: scale(1.02);
}

.process-video {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-video:hover {
    transform: scale(1.02);
}

.process-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.process-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
    padding: 6rem 0;
    background: var(--beige);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
}

.final-cta {
    padding: 6rem 0;
    background: white;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-image {
    height: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.final-cta-image:hover {
    transform: scale(1.02);
}

.img-k {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.final-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box,
.contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.company-details {
    margin-bottom: 2.5rem;
}

.detail-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.detail-item a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.business-hours {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 12px;
}

.business-hours h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.business-hours p {
    color: var(--text-dark);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-blue);
}

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

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.footer-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-column p a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column p a:hover {
    color: white;
}

.footer-address {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-column p i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
    width: 16px;
    display: inline-block;
}

.footer-address i {
    vertical-align: top;
    margin-top: 3px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 20px;
}

.footer-column a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .stats-content,
    .testimonial-content,
    .gallery-item,
    .process-content,
    .final-cta-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid-intro {
        grid-template-columns: 1fr;
    }

    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-wrapper {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-container,
    .section-container,
    .footer-container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        order: -1;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-logo-main {
        font-size: 1.2rem;
    }

    .footer-logo-sub {
        font-size: 0.55rem;
    }
}
