/* Renamed all classes with cld- prefix for uniqueness */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cld-header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cld-brand-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6b35;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff6b35;
}

.cld-mobile-nav {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.cld-hero-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  padding: 120px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cld-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.cld-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cld-hero-banner h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.cld-hero-banner p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.cld-primary-btn {
  display: inline-block;
  background: white;
  color: #ff6b35;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cld-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}

/* Stats Section */
.cld-stats-area {
  background: #fff;
  padding: 4rem 2rem;
}

.cld-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.cld-stat-box h3 {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.cld-stat-box p {
  color: #666;
  font-size: 1.1rem;
}

/* Services Section */
.cld-products-section {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.cld-products-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.cld-section-intro {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cld-products-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cld-product-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cld-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.cld-product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cld-product-item h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cld-product-item p {
  color: #666;
  line-height: 1.8;
}

/* About Section */
.cld-story-section {
  padding: 5rem 2rem;
  background: white;
}

.cld-story-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cld-story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.cld-story-text p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.cld-company-legal {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #ff6b35;
}

.cld-company-legal p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #555;
}

.cld-story-visual {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cld-story-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Projects Section */
.cld-showcase-section {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.cld-showcase-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.cld-showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cld-showcase-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.cld-showcase-card:hover {
  transform: translateY(-5px);
}

.cld-showcase-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cld-showcase-info {
  padding: 1.5rem;
}

.cld-showcase-info h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.cld-showcase-info p {
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section */
.cld-reviews-section {
  padding: 5rem 2rem;
  background: white;
}

.cld-reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.cld-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cld-review-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
}

.cld-review-quote {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.cld-review-author {
  font-weight: bold;
  color: #ff6b35;
}

/* CTA Section */
.cld-cta-area {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.cld-cta-area h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cld-cta-area p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 2rem 1rem;
}

.cld-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.cld-footer-col h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.cld-footer-col ul {
  list-style: none;
}

.cld-footer-col ul li {
  margin-bottom: 0.5rem;
}

.cld-footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.cld-footer-col a:hover {
  color: #ff6b35;
}

.cld-footer-col p {
  color: #ccc;
  line-height: 1.8;
}

.cld-footer-legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

.cld-footer-legal p {
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

.cld-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  color: #999;
}

/* Contact Page */
.cld-contact-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  padding: 80px 2rem 60px;
  text-align: center;
}

.cld-contact-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cld-contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.cld-contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cld-form-field {
  margin-bottom: 1.5rem;
}

.cld-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.cld-form-field input,
.cld-form-field textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

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

.cld-submit-btn {
  background: #ff6b35;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.cld-submit-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cld-contact-details {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
}

.cld-contact-details h2 {
  color: #ff6b35;
  margin-bottom: 2rem;
}

.cld-info-block {
  margin-bottom: 2rem;
}

.cld-info-block h3 {
  color: #333;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cld-info-block p {
  color: #666;
  line-height: 1.8;
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.legal-page h1 {
  color: #ff6b35;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.legal-page h2 {
  color: #333;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.legal-page h3 {
  color: #ff6b35;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.legal-page p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-page ul li {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Cookie Banner */
#cld-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
}

#cld-cookie-notice.show {
  display: block;
}

.cld-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cld-cookie-actions {
  display: flex;
  gap: 1rem;
}

.cld-cookie-accept,
.cld-cookie-decline {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cld-cookie-accept {
  background: #ff6b35;
  color: white;
}

.cld-cookie-accept:hover {
  background: #e55a2b;
}

.cld-cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cld-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cld-mobile-nav {
    display: block;
  }

  nav ul {
    display: none;
  }

  .cld-hero-banner h1 {
    font-size: 2.5rem;
  }

  .cld-hero-banner p {
    font-size: 1.1rem;
  }

  .cld-story-wrapper,
  .cld-contact-layout {
    grid-template-columns: 1fr;
  }

  .cld-products-container,
  .cld-showcase-grid,
  .cld-reviews-container {
    grid-template-columns: 1fr;
  }

  .cld-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
