/* ========== ROOT & COLORS ========== */
:root {
    --primary: #4E3929;
    --secondary: #203B25;
    --accent: #D6D3C8;
    --light: #f9f7f4;
    --text: #333;
    --white: #fff;
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ========== HEADER ========== */
header {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(78, 57, 41, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--accent);
}

nav a.active {
    color: var(--accent);
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* ========== PAGES ========== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
    width: 100%;
    overflow-x: hidden;
}

.page.active {
    display: block;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #4E3929 0%, #203B25 100%);
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    height: 70vh;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
    gap: 4rem;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #ddd;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-image {
    flex: 1;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-navigation {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-nav-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 1rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

.hero-dot:hover {
    background: var(--accent);
}

/* ========== BUTTONS ========== */
.btn {
    padding: 14px 35px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #e8e5d8);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 211, 200, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 6rem 2rem;
    background: var(--light);
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 900;
    position: relative;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--accent);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== CAROUSEL ========== */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: 4rem 0;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    font-size: 5rem;
    overflow: hidden;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    pointer-events: all;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 10px;
}

/* ========== PRODUCTS SHOWCASE ========== */
.products-showcase {
    padding: 6rem 2rem;
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.product-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-details {
    font-size: 0.85rem;
    color: var(--secondary);
    margin: 0.8rem 0;
    font-weight: 600;
}

/* ========== CLIENTS LOGOS ========== */
.clients-section {
    padding: 6rem 2rem;
    background: var(--light);
    overflow: hidden;
}

.clients-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: slideLogos 20s linear infinite;
    width: calc((180px + 3rem) * 16);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 180px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    flex-shrink: 0;
    padding: 1rem;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== WHY CUSTOMISED SECTION ========== */
.why-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(139,115,85,0.85)), 
                url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    border-radius: 12px;
    margin: 0 auto 6rem;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    width: calc(100% - 4rem);
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,165,116,0.1), transparent 50%);
    pointer-events: none;
}

.why-section h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.why-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.why-section .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.why-section .feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
}

.why-section .feature-item.show {
    animation: slideInUp 0.8s ease-out forwards;
}

.why-section .feature-item:nth-child(1).show {
    animation-delay: 0.2s;
}

.why-section .feature-item:nth-child(2).show {
    animation-delay: 0.5s;
}

.why-section .feature-item:nth-child(3).show {
    animation-delay: 0.8s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-section .feature-item h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-section .feature-item p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #555;
}

.why-section .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ========== ABOUT PAGE ========== */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.about-section:nth-child(even) {
    direction: rtl;
}

.about-section:nth-child(even) > * {
    direction: ltr;
}

.about-content {
    padding: 0;
}

.about-content h2 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    text-align: left;
}

.about-image {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(249,247,244,0.98));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent);
    border-left: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212,165,116,0.25);
    border-left-color: var(--secondary);
}

.feature-item h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.feature-item p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #666;
    position: relative;
    z-index: 1;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 5rem 0;
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mission, .vision {
    text-align: left;
}

.mission h2, .vision h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.mission p, .vision p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent);
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}



/* ========== PROCESS TIMELINE ========== */
.process-timeline {
    margin-top: 4rem;
    padding: 3rem 2rem;
    width: 100%;
    overflow-x: hidden;
}

.timeline-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--accent) 0%,
        var(--secondary) 25%,
        var(--accent) 50%,
        var(--secondary) 75%,
        var(--accent) 100%);
    z-index: 0;
}

.timeline-step {
    flex: 0 1 calc(14.28% - 1rem);
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 0.5rem;
    min-width: 140px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 3px var(--accent), 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(212,165,116,0.2), 0 6px 15px rgba(212,165,116,0.4);
}

.step-content {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(212,165,116,0.1);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timeline-step:hover .step-content {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--accent);
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(249,247,244,0.95));
}

.step-content .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(212,165,116,0.3);
    border: 2px solid var(--white);
}

.step-content h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== PRODUCT FILTERS ========== */
.product-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn.active {
    background: var(--accent);
    color: var(--white);
}

.filter-btn:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========== CONTACT PAGE ========== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.2);
}

.contact-info {
    background: var(--light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 900;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--secondary);
}

/* ========== FOOTER ========== */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 0;
}

.footer-content {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-bottom: 0;
}

.footer-section {
    padding: 3rem 2rem;
    border-right: 2px solid rgba(255,255,255,0.1);
}

.footer-section:nth-child(1) {
    background: var(--primary);
}

.footer-section:nth-child(2) {
    background: var(--secondary);
}

.footer-section:nth-child(3) {
    background: var(--primary);
}

.footer-section:nth-child(4) {
    background: var(--secondary);
}

.footer-section:last-child {
    border-right: none;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: #e0ddd4;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.1);
    padding: 2rem;
    text-align: center;
    color: #a8a5a0;
    background: #000000;
}

/* ========== 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 slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    nav.active {
        max-height: 400px;
    }

    nav a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-slide {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 100%;
        height: 300px;
    }

    .hero-navigation {
        bottom: -60px;
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .about-section:nth-child(even) {
        direction: ltr;
    }

    .about-image {
        height: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-section {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .why-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .why-section .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-container {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    .timeline-container::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, 
            var(--accent) 0%,
            var(--secondary) 25%,
            var(--accent) 50%,
            var(--secondary) 75%,
            var(--accent) 100%);
    }

    .timeline-step {
        padding: 0 0 2rem 3rem;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .timeline-dot {
        position: absolute;
        left: -22px;
        top: 0;
        margin: 0;
    }

    .step-content {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .step-content .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .carousel-item {
        height: 250px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 2rem;
    }
}

/* ========== INTERIOR DESIGN PAGE ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-content p {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* VISION, MISSION, GOALS */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--accent);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vm-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
}

/* ABOUT INTERIOR DESIGN */
.about-id-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-id-content h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-id-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    color: #555;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.about-id-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 400px;
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.project-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.project-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ONGOING PROJECTS */
.ongoing-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.ongoing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.ongoing-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 10px;
    transition: width 0.3s;
}

.ongoing-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ongoing-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* RESPONSIVE INTERIOR DESIGN */

/* ========== ENHANCED COLOR ACCENTS ========== */
.vm-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(78, 57, 41, 0.1);
    transition: all 0.3s;
    border-top: 5px solid var(--secondary);
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(78, 57, 41, 0.15);
}

.vm-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ========== CTA SECTION COLOR ENHANCEMENT ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-content p {
    color: #e0ddd4;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== PROJECT CARDS ========== */
.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(78, 57, 41, 0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
    background: var(--secondary);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.project-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* RESPONSIVE INTERIOR DESIGN */
@media (max-width: 768px) {
    .about-id-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-id-image {
        height: 300px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .ongoing-projects {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}
