/* GLOBAL RESET */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #fafafa;
    color: #333;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #ff66b2, #3399ff);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.logo {
    width: 80px;
}

header h1 {
    margin: 10px 0;
    font-size: 32px;
}

.slogan {
    font-size: 16px;
    font-style: italic;
}

/* NAVIGATION */
nav {
    margin-top: 15px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* HERO SECTION */
.hero {
    background: url("images/couch1.jpg") center/cover no-repeat;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-text {
    position: relative;
    text-align: center;
    color: white;
    padding: 25px;
}

.hero-text h2 {
    font-size: 30px;
}

/* SECTIONS */
.services,
.gallery,
.contact {
    padding: 60px 20px;
    text-align: center;
}

/* SERVICES */
.service-box {
    background: white;
    margin: 20px;
    padding: 25px;
    width: 260px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* GALLERY */
.gallery h3 {
    margin-top: 40px;
    color: #3399ff;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.grid img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    margin: 12px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.grid img:hover {
    transform: scale(1.07);
}

/* CONTACT */
.contact {
    background: linear-gradient(135deg, #e6f0ff, #ffe6f2);
}

.contact-box {
    background: white;
    padding: 30px;
    margin: auto;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-box p {
    margin: 8px 0;
}

/* LINKS */
.contact a {
    color: #3399ff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonials {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.testimonials h2 {
    margin-bottom: 30px;
    color: #3399ff;
}

.testimonial-box {
    background: #f5f5f5;
    margin: 15px auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-box p {
    font-style: italic;
}

.testimonial-box h4 {
    margin-top: 10px;
    color: #ff66b2;
}

.testimonials {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.testimonial-box {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-box p {
    font-style: italic;
    line-height: 1.6;
}

.testimonial-box h4 {
    margin-top: 15px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #444;
}