*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5efe7;
color:#333;
}

:root {
  --primary: #6b2f21;
  --accent: #d97706;
  --glass: rgba(255, 255, 255, 0.95);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  background: transparent;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  border-bottom: 1px solid rgba(107, 47, 33, 0.08);
  animation: floatDown 0.6s ease-out;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo - Balanced for all devices */
.logo-wrapper {
  background: #fff;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.logo {
  height: 90px; /* Visible & clear size */
  width: auto;
  display: block;
}

/* Nav Links Styling */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  text-decoration: none;
  color:#d97706;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-item:hover, .nav-item.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Mobile Button Styling */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 2100;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 5px;
  transition: 0.4s;
}
/* Hero */

/* Color Palette */
:root {
  --primary: #6b2f21; /* Dark Brown */
  --accent: #d97706;  /* Golden Amber */
  --light: #fffdfa;
}

.hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #1a0f0d; /* Fallback */
}

/* Cinematic Background Animation */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/banner.jpg') center/cover no-repeat;
  animation: kenBurns 20s infinite alternate;
  z-index: 1;
}

/* Gradient Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 700px;
  animation: fadeLeft 1.2s ease-out;
}

.hero-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 75px); /* Responsive font size */
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--accent);
  display: block;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  max-width: 550px;
}

/* Button Styling */
.hero-btns {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  font-size: 16px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-5px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Animations */
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    height: 85vh;
  }
  
  .hero-overlay {
    background: rgba(0,0,0,0.6);
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 80%;
  }
}

/* Services */

:root {
  --primary: #6b2f21;
  --accent: #d97706;
  --bg-light: #fffcf9;
}

.services {
  padding: 50px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* Animated Corner Background Shapes */
.bg-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.shape-top { top: -100px; right: -100px; border: 2px dashed rgba(107, 47, 33, 0.1); animation: rotate 20s linear infinite; }
.shape-bottom { bottom: -100px; left: -100px; border: 2px dashed rgba(217, 119, 6, 0.1); animation: rotate 30s linear infinite reverse; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.subtitle {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 14px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--primary);
  margin-top: 10px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 15px auto;
  border-radius: 10px;
}

/* Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Card Styling */
.card {
  background: white;
  border-radius: 25px; /* Rounded like your logo */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(107, 47, 33, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(107, 47, 33, 0.05);
}

.card-img-wrapper {
  overflow: hidden;
  height: 250px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-content {
  padding: 30px;
  text-align: left;
}

.card h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

/* Hover States */
.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(107, 47, 33, 0.12);
  border-color: var(--accent);
}

.card:hover img {
  transform: scale(1.1);
}

.card-link:hover {
  gap: 15px;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
  .services { padding: 60px 0; }
  .service-grid { grid-template-columns: 1fr; width: 95%; margin: auto; }
  .card-content { padding: 25px; }
}

/* About */

:root {
  --primary: #6b2f21; /* Dark Brown */
  --accent: #d97706;  /* Golden Amber */
  --soft-bg: #fffbf7;
}

.about {
  padding: 120px 0;
  background: var(--primary);
  overflow: hidden;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Content Side */
.about-content {
  flex: 1;
  z-index: 2;
}

.about-subtitle {
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-title span {
  display: block;
  color: white;
  font-style: italic;
}

.about-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Stats Section */
.about-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color:white;
}

.stat-label {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(107, 47, 33, 0.2);
}

.about-btn {
  display: inline-block;
  padding: 15px 35px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.about-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

/* Visual Side (The Image Collage) */
.about-visual {
  flex: 1;
  position: relative;
}

.image-frame {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(107, 47, 33, 0.2);
}

.main-img {
  width: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.image-frame:hover .main-img {
  transform: scale(1.1);
}

/* Floating Elements */
.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Circular like logo */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  border: 5px solid white;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.deco-circle {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  z-index: 1;
  animation: rotateCircle 20s linear infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .about-flex {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .about { padding: 80px 0; }
  .about-content { text-align: center; }
  .about-stats { justify-content: center; }
  .deco-circle { display: none; }
}

/* Testimonials */

:root {
  --cw-primary: #6b2f21;  /* Deep Brown from logo */
  --cw-accent: #D9844F;   /* Gold/Tan from logo */
  --cw-cream: #FFF8F3;    
  --cw-glass: rgba(255, 255, 255, 0.85);
}

.cw-feedback-section {
  padding: 50px 20px;
  background-color: var(--cw-cream);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Floating Background Orbs */
.cw-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}
.cw-orb-1 { width: 300px; height: 300px; background: var(--cw-accent); top: -50px; left: -50px; }
.cw-orb-2 { width: 400px; height: 400px; background: var(--cw-primary); bottom: -100px; right: -50px; }

.cw-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cw-pre-title {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cw-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.cw-title {
  font-size: 2.8rem;
  color: var(--cw-primary);
  margin-bottom: 60px;
  font-weight: 800;
}

.cw-slider-container {
  position: relative;
  min-height: 320px;
}

.cw-card {
  display: none;
  background: var(--cw-glass);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 60px 50px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(107, 47, 33, 0.1);
  animation: cwFadeUp 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cw-card.active { display: block; }

@keyframes cwFadeUp {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cw-quote-mark {
  font-size: 40px;
  color: var(--cw-accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.cw-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--cw-primary);
  font-weight: 500;
  margin-bottom: 40px;
}

/* Professional Profile Section */
.cw-user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cw-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

.cw-user-info { text-align: left; }

.cw-author {
  font-size: 1.1rem;
  color: var(--cw-primary);
  font-weight: 700;
  margin: 0;
}

.cw-stars {
  color: #FBBF24; /* Professional Gold */
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Dots Styling */
.cw-dots { margin-top: 40px; }
.cw-dot {
  height: 8px;
  width: 8px;
  margin: 0 6px;
  background-color: rgba(107, 47, 33, 0.2);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s ease;
}
.cw-dot.active {
  width: 35px;
  border-radius: 10px;
  background-color: var(--cw-primary);
}

/* Mobile Friendly Code */
@media (max-width: 768px) {
  .cw-title { font-size: 2rem; }
  .cw-card { padding: 40px 25px; }
  .cw-text { font-size: 1.1rem; }
  .cw-user-profile { flex-direction: column; text-align: center; }
  .cw-user-info { text-align: center; }
}

/* Footer */

:root {
    --cw-main: #6b2f21;      /* Logo Brown */
    --cw-accent: #D9844F;    /* Logo Orange/Gold */
    --cw-cream: #FFF8F3;     /* Soft Contrast */
    --cw-glass: rgba(255, 255, 255, 0.05);
}

.cw-elite-footer {
    background-color: var(--cw-main);
    padding: 100px 0 0 0;
    position: relative;
    color: var(--cw-cream);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Background Subtle Animation */
.cw-footer-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(217, 132, 79, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cw-footer-grid {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 5;
}

/* Card Reveal Animation */
.cw-reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.cw-footer-card:nth-child(1) { animation-delay: 0.1s; }
.cw-footer-card:nth-child(2) { animation-delay: 0.3s; }
.cw-footer-card:nth-child(3) { animation-delay: 0.5s; }
.cw-footer-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Typography & Links */
.cw-heading {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: var(--cw-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.cw-brand-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 25px 0;
    opacity: 0.8;
}

.cw-list { list-style: none; padding: 0; }
.cw-list li { margin-bottom: 18px; }

.cw-list a {
    color: var(--cw-cream);
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.cw-list a i { font-size: 10px; color: var(--cw-accent); }

.cw-list a:hover {
    color: var(--cw-accent);
    transform: translateX(10px);
    opacity: 1;
}

/* Icon Info Stack */
.cw-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.cw-info-item i {
    font-size: 1.2rem;
    color: var(--cw-accent);
    background: var(--cw-glass);
    padding: 12px;
    border-radius: 12px;
    transition: 0.3s;
}

.cw-info-item:hover i {
    background: var(--cw-accent);
    color: white;
    transform: rotateY(180deg);
}

.cw-info-item p { font-size: 0.9rem; margin: 0; opacity: 0.8; }

/* Social Icons */
.cw-social-group { display: flex; gap: 15px; margin-top: 20px; }

.cw-social-link {
    width: 45px;
    height: 45px;
    background: var(--cw-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.4s;
}

.cw-social-link:hover {
    background: var(--cw-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Map Styling */
.cw-map-container {
    padding: 5px;
    background: var(--cw-glass);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Bottom Bar */
.cw-bottom-bar {
    margin-top: 80px;
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cw-bottom-bar p { font-size: 0.85rem; letter-spacing: 1px; opacity: 0.7; }
.cw-accent-text { color: var(--cw-accent); font-weight: bold; }

/* Mobile Optimization */
@media (max-width: 1024px) {
    .cw-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .cw-footer-grid { 
        grid-template-columns: 1fr; 
        text-align: left; /* Forced Left Alignment */
        gap: 40px;
    }
    .cw-info-item { 
        flex-direction: row; /* Keep icons and text side-by-side */
        align-items: flex-start; 
        justify-content: flex-start;
        gap: 15px; 
    }
    .cw-social-group { 
        justify-content: flex-start; /* Forced Left Alignment */
    }
    .cw-footer-logo { 
        margin: 0; /* Align logo to left */
    }
    .cw-heading {
        margin-bottom: 20px;
    }
}

/* Animation */
/* Mobile Responsive Logic */
@media (max-width: 992px) {
  .mobile-menu-btn { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0; /* Slide in */
  }

  /* Hamburger to 'X' Animation */
  .mobile-menu-btn.open .line-1 { transform: rotate(45deg) translate(6px, 6px); }
  .mobile-menu-btn.open .line-2 { opacity: 0; }
  .mobile-menu-btn.open .line-3 { transform: rotate(-45deg) translate(7px, -7px); }
}

@keyframes floatDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
/* Product Showcase Styles */
:root {
  --cw-primary: #6b2f21; /* Your Logo Brown */
  --cw-accent: #D9844F;  /* Your Logo Gold/Tan */
  --cw-bg: #ffffff;
  --cw-soft-text: #7a7a7a;
}

.cw-collection-section {
  padding: 40px 20px;
  background-color: var(--cw-bg);
  font-family: 'Poppins', sans-serif;
}

.cw-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styling */
.cw-header {
  text-align: center;
  margin-bottom: 70px;
}

.cw-tagline {
  color: var(--cw-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

.cw-main-title {
  font-size: 3rem;
  color: var(--cw-primary);
  font-weight: 800;
  margin: 10px 0;
}

.cw-title-line {
  width: 60px;
  height: 3px;
  background: var(--cw-accent);
  margin: 20px auto;
}

/* Gallery Grid - No Cards */
.cw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

/* Item Animation */
.cw-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.cw-item:nth-child(1) { animation-delay: 0.2s; }
.cw-item:nth-child(2) { animation-delay: 0.4s; }
.cw-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Professional Image Handling */
.cw-img-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1/1.2;
  background: #f9f9f9;
}

.cw-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.15, 0, 0.05, 1);
}

.cw-item:hover img {
  transform: scale(1.1);
}

/* Floating WhatsApp Overlay */
.cw-img-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(107, 47, 33, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s ease;
  backdrop-filter: blur(4px);
}

.cw-item:hover .cw-img-overlay {
  opacity: 1;
}

.cw-wa-btn {
  background: #25D366; /* WhatsApp Green */
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(20px);
  transition: 0.4s;
}

.cw-item:hover .cw-wa-btn {
  transform: translateY(0);
}

.cw-wa-btn:hover {
  background: white;
  color: #25D366;
}

/* Minimalist Details */
.cw-details {
  padding: 25px 5px;
  text-align: center;
}

.cw-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cw-accent);
  letter-spacing: 2px;
  font-weight: 700;
}

.cw-item-name {
  font-size: 1.5rem;
  color: var(--cw-primary);
  margin: 10px 0;
  font-weight: 700;
}

.cw-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cw-primary);
}

/* Badges */
.cw-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--cw-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
}

.cw-badge.cw-new {
  background: var(--cw-accent);
}

/* Explore Link Animation */
.cw-action-area {
  margin-top: 80px;
  text-align: center;
}

.cw-explore-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cw-primary);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.cw-explore-link i {
  margin-left: 10px;
  transition: 0.3s;
}

.cw-explore-link:hover {
  color: var(--cw-accent);
}

.cw-explore-link:hover i {
  transform: translateX(10px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cw-main-title { font-size: 2.2rem; }
  .cw-gallery-grid { gap: 30px; }
  .cw-item-name { font-size: 1.3rem; }
}


:root {
  --cs-primary: #6b2f21;
  --cs-accent: #D9844F;
  --cs-bg: #FFF8F3;
}

.cs-slider-section {
  padding: 40px 0;
  background-color: var(--cs-bg);
  overflow: hidden;
}

.cs-container {
  text-align: center;
}

.cs-pre-title {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--cs-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.cs-title {
  font-size: 2.5rem;
  color: var(--cs-primary);
  margin-bottom: 60px;
  font-weight: 800;
  padding: 0 20px;
}

/* Marquee Logic */
.cs-marquee-wrapper {
  display: flex;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.cs-marquee-content {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
}

/* Pause on Hover */
.cs-marquee-wrapper:hover .cs-marquee-content {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 6 - 30px * 6)); } 
  /* (Width + Gap) * Number of original images */
}

.cs-slide {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(107, 47, 33, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.cs-slide:hover {
  transform: scale(1.05) translateY(-10px);
  z-index: 10;
}

/* Glass Label */
.cs-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px;
  color: var(--cs-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.cs-slide:hover .cs-label {
  transform: translateY(0);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .cs-slide { width: 220px; height: 220px; }
  .cs-title { font-size: 1.8rem; }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 6 - 30px * 6)); }
  }
}

:root {
  --cw-primary: #6b2f21;
  --cw-accent: #D9844F;
  --cw-light: #FFF8F3;
  --cw-white: #ffffff;
}

.cw-faq-section {
  padding: 100px 20px;
  background-color: var(--cw-white);
  font-family: 'Poppins', sans-serif;
}

.cw-faq-container {
  max-width: 1200px;
  margin: auto;
}

.cw-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Left Side Styling */
.cw-faq-pre {
  color: var(--cw-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.cw-faq-main-title {
  font-size: 3.5rem;
  color: var(--cw-primary);
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 800;
}

.cw-faq-main-title span {
  color: var(--cw-accent);
}

.cw-faq-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cw-faq-image-box {
  position: relative;
  padding-right: 40px;
}

.cw-floating-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(107, 47, 33, 0.15);
  animation: floatAnim 6s ease-in-out infinite;
}

.cw-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--cw-primary);
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Accordion Styling */
.cw-faq-item {
  border-bottom: 1px solid rgba(107, 47, 33, 0.1);
  margin-bottom: 10px;
}

.cw-faq-header {
  display: flex;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cw-faq-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--cw-accent);
  margin-right: 25px;
  opacity: 0.5;
}

.cw-faq-header h3 {
  flex: 1;
  font-size: 1.2rem;
  color: var(--cw-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.cw-faq-header i {
  font-size: 1.2rem;
  color: var(--cw-accent);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cw-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cw-faq-body p {
  padding-bottom: 25px;
  color: #777;
  line-height: 1.7;
  padding-left: 45px;
}

/* Active State */
.cw-faq-item.active .cw-faq-header h3 { color: var(--cw-accent); }
.cw-faq-item.active .cw-faq-header i { transform: rotate(45deg); }
.cw-faq-item.active .cw-faq-body { max-height: 200px; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 992px) {
  .cw-faq-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .cw-faq-main-title { font-size: 2.5rem; }
  .cw-faq-image-box { display: none; } /* Hide image on mobile for cleaner look */
}


:root {
  --pm-brown: #6b2f21;
  --pm-gold: #D9844F;
  --pm-cream: #FFF8F3;
}

.premium-motion-section {
  padding: 150px 20px;
  background-color: var(--pm-cream);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.pm-container {
  max-width: 1200px;
  margin: auto;
}

.pm-header {
  text-align: center;
  margin-bottom: 50px;
}

.pm-pre {
  color: var(--pm-gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pm-title {
  font-size: 3rem;
  color: var(--pm-brown);
  margin-top: 10px;
  font-weight: 900;
}

.pm-title span {
  color: var(--pm-gold);
  font-style: italic;
}

/* The Grid and Cards */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.pm-card {
  background: white;
  border-radius: 40px;
  padding: 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(107, 47, 33, 0.05);
  animation: pmFadeIn 1s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

/* Image "Break-out" Effect */
.pm-image-wrapper {
  width: 100%;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: -60px; /* Pulls image above the card background */
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.6s ease;
  position: relative;
}

.pm-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pm-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  color: var(--pm-brown);
  font-size: 1.2rem;
}

.pm-content {
  margin-top: 30px;
  text-align: left;
}

.pm-content h3 {
  font-size: 1.6rem;
  color: var(--pm-brown);
  margin-bottom: 10px;
  font-weight: 700;
}

.pm-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.pm-badge {
  display: inline-block;
  background: rgba(217, 132, 79, 0.1);
  color: var(--pm-gold);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* WhatsApp Button */
.pm-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
}

/* Hover Animations */
.pm-card:hover {
  transform: translateY(15px);
  box-shadow: 0 30px 60px rgba(107, 47, 33, 0.12);
}

.pm-card:hover .pm-image-wrapper {
  transform: translateY(-15px) scale(1.03);
}

.pm-card:hover img {
  transform: scale(1.1);
}

.pm-wa-btn:hover {
  background: #1eb954;
  transform: scale(1.02);
}

/* Animations */
@keyframes pmFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pm-title { font-size: 2.5rem; }
  .pm-grid { gap: 80px; } /* More gap for image overlap */
  .pm-card { margin-top: 40px; }
}

:root {
  --cw-primary: #6b2f21;  /* Your Logo Brown */
  --cw-accent: #D9844F;   /* Your Logo Gold/Tan */
  --cw-whatsapp: #25D366;
}

.cw-floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.cw-action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(107, 47, 33, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Specific Colors matched to Theme */
.cw-phone {
  background: red;
  animation: cwPulse 2.5s infinite;
}

.cw-whatsapp {
  background: var(--cw-whatsapp);
  animation: cwPulse 2.5s infinite 1.25s; /* Staggered start */
}

/* Hover Tooltip - Glassmorphism */
.cw-tooltip {
  position: absolute;
  right: 75px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: var(--cw-primary);
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(107, 47, 33, 0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover States */
.cw-action-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.cw-action-btn:hover .cw-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Animations */
@keyframes cwPulse {
  0% { box-shadow: 0 0 0 0 rgba(107, 47, 33, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(107, 47, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 47, 33, 0); }
}

/* Specifically for the WhatsApp pulse color */
.cw-whatsapp {
  animation: cwPulseWA 2.5s infinite 1.25s;
}

@keyframes cwPulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* RESPONSIVE / MOBILE FRIENDLY */
@media (max-width: 768px) {
  .cw-floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .cw-action-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .cw-tooltip {
    display: none; /* Hide tooltips on mobile for a cleaner look */
  }
}


:root {
  --cw-main: #6b2f21;
  --cw-gold: #D9844F;
  --cw-white: #ffffff;
  --cw-soft: #FFF8F3;
}

/* Breadcrumb Hero - High Padding */
.cw-contact-hero {
  position: relative;
  padding: 160px 0 100px 0; /* Extra Top Padding for Header space */
  background: url('https://images.unsplash.com/photo-1519340333755-56e9c1d04579?q=80&w=1600') center/cover;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.cw-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(107, 47, 33, 0.9), rgba(0, 0, 0, 0.6));
}

.cw-hero-inner { position: relative; z-index: 5; color: white; }

.cw-breadcrumbs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.cw-breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.cw-breadcrumbs span { color: var(--cw-gold); font-weight: 700; }
.cw-breadcrumbs li + li::before { content: "/"; color: var(--cw-gold); margin-right: 15px; }

.cw-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  max-width: 800px;
  margin: auto;
  line-height: 1.2;
}
.cw-hero-title span { color: var(--cw-gold); }

/* Main Section Styling */
.cw-contact-main { padding: 100px 20px; background: var(--cw-soft); }
.cw-container { max-width: 1250px; margin: auto; }

.cw-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Form Card Style */
.cw-form-card {
  background: white;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(107, 47, 33, 0.08);
}

.cw-tag { color: var(--cw-gold); font-weight: 800; text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 10px; }
.cw-card-title { font-size: 2.5rem; color: var(--cw-main); margin-bottom: 15px; font-weight: 800; }
.cw-card-title span { color: var(--cw-gold); }
.cw-card-desc { color: #777; margin-bottom: 35px; line-height: 1.6; }

.cw-input-box { position: relative; margin-bottom: 20px; }
.cw-input-box i { position: absolute; left: 20px; top: 18px; color: var(--cw-gold); }
.cw-input-box input, .cw-input-box textarea {
  width: 100%; padding: 15px 20px 15px 55px; border-radius: 15px; border: 1px solid #f0f0f0; background: #fafafa; font-family: inherit; box-sizing: border-box; transition: 0.3s;
}
.cw-input-box textarea { height: 120px; resize: none; }
.cw-input-box input:focus, .cw-input-box textarea:focus { border-color: var(--cw-gold); outline: none; background: white; }

.cw-submit-btn {
  width: 100%; padding: 18px; background: var(--cw-main); color: white; border: none; border-radius: 15px; font-weight: 700; cursor: pointer; transition: 0.4s; display: flex; justify-content: center; gap: 10px; align-items: center;
}
.cw-submit-btn:hover { background: var(--cw-gold); transform: translateX(5px); }

/* Map Highlight Area */
.cw-highlight-map-area { position: relative; }
.cw-master-info { margin-bottom: 25px; }
.cw-info-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.cw-info-row i { width: 45px; height: 45px; background: var(--cw-gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cw-info-row p { margin: 0; color: var(--cw-main); font-weight: 500; font-size: 0.95rem; }

.cw-map-frame {
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 10px solid white;
  position: relative;
}
.cw-map-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--cw-main);
  color: white; padding: 10px 20px;
  border-radius: 50px; font-weight: 600; font-size: 0.8rem;
}

/* Branch Grid */
.cw-others-section { padding-bottom: 100px; background: var(--cw-soft); }
.cw-center-header { text-align: center; margin-bottom: 50px; }
.cw-section-title { font-size: 2.5rem; color: var(--cw-main); font-weight: 800; }
.cw-section-title span { color: var(--cw-gold); }

.cw-branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.cw-branch-card { background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #eee; }
.cw-branch-content { padding: 25px; }
.cw-branch-content h3 { color: var(--cw-main); margin-bottom: 5px; }
.cw-branch-content p { color: #777; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
  .cw-main-grid { grid-template-columns: 1fr; }
  .cw-hero-title { font-size: 2.5rem; }
  .cw-form-card { padding: 30px; }
}