* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Aeonik Pro Regular', sans-serif;
  background: #fff;
}

.page {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════
   TOP HEADER - NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.left-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  border-right: none;
  border-bottom: 1px solid rgba(241, 230, 206, 0.75);
  background: rgba(241, 230, 206, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(11, 40, 64, 0.06);
}

.left-panel.transparent {
  background: rgba(241, 230, 206, 0.7);
  box-shadow: none;
}

/* Logo + Brand */
.left-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.logo {
  width: 172px;
  height: 172px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Desktop Nav Links (center) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex: 1;
  justify-content: center;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: #0B2840;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #4a7fd4;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-item:hover {
  color: #4a7fd4;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item[style*="color: #4a7fd4"] {
  color: #4a7fd4;
}

.nav-item[style*="color: #4a7fd4"]::after {
  transform: scaleX(1);
}

.nav-divider {
  display: none;
}

/* Social Icons (right side, desktop) */
.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.social-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #1a3a6e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.social-circle:hover {
  background: #1a3a6e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 110, 0.25);
}

.social-circle svg { 
  width: 15px; 
  height: 15px; 
  fill: #1a3a6e; 
  transition: fill 0.3s ease;
}

.social-circle i { 
  font-size: 14px; 
  color: #1a3a6e;
  transition: color 0.3s ease;
}

.social-circle:hover svg {
  fill: #fff;
}

.social-circle:hover i {
  color: #fff;
}

/* ── Hamburger button (hidden on desktop) ── */
.brand-name {
  font-family: 'Aeonik', serif;
  font-size: 28px;
  font-weight: 500;
  color: #0B2840;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* ── Hamburger button (hidden on desktop) ── */
.menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #1a3a6e;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.25s ease;
  flex-shrink: 0;
}

.menu-button:hover {
  background: rgba(26, 58, 110, 0.1);
}

/* ── Mobile slide-down drawer ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(241, 230, 206, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 40, 64, 0.12);
  z-index: 199;
  padding: 0;
  box-shadow: 0 8px 32px rgba(11, 40, 64, 0.12);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.mobile-nav-item {
  font-size: 13px;
  font-weight: 500;
  color: #0B2840;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(11, 40, 64, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(74, 127, 212, 0.08);
  color: #4a7fd4;
}

.mobile-nav-item.active::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #4a7fd4;
  border-radius: 50%;
}

.mobile-social {
  display: flex;
  gap: 12px;
  padding: 16px 28px 20px;
  border-top: 1px solid rgba(11, 40, 64, 0.1);
}



/* ═══════════════════════════════════════════════════════════
   RIGHT PANEL - MAIN CONTENT
   ═══════════════════════════════════════════════════════════ */

.right-panel {
  flex: 1;
  background: #dce8f8;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.right-top-bar {
  display: none;
}

/* old menu-button inside right-panel – kept for safety but hidden */

/* ═══════════════════════════════════════════════════════════
   HERO IMAGE AREA (Homepage)
   ═══════════════════════════════════════════════════════════ */

.hero-image-area {
  flex: 1;
  position: relative;
  margin-top: 20px;
}

.hero-image-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bg-text {
  position: absolute;
  left: -10px;
  top: 50%;
  font-size: 180px;
  font-weight: 800;
  color: rgba(26, 58, 110, 0.5);
  line-height: 0.9;
  letter-spacing: -4px;
  pointer-events: none;
  z-index: 1;
  font-family: 'Aeonik', serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%) rotate(180deg);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 12px;
}

.placeholder-icon {
  width: 64px;
  height: 64px;
  border: 2px dashed rgba(26, 58, 110, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon svg { 
  width: 28px; 
  height: 28px; 
  stroke: rgba(26,58,110,0.4); 
  stroke-width: 1.5; 
  fill: none; 
}

.placeholder-text {
  font-family: sans-serif;
  font-size: 13px;
  color: rgba(26,58,110,0.45);
  letter-spacing: 0.5px;
}
  
/* Service icons in the services grid */
.service-icon-custom {
    width: 40px; 
    height: 40px;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT AREA (All Pages)
   ═══════════════════════════════════════════════════════════ */

.content-area {
  flex: 1;
  padding: 32px 40px 40px 40px;
  overflow-y: auto;
}

.page-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 18px;
  color: #4a6d8c;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px 28px;
  row-gap: 16px;
  margin-bottom: 40px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(11, 40, 64, 0.12);
}

.pricing-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #dce8f8;
}

.pricing-category {
  font-size: 23px;
  font-weight: 500;
  color: #0B2840;
  letter-spacing: -0.3px;
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4f8;
}

.pricing-item:last-child {
  border-bottom: none;
}

/* Collapsible embroidery options */
.collapsible-trigger {
  cursor: pointer;
  user-select: none;
}

.collapsible-trigger:hover {
  background: #f0f4f8;
}

.collapse-arrow {
  font-size: 12px;
  color: #4a7fd4;
  transition: transform 0.3s ease;
}

.collapse-arrow.open {
  transform: rotate(180deg);
}

.collapsible-items {
  display: none;
  overflow: hidden;
}

.collapsible-items.open {
  display: block;
}

.sub-item {
  padding-left: 20px;
  background: #f8fafc;
  border-left: 3px solid #dce8f8;
}

.service-name {
  font-size: 16px;
  color: #0B2840;
  font-weight: 400;
}

.service-price {
  font-size: 18px;
  font-weight: 500;
  color: #1a3a6e;
}

.pricing-note {
  grid-column: 1 / 2;
  background: #fff;
  border-left: 4px solid #4a7fd4;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 0;
}

.pricing-category.addons-heading {
  font-size: 18px;

}

.pricing-items.add-ons-section .service-name,
.pricing-items.add-ons-section .service-price {
  font-size: 16px;
}


.pricing-note p {
  font-size: 16px;
  color: #0B2840;
  line-height: 1.5;
}

.pricing-note strong {
  color: #0B2840;
}

@media (max-width: 768px) {
  .pricing-note {
    grid-column: 1 / -1;
  }
}
/* ═══════════════════════════════════════════════════════════
   FABRICS PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.fabric-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fabric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(11, 40, 64, 0.12);
}

.fabric-image {
  position: relative;
  width: 100%;
  background: #f5f8fb;
}

.fabric-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.fabric-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dce8f8 0%, #f0f4f8 100%);
}

.fabric-placeholder svg {
  width: 80px;
  height: 80px;
  fill: rgba(26, 58, 110, 0.25);
}

.fabric-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.fabric-badge.available {
  background: #4a7fd4;
  color: #fff;
}

.fabric-badge.limited {
  background: #f59e0b;
  color: #fff;
}

.fabric-info {
  padding: 20px;
}

.fabric-name {
  font-size: 22px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.fabric-description {
  font-size: 14px;
  color: #4a6d8c;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fabric-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f8;
}

.fabric-origin,
.fabric-weight {
  font-size: 13px;
  color: #6b8aa3;
}

.fabric-cta {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.fabric-cta p {
  font-size: 18px;
  color: #0B2840;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: #1a3a6e;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
} 


.cta-button:hover {
  background: #0B2840;
  transform: translateY(-2px);
}



/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-intro {
  font-size: 20px;
  color: #4a6d8c;
  margin-top: 16px;
  font-style: italic;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.section-heading {
  font-size: 32px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-heading.centered {
  text-align: center;
  margin-bottom: 40px;
}

.about-text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a6d8c;
  margin-bottom: 16px;
}

.about-image-block {
  width: 100%;
}

.about-image-placeholder {
  width: 100%;
  height: 300px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.about-image-placeholder svg {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}

.image-caption {
  font-size: 14px;
  color: #6b8aa3;
  font-style: italic;
}

.about-values {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-image {
  width: 320px;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .value-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-image {
    width: 100%;
    height: auto;
  }
}

 .about-image {
  width: 100%;
  height: 100%;
  object-fit: auto;
  border-radius: 12px;
}

.about-promise {
  background: #fff;
  padding: 50px 40px;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

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

.promise-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a6d8c;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promise-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a3a6e;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #6b8aa3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-cta {
  text-align: center;
  padding: 40px 20px;
}

.cta-heading {
  font-size: 36px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 18px;
  color: #4a6d8c;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-form-section {
  background: #fff;
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.form-heading {
  font-size: 28px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Aeonik', serif;
  color: #0B2840;
  background: #f8fafc;
  border: 1.5px solid #dce8f8;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4a7fd4;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 127, 212, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Aeonik', serif;
  color: #fff;
  background: #1a3a6e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #0B2840;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 40, 64, 0.2);
}

.form-submit-btn i {
  font-size: 14px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.info-heading {
  font-size: 20px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 20px;
  font-size: 18px;
  color: #4a7fd4;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text {
  flex: 1;
}

.info-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6d8c;
  margin-bottom: 4px;
}

.info-text p strong {
  color: #0B2840;
  font-weight: 500;
}

.info-description {
  font-size: 14px;
  color: #6b8aa3;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 6px;
  text-decoration: none;
  color: #0B2840;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #dce8f8;
  transform: translateX(4px);
}

.social-link i {
  font-size: 18px;
  color: #4a7fd4;
}

.appointment-banner {
  background: linear-gradient(135deg, #1a3a6e 0%, #0B2840 100%);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(11, 40, 64, 0.15);
}

.banner-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.banner-heading {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.banner-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.banner-btn.primary {
  background: #fff;
  color: #1a3a6e;
}

.banner-btn.primary:hover {
  background: #dce8f8;
  transform: translateY(-2px);
}

.banner-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.banner-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Form messages */
.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
.form-message.success {
  background: #e6f4ea;
  color: #2d6a4f;
  border: 1px solid #b7dfca;
}
.form-message.error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════ */

.home-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  padding: 20px 0;
}

.hero-text-content {
  z-index: 2;
}

.hero-title {
  font-size: 52px;
  font-weight: 500;
  color: #0B2840;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #4a6d8c;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons .cta-button {
  flex: 1 1 auto;
  min-width: 160px;
  text-align: center;
  justify-content: center;
}

.cta-button.primary {
  background: #1a3a6e;
  color: #fff;
}

.cta-button.primary:hover {
  background: #0B2840;
}

.cta-button.secondary {
  background: transparent;
  color: #1a3a6e;
  border: 2px solid #1a3a6e;
}

.cta-button.secondary:hover {
  background: #dce8f8;
  border-color: #0B2840;
  color: #0B2840;
}

.cta-button.whatsapp {
  background: #1a3a6e;
  color: #fff;
  border: 2px solid #1a3a6e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button.whatsapp:hover {
  background: #0B2840;
  border-color: #0B2840;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 40, 64, 0.1);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dce8f8 0%, #f0f4f8 100%);
  gap: 16px;
}

.hero-image-placeholder svg {
  width: 120px;
  height: 120px;
  fill: rgba(26, 58, 110, 0.25);
}

.hero-image-placeholder .placeholder-text {
  font-size: 14px;
  color: rgba(26, 58, 110, 0.5);
  letter-spacing: 0.5px;
}

.thread-accent {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4a7fd4 50%, transparent 100%);
}

/* Values Section */
.home-values {
  margin-bottom: 80px;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: #6b8aa3;
  margin-bottom: 40px;
  margin-top: -20px;
}

.value-description {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6d8c;
}

/* Featured Fabrics Section */
.home-fabrics-section {
  margin-bottom: 80px;
}

.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-subtext {
  font-size: 14px;
  color: #6b8aa3;
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #4a7fd4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: #1a3a6e;
  gap: 12px;
}

.text-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.text-link:hover i {
  transform: translateX(2px);
}

.featured-fabrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* Featured Fabrics on Home Page - small capped image */
.featured-fabrics-grid .fabric-image {
  height: 340px;
  overflow: hidden;
}

.featured-fabrics-grid .fabric-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Services Section */
.home-services-section {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(11, 40, 64, 0.12);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  font-size: 24px;
  color: #4a7fd4;
}

.service-name {
  font-size: 19px;
  font-weight: 500;
  color: #0B2840;
  letter-spacing: -0.3px;
}

.service-description {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6d8c;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price-range {
  font-size: 16px;
  font-weight: 500;
  color: #1a3a6e;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f4f8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #4a7fd4;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #1a3a6e;
  gap: 12px;
}

.service-link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(2px);
}

/* Process Timeline Section */
.home-process-section {
  margin-bottom: 80px;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  color: #4a7fd4;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dce8f8;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-bottom: 8px;
}

.step-title {
  font-size: 20px;
  font-weight: 500;
  color: #0B2840;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6d8c;
}

.process-divider {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, #dce8f8 0%, transparent 100%);
  margin-left: 19px;
}

/* Testimonial Section */
.home-testimonial {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 8px;
  padding: 50px 40px;
  box-shadow: 0 2px 8px rgba(11, 40, 64, 0.08);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 36px;
  color: #dce8f8;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.7;
  color: #0B2840;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

.testimonial-author {
  font-size: 15px;
  color: #6b8aa3;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  padding: 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(26, 58, 110, 0.15);
  background: #dce8f8;
}

.site-footer p {
  font-size: 14px;
  color: #4a6d8c;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .social-icons {
    gap: 6px;
  }
}

/* ── Tablet / Small laptop: hide social icons, keep nav ── */
@media (max-width: 1024px) {
  .social-icons {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu {
    display: block;
  }
}

/* ── Mobile: hide nav links, show hamburger ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .social-icons {
    display: none;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .left-panel {
    padding: 0 1rem;
  }

  .page {
    flex-direction: column;
  }

  .right-panel {
    min-height: 60vh;
  }

  .content-area {
    padding: 24px 20px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-grid,
  .fabric-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .hero-image-container {
    height: 350px;
  }

  .services-grid,
  .featured-fabrics-grid {
    grid-template-columns: 1fr;
  }

  .section-header-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: 32px;
  }

  .section-heading {
    font-size: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .promise-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .banner-heading {
    font-size: 24px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .process-timeline {
    padding: 28px 20px;
  }

  .testimonial-quote {
    font-size: 18px;
  }

  .home-testimonial {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 26px;
  }

  .content-area {
    padding: 20px 16px;
  }

  .contact-form-section {
    padding: 20px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-image-container {
    height: 260px;
  }

  .step-number {
    min-width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .process-divider {
    margin-left: 17px;
    height: 22px;
  }

  .step-title {
    font-size: 17px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .quote-icon {
    font-size: 26px;
  }
}
