/**
 * Parskan Mobilya Style
 * Premium Vanilla CSS
 * Font: Poppins
 */

:root {
    --primary-color: #d4a373;      /* Warm golden wood color */
    --secondary-color: #1a1a1a;    /* Deep dark for text/backgrounds */
    --accent-color: #faedcd;       /* Light warm accent */
    --text-color: #333333;         /* Standard text */
    --text-light: #777777;         /* Secondary text */
    --bg-color: #ffffff;           /* Global background */
    --bg-light: #fdfaf6;           /* Section background */
    --whatsapp-color: #25d366;     /* WhatsApp Green */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(212, 163, 115, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* --- Typography & Utilities --- */
.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

section {
    padding: 80px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-primary:hover {
    background-color: #b78a5e;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}
.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.btn-light-whatsapp {
    background-color: #fff;
    color: var(--whatsapp-color);
    border: 2px solid var(--whatsapp-color);
}
.btn-light-whatsapp:hover {
    background-color: var(--whatsapp-color);
    color: #fff;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary-color);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

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

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero-bg-new.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.2rem;
    color: #eaeaea;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* --- About Section --- */
.about {
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 8px solid var(--bg-light);
    text-align: center;
}

.experience-badge h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0;
}

.experience-badge span {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-wrapper i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.service-card .service-img-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.service-card .service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.featured-service {
    grid-column: 1 / -1; /* Make it span all columns */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-service h3, .featured-service p {
    color: #fff;
}
.featured-service .icon-wrapper {
    background-color: rgba(255,255,255,0.1);
}
.featured-service .icon-wrapper i {
    color: #fff;
}

/* --- Service Areas Section --- */
.areas {
    background-color: var(--bg-light);
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    background-color: #faf8f5;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.area-item {
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(212, 163, 115, 0.2);
    cursor: default;
}

.area-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* --- Reviews Section --- */
.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}

.review-card {
    flex: 0 0 auto;
    width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    border: 1px solid rgba(0,0,0,0.02);
}

.review-card .stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    z-index: -1;
    line-height: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.reviewer-loc {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 50px;
}

.info-lists {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

/* --- Footer --- */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
}

footer p {
    opacity: 0.8;
}

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: floatAnim 3s infinite ease-in-out;
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: var(--whatsapp-color);
}
.float-whatsapp:hover {
    background-color: #1ebe57;
}

.float-phone {
    background-color: var(--primary-color);
    animation-delay: 1.5s;
}
.float-phone:hover {
    background-color: #ba8c5a;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }
    .experience-badge {
        right: 20px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-info {
        padding: 30px 20px;
    }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
