:root {
    --accent: #c59c87;
    --dark: #1a1a1a;
    --soft-bg: #fdfaf8;
    --white: #ffffff;
}

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

body {
    font-family: 'Alexandria', sans-serif;
    background-color: var(--soft-bg);
    color: var(--dark);
    line-height: 1.8;
    scroll-behavior: smooth;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo img { height: 50px; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 400; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 50px;
    min-height: 80vh;
}

.hero-text { flex: 1; }
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero-text p { font-size: 1.2rem; color: #666; margin-bottom: 35px; }

.hero-image { flex: 1; position: relative; }
.hero-image img {
    width: 100%;
    border-radius: 50% 50% 0 0;
    box-shadow: 20px 20px 0 var(--accent);
}

/* Features Section */
.features { padding: 100px 8%; background: var(--white); text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: 0.3s;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.feature-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* Services Section */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    text-align: center;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-info p {
    font-size: 0.95rem;
    color: #777;
}

/* CTA Section */
.cta {
    background: var(--dark);
    color: var(--white);
    padding: 80px 8%;
    text-align: center;
    margin: 100px 0;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 25px;
    transition: 0.3s;
}
.btn:hover { background: #b08975; transform: scale(1.05); }

/* App Showcase */
.phone-mockup {
    width: 240px;
    border: 8px solid var(--dark);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: #fff;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    display: block;
    height: auto;
}

.phone-mockup .caption {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Contact Section */
.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--soft-bg);
    border-radius: 20px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 8px 15px rgba(197, 156, 135, 0.3);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

/* Footer */
footer { padding: 60px 8%; background: #f4f4f4; text-align: center; }
.socials { margin: 25px 0; display: flex; justify-content: center; gap: 20px; }
.socials a { color: var(--dark); font-size: 1.5rem; transition: 0.3s; }
.socials a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .nav-links { display: none; }
    .hero-image img { box-shadow: 10px 10px 0 var(--accent); }
}

@media (max-width: 768px) {
    .app-images {
        flex-direction: column;
        align-items: center;
    }
    .phone-mockup {
        width: 80%;
        margin-top: 0 !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s ease;
}

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

@media (max-width: 600px) {
    .contact-section { padding: 60px 5% !important; }
}
