/*--------------------
  CSS RESET & BASE
---------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e2e7;
  background: #232126; /* Matte dark base for industrial modern */
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #E2BECB;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fff8fa;
  outline: none;
}
ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
small, .small-print {
  font-size: 0.85rem;
  color: #888;
}

/*---------------------
  FONTS & TYPOGRAPHY
----------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  color: #fff8fa;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; letter-spacing: 0.2px;}
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, .subtitle {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: #e5e2e7;
  font-family: 'Roboto', Arial, sans-serif;
}
.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #E2BECB;
  letter-spacing: 1px;
}
strong, b {
  font-weight: 700;
  color: #fff8fa;
}

/*--------------------------
  FLEXBOX LAYOUT CONTAINERS
--------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #28262c;
  border: 1px solid #393540;
  border-radius: 16px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 2px 14px 0 rgba(30,23,34,0.09);
  min-width: 200px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-item:hover,
.feature-item:focus {
  border-color: #E2BECB;
  box-shadow: 0 4px 28px 0 rgba(130,48,95,0.18);
  z-index: 2;
}

/*-----------------------------
  HEADER, LOGO & NAVIGATION
------------------------------*/
header {
  background: #1d1a20;
  border-bottom: 1.5px solid #393540;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff8fa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 10px 0 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E2BECB;
  border-bottom: 2px solid #E2BECB;
}
.main-nav .cta-primary {
  margin-left: 16px;
}

/*-------------------------------
  CTAs / BUTTONS / LINKS
--------------------------------*/
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 32px;
  padding: 12px 36px;
  box-shadow: 0 2px 10px 0 rgba(60,50,58,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.16s;
}
.cta-primary {
  background: #82305F;
  color: #fff8fa;
  border: 1.5px solid #E2BECB;
  box-shadow: 0 2px 12px 0 rgba(130,48,95,0.12);
  letter-spacing: 1px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #a24e7c;
  color: #FFF8FA;
  transform: translateY(-2px) scale(1.02);
  border-color: #fff8fa;
}
.cta-secondary {
  background: #232126;
  color: #E2BECB;
  border: 1.5px solid #E2BECB;
  margin-top: 8px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #3a3742;
  color: #fff8fa;
  border-color: #82305F;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/*--------------------------
  HERO & SPECIAL SECTIONS
---------------------------*/
.hero-section {
  min-height: 65vh;
  background: #232126 url('../assets/hero-bg.jpg') center/cover no-repeat;
  padding: 54px 0 44px 0;
  border-bottom: 2px solid #393540;
  display: flex;
  align-items: center;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  gap: 18px;
}

.features-section, .services-overview, .testimonials-preview, .contact-cta, .about-section, .team-section, .why-choose-section, .services-section, .service-highlights, .pricing-section, .promotions-section, .cta-section, .gallery-section, .cookies-policy-section, .privacy-policy-section, .gdpr-section, .terms-section, .thankyou-section, .contact-section, .location-section {
  background: #232126;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(26,23,36,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}

/*-----------------------------
  SERVICES / PRICE TABLE STYLING
-------------------------------*/
.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  font-size: 1.08rem;
  color: #e5e2e7;
  padding-left: 10px;
}
.service-price-table {
  width: 100%;
  background: #28262c;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-price-table th, .service-price-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1.09rem;
  color: #e5e2e7;
}
.service-price-table thead th {
  background: #28262c;
  color: #E2BECB;
  border-bottom: 1.5px solid #393540;
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
}
.service-price-table tbody tr {
  border-bottom: 1px solid #393540;
  transition: background 0.18s;
}
.service-price-table tbody tr:hover {
  background: #35323a;
}

.pricing-notes {
  color: #d1c9cf;
  font-size: 1rem;
  margin-top: 14px;
}

/*-----------------
  TESTIMONIALS
------------------*/
.testimonial-card {
  background: #fff8fa;
  color: #232126;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(30,23,34,0.11);
  border: 1.5px solid #E2BECB;
  padding: 28px 22px 22px 22px;
  margin-bottom: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.21s;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #232126;
  margin-bottom: 6px;
}
.testimonial-footer {
  font-size: 1.01rem;
  font-weight: 700;
  color: #82305F;
  margin-top: 2px;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 36px 0 rgba(130,48,95,0.12);
  z-index: 2;
}

/*-----------------------------
  CONTACT INFORMATION DISPLAY
------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 20px 0;
  font-size: 1.05rem;
  color: #e5e2e7;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 1.04rem;
  font-weight: 500;
  color: #E2BECB;
}
.contact-row img {
  height: 20px;
  width: 20px;
  filter: grayscale(1) brightness(1.5);
}

/*-----------------------------
  FOOTER
------------------------------*/
footer {
  background: #19171d;
  border-top: 1.5px solid #393540;
  margin-top: 50px;
  padding-top: 40px;
  padding-bottom: 24px;
}
.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.logo-footer img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #E2BECB;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff8fa;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social img {
  height: 28px;
  width: 28px;
  border-radius: 7px;
  background: #232126;
  padding: 4px;
  box-shadow: 0 1px 4px 0 rgba(130,48,95,0.09);
  transition: background 0.16s;
}
.footer-social img:hover,
.footer-social img:focus {
  background: #E2BECB;
}
.small-print {
  width: 100%;
  color: #847788;
  font-size: 0.92rem;
  text-align: right;
  margin-top: 8px;
}

/*-----------------------------
   GALLERY SECTION
------------------------------*/
.gallery-section .text-section {
  margin-top: 10px;
}

/*-----------------------------
   TEXT STYLING FOR DOC PAGES
------------------------------*/
.text-section {
  margin: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section h2, .text-section h3 {
  color: #E2BECB;
}
.text-section li {
  font-size: 1.05rem;
  color: #e5e2e7;
}

/*----------------------
  UTILITIES & SPACING
----------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-24 { gap: 24px !important; }

/*-----------------------
  MOBILE MENU STYLES
------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #82305F;
  color: #fff8fa;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #E2BECB;
  transition: background 0.18s, color 0.18s, border 0.16s;
  z-index: 50;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #a24e7c;
  color: #FFF8FA;
  border-color: #fff8fa;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,33,38, 0.99);
  box-shadow: 2px 0 36px 0 rgba(82,60,80,0.20);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.4,1);
  visibility: hidden;
  pointer-events: none;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #E2BECB;
  color: #232126;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: 1.5px solid #82305F;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #82305F;
  color: #fff8fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 80px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff8fa;
  font-size: 1.35rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E2BECB;
  border-bottom: 1.5px solid #E2BECB;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .header-container {
    gap: 12px;
  }
  .main-nav {
    gap: 10px;
    font-size: 0.97rem;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/*-------------------
  RESPONSIVE LAYOUTS
--------------------*/
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-container {
    flex-direction: row;
    min-height: 64px;
    padding-bottom: 8px;
  }
  .logo img, .logo-footer img {
    height: 36px;
  }
  .footer-container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .hero-section {
    padding: 28px 0 20px 0;
    min-height: 290px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .features-section .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .services-section, .about-section, .team-section, .thankyou-section, .gallery-section {
    padding: 30px 6px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    padding: 18px 10px 12px 10px;
    font-size: 1rem;
  }
  .pricing-section, .promotions-section, .cta-section, .location-section, .contact-section {
    padding: 26px 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.16rem; }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .footer-social img {
    height: 20px;
    width: 20px;
    padding: 2px;
  }
  .service-price-table th, .service-price-table td {
    padding: 8px 6px;
  }
}

/*------------------------------
  COOKIE CONSENT BANNER & MODAL
-------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: #232126;
  border-top: 2px solid #E2BECB;
  color: #e5e2e7;
  padding: 20px 10px 20px 16px;
  box-shadow: 0 -4px 24px 0 rgba(35,33,38,0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  animation: cookieSlideUp 0.33s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 220px;
  font-size: 1rem;
  color: #e5e2e7;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border-radius: 22px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #E2BECB;
  background: #28262c;
  color: #E2BECB;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #82305F;
  color: #fff8fa;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #a24e7c;
  color: #FFF8FA;
  border-color: #fff8fa;
}
.cookie-btn.reject {
  background: #e2becb;
  color: #232126;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b694a5;
  color: #fff8fa;
}
.cookie-btn.settings {
  background: none;
  color: #E2BECB;
  border: 1.5px solid #E2BECB;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #393540;
  color: #fff8fa;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,33,38, 0.79);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232126;
  border-radius: 18px;
  padding: 36px 24px 22px 24px;
  box-shadow: 0 10px 44px 0 rgba(82,60,80,0.21);
  max-width: 90vw;
  width: 420px;
  color: #e5e2e7;
  position: relative;
}
.cookie-modal h2 {
  color: #E2BECB;
  font-size: 1.18rem;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-size: 1.06rem;
  color: #E2BECB;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #82305F;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #E2BECB;
  color: #232126;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #82305F;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #82305F;
  color: #fff8fa;
}

/*----------------------
  SCROLLBAR CUSTOMIZATION
-----------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #232126;
}
::-webkit-scrollbar-thumb {
  background: #393540;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #82305F;
}

/*--------------------
 INDUSTRIAL DETAILS
---------------------*/
[class^="icon-"] {
  filter: grayscale(1) brightness(1.25) contrast(1.02);
}

/*---------------------
   ANIMATIONS & EFFECTS
----------------------*/
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.16s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 42px 0 rgba(82,60,80,0.17);
  border-color: #e2becb;
  z-index: 3;
}

/*-------------------------
   SPECIAL INDUSTRIAL ACCENTS
----------------------------*/
/* Metallic Stripe Decoration */
.section::before {
  content: "";
  display: block;
  height: 2px;
  width: 64px;
  background: linear-gradient(90deg, #E2BECB 0%, #d8b3c7 100%);
  margin-bottom: 19px;
  border-radius: 2px;
  opacity: 0.42;
}

/* Remove stripe on hero and testimonials preview */
.hero-section::before, .testimonials-preview::before {
  display: none !important;
}

/*-----------------------------
   PRINT/LINK HIGHLIGHT (FOCUS)
------------------------------*/
a:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #E2BECB;
  outline-offset: 2px;
}

/*---------------------
   ADJUSTMENTS FOR FINE DETAILS
----------------------*/
hr {
  border: none;
  border-top: 1.5px solid #393540;
  margin-top: 32px;
  margin-bottom: 32px;
}

/*---------------------
    END CSS
----------------------*/
