/* ==========================================
   SLIDESTOPRINTS.COM - ELEGANT PREMIUM STYLE
   Complete Stylesheet - All Pages
   P26-02-03-1741-CT
   NO inline CSS - everything is here
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  --gold: #a98453;
  --dark: #2c2416;
  --mid-brown: #4a4035;
  --light-brown: #6b5d4f;
  --cream: #fdfcfb;
  --light-cream: #f8f6f3;
  --white: #ffffff;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--light-cream) 100%);
  color: var(--dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: 64px;
  color: var(--dark);
}

h2 {
  font-size: 42px;
  color: var(--dark);
}

h3 {
  font-size: 22px;
  color: var(--dark);
}

p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==========================================
   NAVIGATION
   ========================================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  border-bottom: 1px solid rgba(169, 132, 83, 0.2);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Prevent nav overlap on mid-width screens */
  flex-wrap: wrap;
  gap: 18px;
}

.logo {
  font-size: 28px;
  font-weight: normal;
  color: var(--dark);
  letter-spacing: 2px;
  font-style: italic;
  text-decoration: none;
  flex: 1 1 220px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 14px;
}

.nav-links { flex: 1 1 auto; }


.nav-links a {
  text-decoration: none;
  color: var(--mid-brown);
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 500;

  /* Long CTA wrapping (single background box, no folding) */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  white-space: normal;
  max-width: 240px;
}

.nav-cta:hover {
  background: #8a6a3f;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--dark);
  color: #d4c4b0;
  padding: 60px 60px 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-about h3 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: normal;
  font-style: italic;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #d4c4b0;
  text-decoration: none;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 196, 176, 0.2);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==========================================
   BUTTONS & CTAs
   ========================================== */
.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.cta-button:hover {
  background: transparent;
  color: var(--gold);
}

.cta-secondary {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
}

.cta-secondary:hover {
  background: var(--gold);
  color: white;
}

/* ==========================================
   LAYOUT SECTIONS
   ========================================== */
.section-title {
  text-align: center;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 60px;
  font-weight: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 50px 40px;
}

.section-white {
  background: white;
}

.section-cream {
  background: var(--light-cream);
}

.section-gold {
  background: var(--gold);
  color: white;
}

/* ==========================================
   PAGE HEADER (for interior pages)
   ========================================== */
.page-header {
  text-align: center;
  padding: 80px 40px 60px;
  background: white;
  border-bottom: 1px solid rgba(169, 132, 83, 0.2);
}

.page-header h1 {
  font-size: 54px;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 20px;
  color: var(--light-brown);
  max-width: 700px;
  margin: 0 auto;
}

/* ==========================================
   HERO SECTION (homepage)
   ========================================== */
.hero {
  text-align: center;
  padding: 10px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--light-brown);
  margin: 20px 0 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

/* ==========================================
   CONTENT AREA (for text-heavy pages)
   ========================================== */
.content-area {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: white;
}

.content-area h2 {
  font-size: 36px;
  margin: 40px 0 20px;
  color: var(--dark);
}

.content-area h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--mid-brown);
}

.content-area p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid-brown);
}

.content-area ul, .content-area ol {
  margin: 20px 0 20px 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.content-area li {
  margin-bottom: 10px;
  color: var(--mid-brown);
  line-height: 1.7;
}

/* ==========================================
   FAQ STYLES
   ========================================== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(169, 132, 83, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  font-weight: bold;
  background: var(--cream);
  transition: background 0.3s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 24px;
  font-weight: normal;
}

.faq-question.active::after {
  content: '−';
}

.faq-question:hover {
  background: var(--light-cream);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.faq-answer.active {
  padding: 25px 30px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--mid-brown);
  line-height: 1.8;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(169, 132, 83, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--mid-brown);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ==========================================
   PRICING TABLE
   ========================================== */
.pricing-table {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(169, 132, 83, 0.2);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  background: var(--gold);
  color: white;
  padding: 20px;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mid-brown);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .price {
  font-weight: bold;
  color: var(--gold);
  font-size: 18px;
}

/* ==========================================
   FEATURE BOXES
   ========================================== */
.feature-box {
  background: white;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid rgba(169, 132, 83, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(169, 132, 83, 0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-box h3 {
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--light-brown);
  line-height: 1.7;
}

/* ==========================================
   GRID LAYOUTS
   ========================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin-bottom: 30px;
}

.testimonial-box blockquote {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--mid-brown);
}

.testimonial-author {
  font-size: 15px;
  color: var(--light-brown);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

/* ==========================================
   IMAGE GALLERY
   ========================================== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(169, 132, 83, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 15px;
  background: white;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--mid-brown);
  font-size: 14px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
  text-align: center;
}

.max-width-900 {
  max-width: 900px;
  margin: 0 auto;
}

.max-width-700 {
  max-width: 700px;
  margin: 0 auto;
}

.max-width-600 {
  max-width: 600px;
  margin: 0 auto;
}

.max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

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

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.padding-40 {
  padding: 40px;
}

.padding-50 {
  padding: 50px;
}

.border-radius-8 {
  border-radius: 8px;
}

/* Homepage specific styles */
.step-number {
  font-size: 72px;
  color: rgba(169, 132, 83, 0.2);
  font-weight: bold;
  margin-bottom: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.step-text {
  color: var(--light-brown);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.pricing-box {
  border: 2px solid rgba(169, 132, 83, 0.3);
  padding: 50px;
  border-radius: 8px;
}

.pricing-feature-list {
  text-align: left;
  max-width: 400px;
  margin: 30px auto;
  list-style: none;
}

.pricing-feature-item {
  font-size: 16px;
  color: var(--mid-brown);
  margin-bottom: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-left: 30px;
  position: relative;
}

.pricing-feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

.price-large {
  font-size: 48px;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-subtitle {
  font-size: 18px;
  color: var(--light-brown);
  margin-bottom: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.price-note {
  font-size: 14px;
  color: var(--light-brown);
  margin-top: 25px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: italic;
}

.cta-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-attribution {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0.9;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  nav {
    padding: 25px 40px;
  }
  
  .nav-links {
    gap: 25px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .nav-cta {
    max-width: 220px;
    padding: 10px 22px;
    font-size: 14px;
  }
  
  .logo {
    font-size: 24px;
  }
}

/* Medium tablets */
@media (max-width: 900px) {
  nav {
    padding: 20px 30px;
  }
  
  .nav-links {
    gap: 18px;
  }
  
  .nav-links a {
    font-size: 13px;
  }
  
  .nav-cta {
    max-width: 210px;
    padding: 9px 18px;
    font-size: 13px;
  }
  
  .logo {
    font-size: 22px;
  }
}

/* Small tablets and phones */
@media (max-width: 768px) {
  /* Navigation */
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .nav-cta {
    max-width: 240px;
    padding: 12px 28px;
    font-size: 14px;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2, .section-title {
    font-size: 32px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
  
  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  /* Sections */
  .section {
    padding: 60px 20px;
  }
  
  .container,
  .content-area {
    padding: 40px 20px;
  }
  
  /* Forms */
  .contact-form {
    padding: 30px 20px;
  }
  
  /* Footer */
  footer {
    padding: 40px 30px 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  /* Mobile: stack How-It-Works step number above text (override inline grid styles) */
  div[style*="grid-template-columns: 100px 1fr"][style*="margin-bottom: 60px"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  div[style*="grid-template-columns: 100px 1fr"][style*="margin-bottom: 60px"] > div:first-child {
    text-align: center !important;
  }
  div[style*="grid-template-columns: 100px 1fr"][style*="margin-bottom: 60px"] > div:first-child > div {
    margin: 0 auto 12px auto !important;
  }


  /* Mobile: reduce step number size so content has room */
  .step-number {
    width: 56px !important;
    height: 56px !important;
    font-size: 26px !important;
    line-height: 56px !important;
  }


  /* Mobile: stack How-It-Works step number above text (covers all step blocks) */
  div[style*="grid-template-columns: 100px 1fr"][style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  div[style*="grid-template-columns: 100px 1fr"][style*="display: grid"] > div:first-child {
    text-align: center !important;
  }
  /* Mobile: shrink the numbered circle (overrides inline size on the circle div) */
  div[style*="border-radius: 50%"][style*="background: var(--gold)"][style*="font-size"] {
    width: 56px !important;
    height: 56px !important;
    font-size: 26px !important;
    line-height: 56px !important;
    margin: 0 auto 12px auto !important;
  }


  /* Mobile nav: stack logo + links + CTA without large gaps */
  nav {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  .logo {
    flex: 0 0 auto;
    margin-bottom: 0;
    text-align: center;
  }
  .nav-links {
    justify-content: center;
    row-gap: 10px;
  }

}





/* ==================================
   CLEANING BANNER
   ================================== */
.cleaning-banner {
  text-align: center;
  margin-bottom: 10px;
}

.cleaning-banner a {
  display: inline-block;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cleaning-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ==================================
   CLEANING BANNER
   ================================== */
.cleaning-banner {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 20px;
}

.cleaning-banner a {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
  color: #2c1810;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(139, 115, 38, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cleaning-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ==================================
   CLEANING BANNER (with animation)
   ================================== */
.cleaning-banner {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 15px;
}

.cleaning-banner a {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: #2c1810;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(139, 115, 38, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: shimmer 3s ease-in-out infinite;
}

.cleaning-banner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  animation-play-state: paused;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Center Cropping Options image (how-it-works.html) */
img[alt="Cropping comparison"]{
  display:block;
  margin-left:auto !important;
  margin-right:auto !important;
}