/* Header css start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.navbar {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #E36414;
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

.search-box input {
    width: 350px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 15px;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.sign-in {
    margin-right: 15px;
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.get-started {
    text-decoration: none;
    background: #E36414;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
}

/* header css end  */



/* Transform Your Space section start */
.hero {
    width: 100%;
    height: 90vh;
    background: url('/Frontend/assets/img.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Brings heading, text, search box, buttons in front */
    text-align: center;
    color: white;
    max-width: 950px;
    width: 100%;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Search box */
.search-bar-box {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    padding: 18px;
    border-radius: 12px;
    gap: 15px;
    backdrop-filter: blur(4px);
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 730px;
}


.search-bar-box select,
.search-bar-box input {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    width: 230px;
    outline: none;
}

.search-btn {
    background: #E36414;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* Buttons */
.hero-buttons {
    margin-top: 10px;
}

.view-btn,
.consult-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin: 0 10px;
}

.view-btn {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.consult-btn {
    background: #E36414;
    color: white;
}


/* Transform Your Space end  */


.footer {
    background: #f8f8f8;
    padding: 50px 80px;
    font-family: Arial, sans-serif;
    color: #111;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    color: #E36414;
    font-size: 28px;
    font-weight: bold;
}

.footer-col {
    max-width: 260px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #111;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #E36414;
}

.footer-social a {
    font-size: 20px;
    margin-right: 18px;
    color: #111;
    text-decoration: none;
}

.contact-info li {
    line-height: 1.7;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #444;
}

.bottom-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #111;
}

.bottom-links a:hover {
    color: #E36414;
}

/* ✅ Responsive */
@media(max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer {
        padding: 40px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}



.featured-wrap {
    padding: 60px 80px;
    font-family: Arial, sans-serif;
}

.section-title {
    font-size: 36px;
    margin-bottom: 5px;
}

.section-sub {
    color: #666;
    margin-bottom: 30px;
}

.featured-layout {
    display: flex;
    gap: 40px;
}

/* Left Filter Panel */
.filter-panel {
    width: 260px;
    position: sticky;
    top: 10px;
    align-self: flex-start;

    padding-right: 20px;
}


.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-filter {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.filter-scroll {
    height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 8px;
    font-size: 16px;
}

label {
    display: block;
    margin: 6px 0;
    cursor: pointer;
}

.price-range input {
    width: 100%;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
}

/* Right Side Layout */
.design-area {
    flex: 1;
}

.design-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 15px;
}

.filter-tag {
    background: #eee;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Grid */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.design-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 12px;
    position: relative;
}

.design-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #ddd;
}

.design-card h4 {
    margin: 12px;
    font-size: 18px;
}

.sub {
    margin: -4px 12px 10px;
    color: #666;
}

.price {
    color: #E36414;
    font-weight: bold;
    margin-left: 12px;
}

.filter-panel {
    max-height: 600px;
    overflow: hidden;
}

.clear-btn-row {
    padding-top: 10px;
}

.clear-filters {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.clear-filters:hover {
    border-color: #E36414;
    color: #E36414;
}

/* for left side scrool  */
.filter-scroll {
    height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
    position: relative;
}


.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .35s ease;
}

.icon-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 6px;
}


.hover-book-btn {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    background: #E36414;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transition: all .35s ease;
    white-space: nowrap;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-image:hover .hover-book-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.design-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    transition: 0.3s;
}










.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal.show {
  display: flex;
  animation: fade .25s ease;
}

@keyframes fade { from {opacity:0;} to {opacity:1;} }

.modal-content {
  background: #fff;
  width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  animation: pop .3s ease;
}

@keyframes pop { from {transform: scale(.85); opacity:0;} to {transform: scale(1); opacity:1;} }

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

/* Steps */
.steps {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 25px 0 35px;
}
.step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #bbb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #888;
  background: #fff;
}
.step.active {
  border-color: #E36414;
  color: #E36414;
}

/* Form */
.form-step { display: none; }
.form-step.active { display: block; }

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  margin: 8px 0 18px 0;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.next-btn,
.back-btn,
.submit-btn {
  background: #E36414;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.back-btn { background: #666; }
.step-nav { display: flex; justify-content: space-between; }
.triple-input { display: flex; gap: 12px; }
.triple-input input, .triple-input select { width: 100%; }

.upload-box {
  width: 100%;
  border: 2px dashed #bbb;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  color: #777;
}

.summary-box {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.summary-box .total { color: #E36414; font-size: 18px; }

.payment-tabs {
  display: flex;
  margin-bottom: 18px;
  border-bottom: 1px solid #ddd;
}
.pay-tab {
  padding: 10px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 500;
}
.pay-tab.active {
  border-bottom: 2px solid #E36414;
  color: #E36414;
}
