/* ============================================
   LAYOUT & GRID
   ============================================ */

.ik-section {
  padding: 6rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.ik-section-dark {
  background-color: var(--color-bg-secondary);
}

.ik-section-darker {
  background-color: var(--color-bg-quaternary);
}

.ik-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ik-grid {
  display: grid;
  gap: 2rem;
}

.ik-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.ik-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ik-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .ik-grid-4,
  .ik-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ik-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ik-grid-4,
  .ik-grid-3,
  .ik-grid-2 {
    grid-template-columns: 1fr;
  }

  .ik-section {
    padding: 3rem 1rem;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.ik-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.ik-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ik-heading-lg {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text);
}

.ik-heading-sm {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ik-subheading {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.ik-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  box-sizing: border-box;
  margin: 0.5rem;
}

.ik-btn-red {
  background-color: #D32F2F;
  color: white;
  border-color: #D32F2F;
}

.ik-btn-red:hover {
  background-color: #B71C1C;
  border-color: #B71C1C;
}

.ik-btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.ik-btn-outline:hover {
  background-color: white;
  color: #0a0a0a;
  border-color: white;
}

.ik-btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}

.ik-btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
}

/* ============================================
   CARDS
   ============================================ */

.ik-card {
  background-color: var(--color-bg-card);
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.ik-card:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-border);
  transform: translateY(-4px);
}

.ik-card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--color-red);
}

.ik-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.ik-card-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.ik-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ik-hero-full {
  height: 100vh;
  margin-top: 0;
}

.ik-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  display: block;
}

.ik-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.ik-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ik-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.ik-hero-subtitle {
  font-size: 1.125rem;
  color: #d4d4d4;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ik-hero {
    height: 300px;
  }

  .ik-hero-full {
    height: 70vh;
  }

  .ik-hero-title {
    font-size: 2rem;
  }

  .ik-hero-subtitle {
    font-size: 1rem;
  }
}

/* ============================================
   IMAGES & ICONS
   ============================================ */

.ik-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.ik-image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ik-image-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ik-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
}

.ik-icon-lg {
  width: 64px;
  height: 64px;
}

/* ============================================
   STAR RATING
   ============================================ */

.ik-rating {
  display: flex;
  gap: 0.25rem;
  font-size: 1.25rem;
}

.ik-star {
  color: var(--color-red);
}

.ik-star.filled {
  color: var(--color-red);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.ik-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
  padding: 1rem 2rem;
}

.ik-header.scrolled {
  background-color: #000000 !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(220, 38, 38, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
}

.ik-header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ik-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.5rem;
}

.ik-logo img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.ik-nav-wrapper {
  flex: 1;
}

.ik-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
}

.ik-nav .menu-item a{
  color: white;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ik-nav-wrapper {
    display: none;
  }

  .ik-nav {
    display: none;
  }

  .ik-header{
    padding: 1rem;
  }
}

.ik-nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.ik-nav-link {
  position: relative;
}

.ik-nav-link:hover {
  color: var(--color-red);
  font-weight: 700;
}

.ik-nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-red);
}

.ik-nav-link.active,
.ik-nav li.current-menu-item > a,
.ik-nav li.current-menu-item > a.ik-nav-link,
.current-menu-item a.ik-nav-link {
  color: var(--color-red) !important;
  font-weight: 700 !important;
}

.ik-mobile-menu-btn {
  background: var(--color-red);
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1000;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  display: none;
  border-radius: 4px;
}

.ik-mobile-menu-btn:hover {
  background: var(--color-red-dark);
  transform: scale(1.05);
}

.ik-mobile-menu-btn #menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ik-mobile-menu-btn #menu-icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke: #000000 !important;
  stroke-width: 2 !important;
  display: block !important;
  fill: none !important;
}

@media (max-width: 768px) {
  .ik-mobile-menu-btn {
    display: flex;
  }
}

.ik-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 2rem;
  list-style: none;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: 998;
}

.ik-mobile-menu.open {
  display: block;
}

.ik-mobile-menu-item {
  margin: 1rem 0;
}

.ik-mobile-menu-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
}

.ik-mobile-menu-link:hover {
  color: var(--color-red);
}

.ik-mobile-menu-link.active,
.ik-mobile-menu-item.current-menu-item > a,
.ik-mobile-menu-item.current-menu-item > a.ik-mobile-menu-link,
.current-menu-item a.ik-mobile-menu-link {
  color: var(--color-red) !important;
  font-weight: 700 !important;
}

/* ============================================
   FOOTER
   ============================================ */

.ik-footer {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 4rem 2rem 2rem;
}

.ik-footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .ik-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ik-footer-content {
    grid-template-columns: 1fr;
  }
}

.ik-footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.ik-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ik-footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ik-footer-links a:hover {
  color: var(--color-red);
}

.ik-footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ik-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  color: var(--color-red);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.ik-footer-social-link:hover {
  background-color: var(--color-red);
  color: var(--color-text);
}

.ik-footer-location {
  margin-bottom: 1rem;
}

.ik-footer-location-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.ik-footer-location-info {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.ik-footer-copyright {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ik-footer-logo {
  width: 100px;
  margin-bottom: 1rem;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.ik-whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
}

.ik-whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   CAROUSEL
   ============================================ */

.ik-carousel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ik-carousel-slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}

.ik-carousel-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ik-carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.ik-carousel-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-text);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.ik-carousel-button:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
}

.ik-carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.ik-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ik-carousel-dot.active {
  background-color: var(--color-red);
  width: 24px;
  border-radius: 6px;
}

/* ============================================
   ACCORDION
   ============================================ */

.ik-accordion {
  border-bottom: 1px solid var(--color-border);
}

.ik-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.ik-accordion-header {
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ik-accordion-header:hover {
  background-color: var(--color-bg-light);
}

.ik-accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--color-red);
}

.ik-accordion-item.open .ik-accordion-icon {
  transform: rotate(180deg);
}

.ik-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
}

.ik-accordion-item.open .ik-accordion-content {
  max-height: 500px;
  padding: 1.5rem;
}

.ik-accordion-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.ik-gallery {
  display: grid;
  gap: 1.5rem;
}

.ik-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background-color: var(--color-bg-card);
}

.ik-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ik-gallery-item:hover .ik-gallery-image {
  transform: scale(1.05);
}

.ik-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ik-gallery-item:hover .ik-gallery-overlay {
  opacity: 1;
}

.ik-gallery-title {
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   FILTER
   ============================================ */

.ik-filter-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.ik-filter-group {
  background-color: var(--color-bg-card);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.ik-filter-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 1rem;
}

.ik-filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ik-filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ik-filter-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--color-red);
}

.ik-filter-label {
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.9rem;
  user-select: none;
}

.ik-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.ik-color-swatch.active {
  border-color: var(--color-red);
  transform: scale(1.1);
}

/* ============================================
   PAGINATION
   ============================================ */

.ik-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.ik-pagination-prev,
.ik-pagination-next {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-red);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.ik-pagination-prev:hover,
.ik-pagination-next:hover {
  background-color: var(--color-red-dark);
}

.ik-pagination-info {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   FORMS
   ============================================ */

.ik-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ik-form-group {
  display: flex;
  flex-direction: column;
}

.ik-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ik-form-input,
.ik-form-textarea {
  padding: 0.75rem 1rem;
  background-color: #d4d4d4;
  border: none;
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: #000;
  transition: all 0.3s ease;
}

.ik-form-input::placeholder,
.ik-form-textarea::placeholder {
  color: #a3a3a3;
}

.ik-form-input:focus,
.ik-form-textarea:focus {
  outline: none;
  ring: 2px solid var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red);
}

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

/* ============================================
   UTILITIES
   ============================================ */

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

.ik-text-left {
  text-align: left;
}

.ik-text-right {
  text-align: right;
}

.ik-text-red {
  color: var(--color-red);
}

.ik-text-white {
  color: var(--color-text);
}

.ik-text-secondary {
  color: var(--color-text-secondary);
}

.ik-text-sm {
  font-size: 0.875rem;
}

.ik-text-lg {
  font-size: 1.125rem;
}

.ik-text-uppercase {
  text-transform: uppercase;
}

.ik-text-bold {
  font-weight: 700;
}

.ik-gap-1 { gap: 0.5rem; }
.ik-gap-2 { gap: 1rem; }
.ik-gap-4 { gap: 1.5rem; }
.ik-gap-6 { gap: 2rem; }

.ik-items-center {
  align-items: center;
}

.ik-justify-center {
  justify-content: center;
}

.ik-justify-between {
  justify-content: space-between;
}

.ik-w-full {
  width: 100%;
}

.ik-h-full {
  height: 100%;
}

.ik-aspect-square {
  aspect-ratio: 1;
}

.ik-aspect-video {
  aspect-ratio: 16/9;
}

.ik-aspect-portrait {
  aspect-ratio: 3/4;
}

.ik-cursor-pointer {
  cursor: pointer;
}

.ik-select-none {
  user-select: none;
}

.ik-no-scroll {
  overflow: hidden;
}

/* ============================================
   LIGHTBOX OVERRIDES
   ============================================ */

.glightbox {
  background-color: rgba(0, 0, 0, 0.95);
}

.gslide-image img,
.gslide-video video {
  max-height: 90vh;
}

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

@media (max-width: 768px) {
  .ik-heading {
    font-size: 1.875rem;
  }

  .ik-heading-lg {
    font-size: 2rem;
  }

  .ik-section {
    padding: 3rem 1rem;
  }

  .ik-filter-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .ik-filter-sidebar .ik-filter-group {
    flex: 1;
    min-width: 150px;
  }
}

/* ============================================
   STEP NUMBER STYLING
   ============================================ */

.step-number {
  -webkit-text-stroke: 1px rgba(220, 38, 38, 1);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   EXPERTISE SLIDER
   ============================================ */

#expertise-slider-container {
  overflow: hidden;
}

#expertise-slides {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS (ScrollReveal.js)
   ============================================ */

/* ScrollReveal.js will handle animations automatically */
[data-scroll-reveal],
[data-fade-in] {
  will-change: opacity, transform;
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */

#testimonial-content {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

#testimonial-content p.text-gray-300 {
  min-height: 6rem;
  transition: all 0.3s ease;
}

#testimonial-content h4 {
  transition: all 0.3s ease;
}

#testimonial-content .flex.text-yellow-500 {
  transition: all 0.3s ease;
}

#testimonial-image {
  transition: opacity 0.3s ease;
}

#testimonial-prev,
#testimonial-next {
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

#testimonial-prev:hover,
#testimonial-next:hover {
  transform: scale(1.1);
}

#testimonial-prev:hover svg,
#testimonial-next:hover svg {
  stroke: #dc2626;
}

#testimonial-prev svg,
#testimonial-next svg {
  transition: stroke 0.3s ease;
}

/* Set fixed height for testimonial section to prevent layout shift */
section[data-testimonials] {
  min-height: 600px;
}

section[data-testimonials] > div {
  min-height: 600px;
}
