/* ============================================
   WARM LUXURY MINIMALISM DESIGN TOKENS
   Cream (#FEF8EA), Gold (#C6A43B), Deep Brown (#3E2A1F)
   ============================================ */

:root {
    --cream: #FEF8EA;
    --cream-dark: #FCF8F0;
    --gold: #C6A43B;
    --brown: #3E2A1F;
    --white: #FFFFFF;
    --border: #E6DBCB;
    --text-dark: #2D1F17;
    --text-light: #6D5B4F;
    --shadow-sm: 0 2px 8px rgba(62, 42, 31, 0.06);
    --shadow-md: 0 4px 16px rgba(62, 42, 31, 0.1);
    --shadow-lg: 0 12px 32px rgba(62, 42, 31, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Display: Playfair Display (serif, premium)
   Body: Poppins (sans-serif, readable)
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--brown);
}

h3 {
    font-size: 1.5rem;
    color: var(--brown);
}

h4 {
    font-size: 1.2rem;
    color: var(--brown);
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* ============================================
   NAVIGATION WITH LOGO
   Lesh Tech Style: Logo on left, nav on right
   ============================================ */

nav {
    position: sticky;
    top: 0;
    background-color: var(--cream);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    min-height: auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    height: 110px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #b09133;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brown);
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   Warm Luxury Minimalism: Premium feel with approachability
   ============================================ */

.hero {
    height: 90vh;
    background: linear-gradient(135deg, rgba(62, 42, 31, 0.75) 0%, rgba(62, 42, 31, 0.6) 100%),
                url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b09133;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--brown);
    transform: translateY(-3px);
}

.trust-line {
    font-size: 0.95rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    opacity: 0.9;
    flex-wrap: wrap;
}

.trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-line i {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title .label {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

#about {
    background-color: var(--white);
}

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

.about-content h3 {
    color: var(--brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link.facebook {
    background-color: #1877F2;
    color: var(--white);
}

.social-link.facebook:hover {
    background-color: #0A66C2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

#reviews {
    background-color: var(--cream-dark);
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--brown);
    font-size: 1.1rem;
}

.review-rating {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-rating i {
    margin-right: 0.2rem;
}

.review-service {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 0 auto;
}

.review-form-container h3 {
    margin-bottom: 0.5rem;
    color: var(--brown);
}

.review-form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 164, 59, 0.1);
}

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

.rating-input {
    display: flex;
    gap: 1rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 1.5rem;
    color: var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--gold);
    transform: scale(1.1);
}

.success-message {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 4px;
    color: var(--brown);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-message i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

#pricing {
    background-color: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.pricing-card h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-dark);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--border);
}

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.price-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

/* ============================================
   TERMS SECTION
   ============================================ */

#terms {
    background-color: var(--cream-dark);
}

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

.term-block {
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.term-block h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brown);
}

.term-block i {
    color: var(--gold);
    font-size: 1.3rem;
}

.term-block ul {
    list-style: none;
}

.term-block li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.term-block li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.satisfaction-guarantee {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--brown);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h2 {
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 1.8rem;
}

.footer-brand p {
    opacity: 0.8;
    font-style: italic;
    font-size: 0.95rem;
}

.footer-contact h4,
.footer-hours h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-contact i,
.footer-hours i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 4%;
    }

    .nav-logo {
        height: 80px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 3rem 4%;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-line {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 4%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 4%;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .term-block {
        padding: 1.5rem;
    }
}
