* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background-color: #f7f1e3;
}

/* Top Bar */
.top-bar {
    background: #e8c7ff;
    color: #000;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 35px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 5px solid rgb(255, 255, 255);
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

/* --- Premium Bestseller Heading --- */
#bestseller {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #c9a36b, #f3e2c7);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    /* margin-bottom: 12px; */
    margin-top: 20px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.15);
    animation: fadeUp 1s ease forwards;
    transition: transform 0.3s, text-shadow 0.3s;
}

/* Hover Glow Effect */
#bestseller:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(201, 163, 107, 0.6);
}

/* Decorative side elements as elegant vertical lines */
#bestseller::before,
#bestseller::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: #c9a36b;
    border-radius: 2px;
}

#bestseller::before {
    left: -50px;
}

#bestseller::after {
    right: -50px;
}

/* Subheading styling */
#bestseller-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #8c8c8c;
    text-transform: capitalize;
    animation: fadeUp 1.3s ease forwards;
    margin-top: 5px;
}

/* Smooth entrance animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #4d2714;
    font-weight: 600;
    text-align: center;

}

.logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

/* Menus */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-left: 110px;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    color: #6e4400;
    letter-spacing: 0.5px;
    font-family: 'Gravitas One', serif;
}

.nav-menu li a:hover,
.nav-menu .active a {
    color: #ff3305;
}

/* Right Menu */
.right-menu {
    margin-left: auto;
    margin-right: 60px;
}

/* Mobile Menu Icon */
.mobile-icon {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px;
}

.mobile-menu a {
    padding: 10px 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #111;
}

/* Responsive */
@media (max-width: 992px) {

    .nav-menu {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
        margin: auto;
    }

    .mobile-icon {
        display: block;
        position: absolute;
        right: 24px;
    }

    .mobile-menu.show {
        display: flex;
    }
}

/* ===== MEGA MENU ===== */
.mega-parent {
    position: relative;
}

.mega-parent i {
    font-size: 11px;
    margin-left: 4px;
}

/* Mega Menu Box */
.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    width: 500px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
    border-radius: 14px;
}

/* Hover for Desktop */
.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* Content Layout */
.mega-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mega-column h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #6b2fa3;
}

.mega-column a {
    display: block;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    margin-bottom: 8px;
}

.mega-column a:hover {
    color: #623f26;
}

/* Image Boxes */
.image-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.image-box p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* ===== MOBILE MEGA MENU ===== */
@media (max-width: 992px) {

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        padding: 15px 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .mega-content {
        grid-template-columns: 1fr;
    }

    .mega-parent.active .mega-menu {
        display: block;
    }
}

/* marquee line */
.marquee-container {
    background-color: #f7f1e3;
    /* Soft cream background */
    color: #000000;
    /* Dark text */
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 12px 0;
    font-family: 'Playfair Display', serif;
    /* Elegant font */
    font-size: 22px;
    /* Slightly larger */
    font-weight: 500;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    /* Slow scrolling speed */
}

.marquee-content span {
    margin-right: 80px;
    /* Space between phrases */
}

/* Smooth scrolling from right to left, start immediately */
@keyframes marquee {
    0% {
        transform: translateX(40%);
        /* Start from right edge */
    }

    100% {
        transform: translateX(-100%);
        /* End at left edge */
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slides.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    animation: slideUp 1.2s ease;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    background: #c8a97e;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dots span {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.dots span.active {
    opacity: 1;
    background: #c8a97e;
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content {
        left: 5%;
        right: 5%;
    }
}

#category-strip {
    display: flex;
    gap: 45px;
    padding: 40px 60px;
    background: #fdf9f6;
    overflow-x: auto;
    scrollbar-width: none;
}

#category-strip::-webkit-scrollbar {
    display: none;
}

#category-strip .category-item {
    text-align: center;
    min-width: 130px;
    cursor: pointer;
}

#category-strip .category-item img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#category-strip .category-item:hover img {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#category-strip .category-item p {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #2b2b2b;
    letter-spacing: 0.3px;
}


/* homepage section-3 css  */

#section-3 {
    width: 100%;
    overflow: hidden;
}

#section-3 img {
    width: 100%;
    height: auto;
    display: block;
}

/* section 4 */

#section-4 {
    padding: 0px 5%;
    background: #f7f1e3;
}

/* GRID */
#section-4 .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* CARD */
#section-4 .category-card {
    cursor: pointer;
    text-align: center;
}

/* IMAGE CONTAINER */
#section-4 .image-box {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 14px;
}

/* IMAGES */
#section-4 img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

/* DEFAULT IMAGE */
#section-4 .main-img {
    opacity: 1;
    transform: scale(1);
}

/* HOVER IMAGE */
#section-4 .hover-img {
    opacity: 0;
    transform: scale(1.1);
}

/* HOVER EFFECT */
#section-4 .category-card:hover .main-img {
    opacity: 0;
    transform: scale(1.05);
}

#section-4 .category-card:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* CATEGORY TEXT */
#section-4 .category-title {
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #222;
    transition: color 0.3s ease;
}

#section-4 .category-card:hover .category-title {
    color: #000;
}

/* sections 5 homepage */
#section-5 {
    padding: 70px 80px;
    background: #f7f1e3;
    font-family: 'Poppins', sans-serif;
    
}

/* Tabs */
.section5-tabs-wrap {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;

}

#section5-tabs {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;

}

#section5-tabs li {
    padding-bottom: 14px;
    cursor: pointer;
    font-size: 15px;
    color: #777;
    position: relative;
}

#section5-tabs li.active {
    color: #000;
    font-weight: 500;
}

#section5-tabs li.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* Tabs Content */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.0s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    transition: all .3s ease;
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-img img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}

.product-card:hover img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
}

.cat {
    font-size: 12px;
    color: #888;
    margin: 10px 0 4px;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px;
}

.price {
    font-size: 14px;
    color: #000;
}

.price span {
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

/* section 6 of homepage */
#section-6 {
  padding: 10px 5%;
  font-family: Arial, sans-serif;
  background:#f7f1e3;
}

#section-6 .box {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin-top: 15px;
}

#section-6 .box.tall {
  height: 100%;
  min-height: 544px; /* matches two stacked images */
}

#section-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#section-6 .box span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  padding: 6px;
}

/* TEXT AREA (BOTTOM RIGHT) */
#section-6 .text-box {
  max-width: 300px;
  margin-left: auto;
}

#section-6 .text-box h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: #1f1f1f;
  margin-bottom: 18px;
}

#section-6 .text-box p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #6b6b6b;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #section-6 .box.tall {
    min-height: auto;
    height: 260px;
  }

  #section-6 .text-box {
    margin-top: 40px;
    margin-left: 0;
  }
}

/* TABLET */
@media (max-width: 991px) {

  #section-6 {
    padding: 60px 4%;
  }

  #section-6 .box {
    height: 240px;
  }

  #section-6 .box.tall {
    height: 240px;
    min-height: auto;
  }

  #section-6 .text-box {
    margin-top: 30px;
    max-width: 100%;
  }

  #section-6 .text-box h2 {
    font-size: 28px;
  }
}

/* MOBILE */
@media (max-width: 575px) {

  #section-6 {
    padding: 50px 15px;
  }

  #section-6 .row.g-4 {
    row-gap: 24px;
  }

  #section-6 .box {
    height: 220px;
  }

  #section-6 .box span {
    font-size: 10px;
    padding: 5px;
  }

  #section-6 .text-box {
    text-align: left;
  }

  #section-6 .text-box h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  #section-6 .text-box p {
    font-size: 14px;
  }
}


/* Main Footer */
#main-footer {
    background: #e7d6be;
    color: #2f2a26;
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #e8ded2;
}

/* Container */
#footer-container {
    width: 88%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

/* About Section */
#footer-about {
    width: 25%;
}

#footer-logo {
    font-size: 30px;
    margin-bottom: 20px;
    color: #6b4f3b;
    letter-spacing: 1.5px;
    font-weight: 600;
}

#footer-description {
    font-size: 14px;
    line-height: 1.9;
    color: #5c544e;
}

/* Links Section */
#footer-links {
    width: 20%;
}

#footer-links-heading {
    margin-bottom: 22px;
    font-size: 16px;
    color: #6b4f3b;
    font-weight: 600;
}

#footer-links-list {
    list-style: none;
    padding: 0;
}

#footer-links-list li {
    margin-bottom: 12px;
}

#footer-links-list li a {
    color: #5c544e;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

#footer-links-list li a:hover {
    color: #b89b5e;
}

/* Services Section */
#footer-services {
    width: 20%;
}

#footer-services-heading {
    margin-bottom: 22px;
    font-size: 16px;
    color: #6b4f3b;
    font-weight: 600;
}

#footer-services-list {
    list-style: none;
    padding: 0;
}

#footer-services-list li {
    margin-bottom: 12px;
    color: #5c544e;
    font-size: 14px;
}

/* Contact Section */
#footer-contact {
    width: 25%;
}

#footer-contact-heading {
    margin-bottom: 22px;
    font-size: 16px;
    color: #6b4f3b;
    font-weight: 600;
}

#footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #5c544e;
}

/* Social Icons */
#footer-social {
    margin-top: 20px;
}

#footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-right: 8px;
    background: #ffffff;
    color: #6b4f3b;
    border-radius: 50%;
    border: 1px solid #e3d7c9;
    transition: 0.3s ease;
}

#footer-social a:hover {
    background: #b89b5e;
    color: #ffffff;
    border-color: #b89b5e;
}

/* Bottom Bar */
#footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #6b625c;
    border-top: 1px solid #e8ded2;
}


/* go to top button */
#goTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;

  width: 54px;
  height: 54px;

  background: linear-gradient(145deg, #d7bf8b, #b89c64);
  border: none;
  border-radius: 50%;

  display: none;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 20px;
  font-weight: 500;

  cursor: pointer;
  z-index: 999;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);

  transition: all 0.35s ease;
}

#goTopBtn span {
  transform: translateY(2px);
}

/* Hover – premium lift effect */
#goTopBtn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Click */
#goTopBtn:active {
  transform: scale(0.95);
}

/* Mobile */
@media (max-width: 576px) {
  #goTopBtn {
    width: 46px;
    height: 46px;
    bottom: 24px;
    right: 24px;
    font-size: 18px;
  }
}


#whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-float svg {
    width: 28px;
    height: 28px;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ===== Banner Section ===== */
#about-banner {
    position: relative;
    height: 300px;
    background: url('images/banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

/* ===== About Us Section ===== */
#about-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-images img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* ===== Call To Action ===== */
#cta {
    background: #1f1f1f;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c9a14a;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #b38b35;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}



/* ==========================================
   LUXURY HOME DECOR CONTACT PAGE
   Brown Color Scheme - ID Selectors Only
   ========================================== */

/* CSS Variables for Brown Luxury Palette */
:root {
    --brown-dark: #3E2723;
    --brown-primary: #5D4037;
    --brown-medium: #795548;
    --brown-light: #A1887F;
    --brown-accent: #8D6E63;
    --cream: #F5F0E8;
    --cream-dark: #E8DFD4;
    --gold: #C9A961;
    --gold-light: #E5D4A3;
    --white: #FFFFFF;
}

/* Reset & Base Styles */


/* Page Wrapper with Background */
#page-wrapper {
    position: relative;
    min-height: 100vh;
}

/* Decorative Background Texture */
#bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(93, 64, 55, 0.02) 2px,
            rgba(93, 64, 55, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Left Ornamental Element */
#bg-ornament-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top left, rgba(201, 169, 97, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Right Ornamental Element */
#bg-ornament-right {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at bottom right, rgba(93, 64, 55, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Container */
#container {
    position: relative;
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 40px 20px; */
    z-index: 2;
}



/* ==========================================
   HEADER SECTION
   ========================================== */

#header {
    text-align: center;
    padding: 30px 0 0px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#logo-section {
    display: inline-block;
    position: relative;
}

#logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--brown-primary);
    margin-bottom: 5px;
    position: relative;
}

#logo-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#tagline {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brown-accent);
    font-weight: 300;
    margin-top: 20px;
}

/* ==========================================
   MAIN CONTENT GRID
   ========================================== */

#main-content {
    animation: fadeInUp 1s ease-out 0.3s backwards;
    padding: 40px 20px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    
}

#contact-continer{
    padding: 40px 20px;
}

/* ==========================================
   FORM SECTION
   ========================================== */

#form-section {
    background: var(--white);
    padding: 60px;
    border-radius: 2px;
    box-shadow: 
        0 20px 60px rgba(93, 64, 55, 0.08),
        0 1px 0 rgba(201, 169, 97, 0.2);
    border-top: 3px solid var(--gold);
}

#form-header {
    margin-bottom: 45px;
}

#form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--brown-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

#form-description {
    font-size: 1rem;
    color: var(--brown-accent);
    line-height: 1.8;
    font-weight: 300;
}

/* Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Input Groups */
#input-group-name,
#input-group-email,
#input-group-phone,
#input-group-service,
#input-group-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Labels */
#label-name,
#label-email,
#label-phone,
#label-service,
#label-message {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brown-primary);
}

/* Input Fields */
#name,
#email,
#phone,
#service,
#message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 16px 20px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 2px;
    background: var(--cream);
    color: var(--brown-dark);
    transition: all 0.3s ease;
}

#name:focus,
#email:focus,
#phone:focus,
#service:focus,
#message:focus {
    outline: none;
    border-color: var(--brown-accent);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.1);
}

#service {
    cursor: pointer;
}

#message {
    resize: vertical;
    min-height: 140px;
    font-family: 'Montserrat', sans-serif;
}

#message::placeholder {
    color: var(--brown-light);
}

/* Submit Button */
#submit-btn {
    margin-top: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-medium));
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(93, 64, 55, 0.3);
}

#submit-btn:hover::before {
    left: 100%;
}

#submit-btn:active {
    transform: translateY(0);
}

#btn-text {
    position: relative;
    z-index: 1;
}

#btn-arrow {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

#submit-btn:hover #btn-arrow {
    transform: translateX(5px);
}

/* ==========================================
   INFO SECTION
   ========================================== */

#info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#info-card {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 2px;
    box-shadow: 0 15px 45px rgba(93, 64, 55, 0.06);
    border-left: 4px solid var(--gold);
}

#info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--brown-primary);
    margin-bottom: 35px;
}

/* Address Block */
#address-block,
#hours-block,
#phone-block,
#email-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cream-dark);
}

#email-block {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#icon-location,
#icon-clock,
#icon-phone,
#icon-email {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
}

#address-content,
#hours-content,
#phone-content,
#email-content {
    flex: 1;
}

#address-label,
#hours-label,
#phone-label,
#email-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-accent);
    margin-bottom: 8px;
}

#address-text,
#hours-text {
    font-size: 0.95rem;
    color: var(--brown-dark);
    line-height: 1.8;
    font-weight: 300;
}

#phone-link,
#email-link {
    font-size: 1rem;
    color: var(--brown-primary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

#phone-link:hover,
#email-link:hover {
    color: var(--gold);
}

#contact-details {
    margin-top: 35px;
}

/* Social Section */
#social-section {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid var(--cream-dark);
}

#social-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brown-accent);
    margin-bottom: 15px;
}

#social-links {
    display: flex;
    gap: 20px;
}

#social-instagram,
#social-pinterest,
#social-houzz {
    font-size: 0.9rem;
    color: var(--brown-primary);
    text-decoration: none;
    padding: 8px 20px;
    border: 1.5px solid var(--brown-light);
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 400;
}

#social-instagram:hover,
#social-pinterest:hover,
#social-houzz:hover {
    background: var(--brown-primary);
    color: var(--white);
    border-color: var(--brown-primary);
    transform: translateY(-2px);
}

/* Quote Card */
#quote-card {
    background: linear-gradient(135deg, var(--brown-primary), var(--brown-medium));
    padding: 40px 45px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

#quote-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

#quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

#quote-author {
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    #contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #form-section {
        padding: 45px 40px;
    }

    #info-card {
        padding: 40px 35px;
    }

    #logo-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    #container {
        padding: 20px 15px;
    }

    #header {
        padding: 40px 0 50px;
    }

    #logo-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    #tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    #form-section {
        padding: 35px 25px;
    }

    #form-title {
        font-size: 2rem;
    }

    #info-card {
        padding: 35px 25px;
    }

    #info-title {
        font-size: 1.6rem;
    }

    #social-links {
        flex-direction: column;
    }

    #social-instagram,
    #social-pinterest,
    #social-houzz {
        text-align: center;
    }

    #quote-card {
        padding: 30px 25px;
    }

    #quote-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #logo-text {
        font-size: 2rem;
    }

    #form-section {
        padding: 25px 20px;
    }

    #form-title {
        font-size: 1.6rem;
    }

    #submit-btn {
        padding: 16px 30px;
        font-size: 0.85rem;
    }
}