* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #1e1e1e;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --peach: #fad4c0;
    --beige: #f5e6d3;
    --yellow: #f8e7a0;
    --sage: #c1d5ba;
    --black: #2a2a2a;
    --soft-neutral: #f8f7f4;
    --card-bg: #ffffff;
    --shadow: 0 20px 35px -8px rgba(0,0,0,0.05), 0 10px 15px -6px rgba(0,0,0,0.02);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 8vw, 4.8rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.brush-accent {
    position: relative;
    z-index: 2;
}

.brush-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 70%;
    height: 12px;
    background: linear-gradient(90deg, var(--peach) 0%, var(--yellow) 40%, var(--sage) 80%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.35;
}

.section-brush {
    position: relative;
    overflow: hidden;
}

.section-brush::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -30px;
    width: 250px;
    height: 80px;
    background: linear-gradient(120deg, transparent 30%, var(--peach) 50%, var(--sage) 70%, transparent 90%);
    transform: rotate(12deg);
    border-radius: 100px;
    opacity: 0.2;
    pointer-events: none;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    background: var(--black);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    text-align: center;
}

.btn-outline {
    background: transparent;
    border-color: var(--black);
    color: var(--black);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(0,0,0,0.15);
}

.btn-outline:hover {
    background: var(--black);
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: clamp(55px, 10vw, 75px);
    width: auto;
    border-radius: 8px;
}

.logo-text h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #5f5f5f;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #2e2e2e;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--black);
    border-bottom: 2px solid var(--sage);
}

.hero-carousel-section {
    width: 100%;
    height: clamp(300px, 50vh, 500px);
    position: relative;
    margin: 20px 0 40px;
    overflow: hidden;
    border-radius: 60px 20px 60px 20px;
    box-shadow: var(--shadow);
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.carousel-slide.active img {
    transform: scale(1);
}

.hero {
    padding: 20px 0 60px;
    background: linear-gradient(145deg, #fefcf9 0%, #fff 80%);
    position: relative;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, var(--peach) 0.5px, transparent 1px),
                      radial-gradient(circle at 80% 70%, var(--sage) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    pointer-events: none;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #4b4b4b;
    margin-bottom: 35px;
    font-weight: 350;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-carousel-container {
    height: clamp(280px, 40vh, 400px);
    border-radius: 40px 20px 40px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--sage);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 700;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    color: var(--sage);
    gap: 12px;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.filter-btn:hover:not(.active) {
    border-color: var(--sage);
    color: var(--black);
}

.service-card.hidden {
    display: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--sage);
    background: #f0f7ee;
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.why-item p {
    color: #5a5a5a;
    font-size: 0.9rem;
}

.bg-soft {
    background-color: var(--soft-neutral);
    padding: 80px 0;
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--sage);
}

.vm-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.portfolio-slider {
    width: 100%;
    height: clamp(280px, 45vh, 450px);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 18px;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 40px;
    border: 1px solid #e5e5e5;
    font-family: inherit;
    font-size: 16px;
    background: white;
}

textarea {
    border-radius: 25px;
    resize: vertical;
}

.contact-info {
    background: var(--soft-neutral);
    padding: 2rem;
    border-radius: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 12px;
    color: var(--sage);
    width: 20px;
}

.business-hours {
    margin-top: 20px;
    border-top: 1px dashed var(--sage);
    padding-top: 20px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.call-btn {
    background: var(--black);
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp { background-color: #25D366; }
.float-call { background-color: var(--black); }

.footer {
    background: var(--black);
    color: #dddbd4;
    padding: 50px 0 30px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer a {
    color: #dddbd4;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover { color: white; }

.footer-logo img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 1.2rem;
    transition: color 0.2s;
    cursor: pointer;
}

.social-icons i:hover { color: white; }

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #3e3e3e;
    font-size: 0.85rem;
}

/* Trust Badges */
.trust-badges {
    padding: 30px 0;
    background: linear-gradient(90deg, #f8f7f4 0%, #ffffff 100%);
    border-radius: 60px;
    margin: 20px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 600;
}

.badge-item i {
    font-size: 2rem;
    color: var(--sage);
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0.2;
}

.process-icon {
    font-size: 3rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.case-study-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.case-study-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sage);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.case-study-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-study-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-stats strong {
    font-size: 1.2rem;
    color: var(--sage);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--sage);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #888;
    font-size: 0.85rem;
}

.video-testimonial {
    position: relative;
    cursor: pointer;
}

.video-testimonial::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(193, 213, 186, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-testimonial:hover::after {
    background: var(--sage);
    transform: translate(-50%, -50%) scale(1.1);
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f7f4;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--sage);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Warranty Section */
.warranty-section {
    background: linear-gradient(145deg, var(--soft-neutral) 0%, #fff 100%);
    padding: 60px 0;
    border-radius: 60px;
    margin: 40px 0;
}

.warranty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.warranty-card {
    background: white;
    padding: 40px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f1f1f1;
}

.warranty-card i {
    font-size: 3rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.warranty-card h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.warranty-card p {
    color: #666;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(193, 213, 186, 0.3);
    border-radius: 50%;
    border-top-color: var(--sage);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #ffcdd2;
}

.form-success {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #a5d6a7;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--black);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

:focus {
    outline: 3px solid var(--sage);
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .floating-contact,
    .cookie-consent,
    .live-chat-btn,
    .chat-widget,
    .newsletter-section,
    .footer {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links { justify-content: center; width: 100%; gap: 1rem; flex-wrap: wrap; }
    .two-col, .vm-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
    .logo { justify-content: center; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-carousel-section { border-radius: 30px 10px 30px 10px; }
    .footer-grid { text-align: center; }
    .footer-logo img { align-self: center; }
    .social-icons { justify-content: center; }
    .contact-info { padding: 1.5rem; }
    .contact-actions .btn, .contact-actions a { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .badges-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .warranty-cards { grid-template-columns: 1fr; }
}