/* =================================================================
   BRISK INTELLECT - COMPREHENSIVE CSS STYLESHEET
   Warm & Friendly Design Style
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF8F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =================================================================
   TYPOGRAPHY - WARM & FRIENDLY
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4A5568;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* =================================================================
   CONTAINER & LAYOUT
   ================================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   HEADER - WARM & FRIENDLY
   ================================================================= */
header {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  box-shadow: 0 2px 15px rgba(255, 107, 53, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #FFF8F3;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFF8F3;
}

.main-nav a:hover::after {
  width: 100%;
}

/* =================================================================
   BUTTONS - WARM & FRIENDLY
   ================================================================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F4511E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4511E 0%, #E64A19 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}

.btn-secondary:hover {
  background: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

/* =================================================================
   MOBILE MENU - HAMBURGER
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FF8C42 0%, #FF6B35 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  padding: 80px 30px 30px;
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

/* =================================================================
   HERO SECTION - WARM & FRIENDLY
   ================================================================= */
.hero {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  padding: 80px 20px;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #2C3E50;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-size: 36px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
}

.trust-label {
  font-size: 14px;
  color: #4A5568;
  font-weight: 500;
}

/* =================================================================
   SERVICES GRID - FLEXBOX LAYOUT
   ================================================================= */
.services-overview,
.services-detailed {
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 350px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.service-icon img {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #FF6B35;
  margin: 12px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-link {
  color: #FF6B35;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #F4511E;
  transform: translateX(5px);
}

/* =================================================================
   PROCESS STEPS - FLEXBOX LAYOUT
   ================================================================= */
.process {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.process-step {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.process-step h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.5;
}

/* =================================================================
   TESTIMONIALS - READABLE DARK TEXT
   ================================================================= */
.testimonials {
  padding: 60px 20px;
  background: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #FFD4BA;
}

.testimonial-author strong {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #4A5568;
}

/* =================================================================
   CTA BANNER - WARM & FRIENDLY
   ================================================================= */
.cta-banner,
.cta-consultation,
.cta-project,
.cta-tech,
.cta-contact {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

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

.cta-banner h2,
.cta-consultation h2,
.cta-project h2,
.cta-tech h2,
.cta-contact h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-consultation p,
.cta-project p,
.cta-tech p,
.cta-contact p {
  color: #FFF8F3;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-banner .btn-secondary,
.cta-contact .btn-secondary {
  background: #FFFFFF;
  color: #FF6B35;
  border: 2px solid #FFFFFF;
}

.cta-banner .btn-secondary:hover,
.cta-contact .btn-secondary:hover {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* =================================================================
   FOOTER - WARM & FRIENDLY
   ================================================================= */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #E8E8E8;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 45px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: #BDC3C7;
  line-height: 1.6;
}

footer h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li a {
  color: #BDC3C7;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

footer ul li a:hover {
  color: #FF8C42;
  transform: translateX(5px);
}

footer p {
  font-size: 14px;
  color: #BDC3C7;
  line-height: 1.6;
}

footer p a {
  color: #FF8C42;
  text-decoration: underline;
}

footer p a:hover {
  color: #FFB88C;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #BDC3C7;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FF8C42;
}

.copyright {
  color: #95A5A6;
  font-size: 13px;
}

/* =================================================================
   PAGE HERO - BREADCRUMB
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  padding: 60px 20px;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #FF6B35;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #F4511E;
}

.breadcrumb span {
  color: #4A5568;
  font-size: 14px;
}

.page-hero h1 {
  color: #2C3E50;
  font-size: 42px;
  margin-bottom: 16px;
}

.page-description {
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto;
}

.last-update {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin-top: 16px;
}

/* =================================================================
   SERVICE DETAIL PAGES
   ================================================================= */
.service-detail {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.7;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4A5568;
  font-size: 15px;
}

.service-benefits li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.service-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 2px solid #FFE5D4;
  margin-top: 20px;
}

.service-pricing .price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
}

/* =================================================================
   PROCESS PHASES
   ================================================================= */
.process-detailed {
  padding: 60px 20px;
}

.process-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.phase {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF8C42 0%, #FF6B35 100%);
  border-radius: 20px 20px 0 0;
}

.phase h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.phase p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.phase-duration {
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
  padding: 8px 16px;
  background: #FFE5D4;
  border-radius: 20px;
  text-align: center;
}

/* =================================================================
   INDUSTRIES GRID
   ================================================================= */
.industries {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.industries h2 {
  text-align: center;
  margin-bottom: 48px;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.industry-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.industry-card h3 {
  color: #2C3E50;
  font-size: 20px;
}

.industry-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

/* =================================================================
   TECHNOLOGIES PAGES
   ================================================================= */
.technology-categories {
  padding: 60px 20px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tech-category {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.tech-category h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #FFE5D4;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-list li {
  color: #4A5568;
  font-size: 15px;
  padding: 8px 12px;
  background: #FFF8F3;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tech-list li:hover {
  background: #FFE5D4;
  transform: translateX(5px);
}

.tech-details {
  padding: 60px 20px;
}

.tech-cards,
.cloud-providers,
.ai-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.tech-card,
.provider-card,
.ai-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.tech-card:hover,
.provider-card:hover,
.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.tech-card h3,
.provider-card h3,
.ai-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.tech-card p,
.provider-card p,
.ai-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.tech-expertise {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.expertise-label {
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
}

.expertise-bar {
  width: 100%;
  height: 8px;
  background: #FFE5D4;
  border-radius: 10px;
  overflow: hidden;
}

.expertise-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF8C42 0%, #FF6B35 100%);
  border-radius: 10px;
  width: 95%;
  transition: width 0.5s ease;
}

.expertise-fill[data-level="95"] {
  width: 95%;
}

.expertise-fill[data-level="90"] {
  width: 90%;
}

/* =================================================================
   CERTIFICATIONS
   ================================================================= */
.certifications {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.certifications h2 {
  text-align: center;
  margin-bottom: 48px;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.cert-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 240px;
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.cert-item h4 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

.cert-item p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.5;
}

/* =================================================================
   CASE STUDIES
   ================================================================= */
.case-studies {
  padding: 60px 20px;
}

.case-study-featured {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 60px;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.case-study-featured h2 {
  color: #2C3E50;
  font-size: 32px;
  margin-bottom: 32px;
}

.case-study-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.case-challenge,
.case-solution,
.case-results {
  flex: 1 1 280px;
  background: #FFFFFF;
  border-radius: 15px;
  padding: 24px;
}

.case-challenge h3,
.case-solution h3,
.case-results h3 {
  color: #FF6B35;
  font-size: 20px;
  margin-bottom: 12px;
}

.case-results ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-results li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4A5568;
  font-size: 15px;
}

.case-results li::before {
  content: '▸';
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

.case-tech {
  padding: 16px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  font-size: 14px;
  color: #4A5568;
}

.case-tech strong {
  color: #2C3E50;
  margin-right: 8px;
}

/* =================================================================
   PROJECTS GRID
   ================================================================= */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.project-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.project-category {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  color: #FF6B35;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.project-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.project-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.project-tech span {
  padding: 6px 12px;
  background: #FFF8F3;
  color: #4A5568;
  font-size: 13px;
  border-radius: 8px;
  font-weight: 500;
}

.project-result {
  font-size: 16px;
  font-weight: 700;
  color: #FF6B35;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid #FFE5D4;
}

/* =================================================================
   CLIENT TESTIMONIALS PAGE
   ================================================================= */
.client-testimonials {
  padding: 60px 20px;
  background: #FFF8F3;
}

/* =================================================================
   PORTFOLIO STATS
   ================================================================= */
.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #4A5568;
  font-weight: 500;
}

/* =================================================================
   ABOUT PAGE - COMPANY SECTIONS
   ================================================================= */
.company-story {
  padding: 60px 20px;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

.core-values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.core-values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 260px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.value-card h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.value-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
}

.mission-vision {
  padding: 60px 20px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mv-card {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 20px;
  padding: 48px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mv-card h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 12px;
}

.mv-card p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.7;
}

.team {
  padding: 60px 20px;
  background: #FFFFFF;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > p {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 48px;
}

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.expertise-item {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.expertise-item h4 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.expertise-item p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.5;
}

.company-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.company-stats h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FF6B35;
  font-family: 'Montserrat', sans-serif;
}

.stat-box .stat-label {
  font-size: 14px;
  color: #4A5568;
  font-weight: 600;
}

.office-location {
  padding: 60px 20px;
}

.office-location h2 {
  text-align: center;
  margin-bottom: 16px;
}

.office-location > p {
  text-align: center;
  font-size: 16px;
  color: #4A5568;
  max-width: 600px;
  margin: 0 auto 32px;
}

.office-info {
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 20px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.office-info p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

.office-info strong {
  color: #2C3E50;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-methods {
  padding: 60px 20px;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.contact-icon img {
  width: 28px;
  height: 28px;
}

.contact-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-card p {
  color: #4A5568;
  font-size: 16px;
  line-height: 1.6;
}

.contact-card a {
  color: #FF6B35;
  font-weight: 600;
}

.contact-card a:hover {
  color: #F4511E;
  text-decoration: underline;
}

.contact-detail {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin-top: 8px;
}

/* =================================================================
   CONTACT FORM
   ================================================================= */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-group {
  flex: 1 1 calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #FFE5D4;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: #2C3E50;
  background: #FFF8F3;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF8C42;
  background: #FFFFFF;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4A5568;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label a {
  color: #FF6B35;
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: #F4511E;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

/* =================================================================
   CONSULTATION BOOKING
   ================================================================= */
.consultation-booking {
  padding: 60px 20px;
  text-align: center;
}

.consultation-booking h2 {
  margin-bottom: 16px;
}

.consultation-booking > p {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-benefits {
  max-width: 500px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultation-benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #4A5568;
  font-size: 16px;
  padding: 12px;
  background: #FFF8F3;
  border-radius: 12px;
}

.consultation-benefits li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.response-commitment {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.response-commitment h2 {
  text-align: center;
  margin-bottom: 48px;
}

.commitment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.commitment-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 260px;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.commitment-item h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.commitment-item p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.5;
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */
.legal-content {
  padding: 60px 20px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.legal-text h2 {
  color: #2C3E50;
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #FFE5D4;
}

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-text p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-text ul {
  margin: 16px 0;
  padding-left: 20px;
}

.legal-text ul li {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-text a {
  color: #FF6B35;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #F4511E;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: #2C3E50;
  font-size: 42px;
  margin-bottom: 16px;
}

.thank-you-message {
  font-size: 18px;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F3 0%, #FFE5D4 100%);
  border-radius: 30px;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.step-item .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.step-item h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 8px;
}

.step-item p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.5;
}

.step-time {
  font-size: 13px;
  font-weight: 600;
  color: #FF6B35;
  padding: 6px 14px;
  background: #FFE5D4;
  border-radius: 20px;
  margin-top: 8px;
}

.resources {
  padding: 60px 20px;
}

.resources h2 {
  text-align: center;
  margin-bottom: 48px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.resource-card h3 {
  color: #2C3E50;
  font-size: 22px;
  margin-bottom: 8px;
}

.resource-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.resource-link {
  color: #FF6B35;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.resource-link:hover {
  color: #F4511E;
  transform: translateX(5px);
}

.contact-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFE5D4 0%, #FFD4BA 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.urgent-contact {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.urgent-text {
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 8px;
}

.urgent-contact .contact-detail {
  font-size: 16px;
  color: #2C3E50;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 12px;
}

.urgent-contact .contact-detail strong {
  color: #FF6B35;
  margin-right: 8px;
}

.urgent-contact .contact-detail a {
  color: #FF6B35;
  font-weight: 600;
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: #E8E8E8;
}

.cookie-consent-text a {
  color: #FF8C42;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #FFB88C;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #F4511E 0%, #E64A19 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #FF8C42;
  border: 2px solid #FF8C42;
}

.cookie-btn-settings:hover {
  background: #FF8C42;
  color: #FFFFFF;
}

/* =================================================================
   COOKIE SETTINGS MODAL
   ================================================================= */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.cookie-settings-modal.active .cookie-settings-content {
  transform: translateY(0);
}

.cookie-settings-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: #FFE5D4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #FF6B35;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background: #FF6B35;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-settings-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  border-bottom: 2px solid #FFE5D4;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin: 0;
}

.cookie-category p {
  color: #4A5568;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #E0E0E0;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-settings-buttons button {
  flex: 1 1 140px;
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

/* Tablets and below */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-tagline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    gap: 32px;
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    max-width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .form-group {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-settings-content {
    padding: 32px 24px;
  }
  
  .legal-text {
    padding: 32px 24px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .trust-number {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .stat-box .stat-number {
    font-size: 36px;
  }
  
  .cookie-settings-content h2 {
    font-size: 24px;
    padding-right: 40px;
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.testimonial-card,
.project-card,
.value-card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =================================================================
   END OF STYLESHEET
   ================================================================= */