:root {
    --primary: #303030;
    --accent: #569542;
    --accent-hover: #4a8038;
    --text-dark: #303030;
    --text-light: #6b6b6b;
    --bg-light: #f2f2f2;
    --white: #ffffff;
    --border: #e0e0e0;

    --font-heading: 'Jost', sans-serif;
    --font-body: 'Satoshi', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

* {
    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(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

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

/* Modern Sleek Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

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

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

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

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

/* Fixed Header - Matches Hero Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo img {
    height: 48px;
}

.header-contact a {
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745a872f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 48px;
    align-items: center;
}

.hero-text-area {
    color: var(--white);
}

.eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-title {
    font-size: 4.1rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    font-weight: 300;
}

/* Sharp Edges Form */
.lead-form-box {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
}

.lead-form-box .btn {
    width: 100%;
    margin-top: 12px;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    border-radius: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item h4 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 500;
}

.trust-item p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* Services */
.services-section {
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent);
    background-color: rgba(99, 174, 75, 0.03);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 32px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--accent);
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 500;
}

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

/* Offer Section */
.offer-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.offer-img {
    background-image: url('../images/see-your-dream-kitchen.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.offer-content {
    padding: 120px 80px;
}

.offer-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.offer-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 48px;
    font-weight: 300;
}

.steps-list {
    list-style: none;
    margin-bottom: 48px;
}

.steps-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.step-num {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
}

/* Gallery */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gallery-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.gallery-pane.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 32px 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.gallery-caption h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Before After - Fixed with Clip-Path */
.ba-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow);
    background-color: #000;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: none;
}

/* Border line replacing the old border-right trick */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--accent);
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    border: 4px solid var(--white);
    border-radius: 0;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.ba-labels {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    justify-content: space-between;
    z-index: 6;
    pointer-events: none;
}

.ba-label {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

/* Process */
.process-section {
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 96px;
    height: 96px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.process-step p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Material */
.material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.material-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.material-images img {
    border-radius: 0;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.material-features {
    list-style: none;
}

.material-features li {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--bg-light);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-text p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Projects */
.projects-section {
    background-color: var(--primary);
    color: var(--white);
}

.projects-section .section-title,
.projects-section .section-subtitle {
    color: var(--white);
}

.projects-section .section-subtitle {
    opacity: 0.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.project-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.project-info {
    padding: 32px;
}

.project-info h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.project-loc {
    color: var(--accent);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--accent);
}

.stars {
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: 1.4rem;
}

.client-details h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.client-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-details p i {
    color: var(--accent);
}

/* Showroom */
.showroom-section {
    background-color: var(--bg-light);
}

.showroom-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.showroom-img {
    background-image: url('../images/showroom.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.showroom-info {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showroom-info h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.info-icon {
    color: var(--white);
    background-color: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 0;
}

.info-content h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: var(--text-light);
    font-size: 1.05rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    margin-top: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 140px 0;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1556912167-f556f1f39fdf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 400;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 500;
}

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

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

.footer-col a {
    color: #a0a0a0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 16px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .benefits-grid,
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-grid,
    .material-grid,
    .showroom-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .offer-img {
        min-height: 400px;
    }

    .offer-content {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid,
    .projects-grid,
    .testimonials-grid,
    .gallery-grid,
    .gallery-pane.active,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .header-contact .contact-text {
        display: none;
    }

    .header-contact i {
        font-size: 1.25rem;
    }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    color: var(--white);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}