/* Updated all classes with idk- prefix for uniqueness and refreshed color scheme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

.idk-brand-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #e74c3c;
  text-decoration: none;
  letter-spacing: -1px;
}

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

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

nav a:hover {
  color: #e74c3c;
}

.idk-mobile-nav {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #2c3e50;
}

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

.idk-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1517686469429-8bdb88b9f907?w=1200&h=600&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

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

.idk-hero-banner h1 {
  font-size: 3.8rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  line-height: 1.15;
}

.idk-hero-banner p {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  opacity: 0.96;
  font-weight: 300;
  line-height: 1.5;
}

.idk-primary-btn {
  display: inline-block;
  background: white;
  color: #e74c3c;
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.idk-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  background: #f8f9fa;
}

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

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

.idk-stat-box h3 {
  font-size: 3.2rem;
  color: #e74c3c;
  margin-bottom: 0.6rem;
  font-weight: 800;
}

.idk-stat-box p {
  color: #7f8c8d;
  font-size: 1.15rem;
  font-weight: 500;
}

/* Services Section */
.idk-products-section {
  padding: 5.5rem 2rem;
  background: #f8f9fa;
}

.idk-products-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: #2c3e50;
  font-weight: 800;
}

.idk-section-intro {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 3.5rem;
  font-size: 1.2rem;
}

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

.idk-product-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #e74c3c;
}

.idk-product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.18);
}

.idk-product-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.idk-product-item h3 {
  color: #e74c3c;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.idk-product-item p {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.05rem;
}

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

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

.idk-story-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
  color: #2c3e50;
  font-weight: 800;
}

.idk-story-text p {
  color: #7f8c8d;
  margin-bottom: 1.2rem;
  line-height: 1.85;
  font-size: 1.08rem;
}

.idk-company-legal {
  background: #f8f9fa;
  padding: 1.8rem;
  border-radius: 10px;
  margin: 2rem 0;
  border-left: 5px solid #e74c3c;
}

.idk-company-legal p {
  margin: 0.6rem 0;
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
}

.idk-story-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.idk-story-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.idk-story-visual:hover img {
  transform: scale(1.05);
}

/* Projects Section */
.idk-showcase-section {
  padding: 5.5rem 2rem;
  background: #f8f9fa;
}

.idk-showcase-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: #2c3e50;
  font-weight: 800;
}

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

.idk-showcase-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.idk-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

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

.idk-showcase-info {
  padding: 2rem;
}

.idk-showcase-info h3 {
  color: #e74c3c;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.idk-showcase-info p {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.idk-reviews-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  color: #2c3e50;
  font-weight: 800;
}

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

.idk-review-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid #e74c3c;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.idk-review-quote {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.85;
  font-size: 1.08rem;
}

.idk-review-author {
  font-weight: bold;
  color: #e74c3c;
  font-size: 1.1rem;
}

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

.idk-cta-area h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.idk-cta-area p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.96;
}

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

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

.idk-footer-col h3 {
  color: #e74c3c;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.idk-footer-col ul li {
  margin-bottom: 0.7rem;
}

.idk-footer-col a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.05rem;
}

.idk-footer-col a:hover {
  color: #e74c3c;
}

.idk-footer-col p {
  color: #bdc3c7;
  line-height: 1.8;
  font-size: 1.05rem;
}

.idk-footer-legal {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #34495e;
}

.idk-footer-legal p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}

.idk-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid #34495e;
  text-align: center;
  color: #95a5a6;
}

/* Contact Page */
.idk-contact-banner {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 90px 2rem 70px;
  text-align: center;
}

.idk-contact-banner h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

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

.idk-contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.idk-form-field {
  margin-bottom: 1.8rem;
}

.idk-form-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.05rem;
}

.idk-form-field input,
.idk-form-field textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-size: 1.05rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.idk-form-field input:focus,
.idk-form-field textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

.idk-form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.idk-submit-btn {
  background: #e74c3c;
  color: white;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.idk-submit-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.35);
}

.idk-contact-details {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
}

.idk-contact-details h2 {
  color: #e74c3c;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.idk-info-block {
  margin-bottom: 2.5rem;
}

.idk-info-block h3 {
  color: #2c3e50;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.idk-info-block p {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.08rem;
}

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

.legal-page h1 {
  color: #e74c3c;
  margin-bottom: 2.5rem;
  font-size: 2.8rem;
  font-weight: 800;
}

.legal-page h2 {
  color: #2c3e50;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
}

.legal-page h3 {
  color: #e74c3c;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.legal-page p {
  color: #7f8c8d;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1.08rem;
}

.legal-page ul {
  margin-left: 2.5rem;
  margin-bottom: 1.2rem;
}

.legal-page ul li {
  color: #7f8c8d;
  line-height: 1.85;
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

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

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

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

.idk-cookie-actions {
  display: flex;
  gap: 1.2rem;
}

.idk-cookie-accept,
.idk-cookie-decline {
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.05rem;
}

.idk-cookie-accept {
  background: #e74c3c;
  color: white;
}

.idk-cookie-accept:hover {
  background: #c0392b;
}

.idk-cookie-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.idk-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

  nav ul {
    display: none;
  }

  .idk-hero-banner h1 {
    font-size: 2.8rem;
  }

  .idk-hero-banner p {
    font-size: 1.15rem;
  }

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

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

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