:root {
    --primary: #C8A97E;
    --primary-dark: #b39160;
    --secondary: #181A1B;
    --text-dark: #2C2C2C;
    --text-light: #F5F2ED;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-dark: #121212;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typography */
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a, .contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 5px;
}

.social-links a {
    color: var(--text-light);
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--primary);
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    color: var(--secondary);
}

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

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

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(24, 26, 27, 0.9) 0%, rgba(24, 26, 27, 0.4) 100%);
}

.hero-content {
    color: var(--text-light);
    max-width: 600px;
}

.hero-content .subtitle {
    color: var(--primary);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.hero-content h2 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btns .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.hero-btns .btn-outline:hover {
    background-color: var(--text-light);
    color: var(--secondary);
}

/* Features */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    box-shadow: -20px 20px 0 var(--bg-light), -20px 20px 0 2px var(--primary);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 30px;
    text-align: center;
}

.experience-badge .number {
    display: block;
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-list {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-list li {
    font-weight: 500;
}

.about-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* Services */
.services {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-light);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Projects */
.projects {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.project-card {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
    transition: bottom 0.4s ease;
}

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

.project-card:hover .project-info {
    bottom: 0;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary);
    padding: 100px 0;
    color: var(--text-light);
}

.testimonials .section-subtitle {
    color: var(--primary);
}

.testimonials h2 {
    color: var(--text-light);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    position: relative;
}

.stars {
    color: var(--primary);
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.client-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 13px;
    color: var(--primary);
}

.rating-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 12px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 5px 10px;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #111;
    color: #999;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    color: var(--bg-white);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.about-col p {
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.hours-col span {
    color: var(--text-light);
    display: block;
}

.contact-col li {
    display: flex;
    gap: 15px;
}

.contact-col i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* WhatsApp CTA */
.whatsapp-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-cta:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-image {
        margin-bottom: 40px;
    }
    .services-grid, .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-links, .nav-btn {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .services-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-list {
        grid-template-columns: 1fr;
    }
    .experience-badge {
        right: 0;
    }
}

/* Mobile Menu Active */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    gap: 15px;
}
