body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
    width: 100%; 
    overflow-x: hidden;
	background-color: #3a3a3a;	
}
header nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d1d1d1;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-container {
  margin-right: 20px;
  flex-shrink: 0;
}

header .logo {
  height: 50px;
  max-width: 100%;
}

header nav.sticky ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: space-around;
}

header nav.sticky ul li {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

header nav.sticky ul li a {
  color: #030303;
  text-decoration: none;
  padding: 5px 5px;
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  transition: all 0.3s ease;
}

header nav.sticky ul li a:hover {
  color: red;
  font-weight: bold;
}

header nav.sticky ul li a::after {
  content: '';
  display: block;
  height: 2px;
  background: red;
  width: 0;
  transition: width 0.3s;
}

header nav.sticky ul li a:hover::after {
  width: 100%;
}

header nav.sticky ul li.special a {
  border: 2px solid #FF0000;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
}

header nav.sticky ul li.special a:hover {
  background-color: #FF0000;
  color: #ffffff;
}

nav.sticky ul li a.active {
  position: relative;
}

nav.sticky ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: red;
}

@media only screen and (min-width: 769px) {
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #c7c7c7;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    letter-spacing: 0.6px;
    line-height: 26px;
    transition: background-color 0.3s ease;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-content svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 42px;
  background: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  header nav.sticky {
    flex-wrap: wrap;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  header .logo {
    height: 32px;
    max-width: 100px;
  }

  header nav.sticky ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #d1d1d1;
    width: 100%;
    padding: 10px;
  }

  header nav.sticky ul.active {
    display: flex;
  }

  header nav.sticky ul li {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  header nav.sticky ul li a {
    font-size: 0.9rem;
    padding: 8px 0;
    width: 100%;
  }

  header nav.sticky ul li.special a {
    text-align: center;
    width: 80%;
    display: block;
  }

  .dropdown-content {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 4px;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    line-height: 1.4;
  }

  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}

.background-section {
	background-image: url('photos/Aboutus.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	height: 650px;
	width: 100%;
}

.about-us-title {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(to right, #1e1e1e, #4b4b4b);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-us-title h1 {
	font-size: 46px;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 2px;
	margin: 0;
}

.office-showcase-unique,
.plant-showcase-unique {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 80px 40px;
    position: relative;
    margin: 0;
}

.office-showcase-unique {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.plant-showcase-unique {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.showcase-wrapper {
    max-width: 1750px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.plant-showcase-unique .showcase-wrapper {
    grid-template-columns: 0.8fr 1.2fr;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-header-left h2 {
    font-size: 3em;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.section-header-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, transparent);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.section-header-left p {
    font-size: 1.1em;
    color: #ccc;
    line-height: 1.7;
    margin: 20px 0 0 0;
    max-width: 650px;
}

.image-grid-unique {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 140px);
    gap: 12px;
    width: 100%;
}

.image-grid-unique > div {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.image-grid-unique > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.image-grid-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-grid-unique > div:hover img {
    transform: scale(1.1);
}

.img-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.img-tall {
    grid-column: 3 / 5;
    grid-row: 1 / 4;
}

.img-wide {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

.img-small-1 {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
}

.img-small-2 {
    grid-column: 4 / 5;
    grid-row: 4 / 5;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-top: 80px;
}

.attention-grabber-right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: -80px;
    padding-right: 80px;
}

.attention-grabber-right .grabber-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff0000, #ff0000);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.attention-grabber-right .grabber-text {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 12px 30px;
    border-radius: 50px 0 0 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
}


.attention-grabber-left {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: -80px;
    padding-left: 80px;
}

.attention-grabber-left .grabber-line {
    flex: 1;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff0000, transparent);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.attention-grabber-left .grabber-text {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #cc0000, #ff0000);
    padding: 12px 30px;
    border-radius: 0 50px 50px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
}


.info-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.info-box-grid {
    background: rgba(50, 50, 50, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid #555;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.info-box-grid::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    transition: transform 0.4s ease;
}

.info-box-grid:hover::before {
    transform: translateX(-50%) scaleX(1);
}
.info-box-grid:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
    background: rgba(60, 60, 60, 0.95);
}
.box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-box-grid:hover .box-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
}

.box-icon svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.info-box-grid h3 {
    font-size: 1.3em;
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.info-box-grid p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}
.content-left-plant {
    order: 1;
}

.content-right-plant {
    order: 2;
}


.office-showcase-unique .section-header-left {
    padding-left: 40px;
}

.plant-showcase-unique .section-header-left {
    padding-left: 80px;
}

.plant-showcase-unique .section-header-left h2::after {
    left: 0;
    right: auto;
}

@media (max-width: 1200px) {
    .showcase-wrapper,
    .plant-showcase-unique .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .attention-grabber-right,
    .attention-grabber-left {
        margin: 0;
        padding: 0;
    }
    
    .attention-grabber-right .grabber-text,
    .attention-grabber-left .grabber-text {
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .office-showcase-unique,
    .plant-showcase-unique {
        padding: 60px 20px;
    }
    
    .section-header-left h2 {
        font-size: 2.2em;
    }
    
    .section-header-left p {
        font-size: 1em;
    }
    
    .image-grid-unique {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 180px);
    }
    
    .img-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .img-tall {
        grid-column: 1 / 3;
        grid-row: 3 / 5;
    }
    
    .img-wide {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }
    
    .img-small-1 {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
    }
    
    .img-small-2 {
        grid-column: 2 / 3;
        grid-row: 6 / 7;
    }
    
    .info-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .attention-grabber-right .grabber-text,
    .attention-grabber-left .grabber-text {
        font-size: 1em;
        padding: 10px 20px;
    }
} 


.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.contact-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-button button {
    background-color: #ff4242;
    color: #fff;
    border-radius: 50px;
    padding: 20px 40px;  
    font-size: 24px;     
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.button-icon {
    width: 38px;
    height: 24px;
    margin-top: 8px;
}

.contact-button button:hover {
    background-color: #ff0000; 
    transform: translateY(-3px);
}
.contact-button button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 66, 66, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 66, 66, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 66, 66, 0); }
}

.spotlight-section.team-header {
  background: linear-gradient(135deg, #A30A0A 0%, #8B0000 100%);
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.spotlight-section.team-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.spotlight-section .spotlight-label.team-label {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
  margin: 0 auto 20px;
  width: fit-content;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.spotlight-section .spotlight-label.team-label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background: white;
  border-radius: 2px;
  animation: expandUnderline 1.5s ease forwards 0.5s;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

@keyframes expandUnderline {
  to { width: 60%; }
}

.spotlight-section .spotlight-subheading {
  color: #f0f0f0;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.8s;
  z-index: 1;
  position: relative;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.management-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
  position: relative;
}

.management-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.02) 10px, rgba(255,255,255,.02) 20px);
  pointer-events: none;
}
.spotlight-row-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.spotlight-label {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  flex: 0 0 auto;
  padding-right: 40px;
  padding-left: 40px;
  white-space: nowrap;
  position: relative;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.spotlight-label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.parallelogram-card {
  width: 220px;
  height: 300px;
  overflow: visible; 
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transform: skew(-10deg);
  transition: all 0.4s ease;
  filter: grayscale(100%) brightness(0.6);
  cursor: pointer;
  position: relative;
  margin-left: -30px;
  z-index: 1;
}

.parallelogram-card:first-child {
  margin-left: 0;
  overflow: visible; 
}

.parallelogram-card:hover {
  transform: skew(-10deg) scale(1.2);
  filter: none;
  z-index: 10;
}

.parallelogram-card img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: skew(10deg) scale(1.1) translateX(-10%);
  transition: all 0.4s ease;
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 10px 12px 20px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}

.parallelogram-card:hover .card-label {
  opacity: 1;
}

.card-label h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.card-label p {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 400;
}

.spotlight-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: visible;
  padding: 20px 90px 20px 0;
  justify-content: flex-end;
  position: relative;
}

.sales-section {
  position: relative;
  background-color: #A30A0A; 
  overflow: hidden;
}

.sales-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 300px;
  background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/image_6487327%20(1).JPG/:/rs=w:1440,h:1440');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}
.sales-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 300px;
  background-image: url('photos/Parkinglot5.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
}

.sales-section .spotlight-row-container {
  display: flex;
  align-items: flex-start;        
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 60px;                       
  padding: 20px 40px;
}

.sales-section .label-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  margin-top: 40px;
}

.sales-section .spotlight-label.sales-label,
.sales-section .management-subtitle {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  white-space: nowrap;
  position: relative;
  margin: 0;

  transform: translateY(-20px);     
  padding-bottom: 20px;            
}

.sales-section .spotlight-label.sales-label {
  text-align: left;
}

.sales-section .spotlight-label.sales-label::after {
  left: 0;
  transform: translateX(-60px); 
}

.sales-section .management-subtitle::after {
  right: 0;
  transform: translateX(100px); 
}

.sales-section .management-subtitle {
  text-align: right;
}

.sales-section .spotlight-label.sales-label::after,
.sales-section .management-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 90%;
  height: 4px;
  background: white;
  border-radius: 2px;
}

.sales-section .spotlight-cards.left-aligned {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: visible;
  justify-content: flex-start;
  position: relative;
  margin-left: 100px; 
}

.sales-section .spotlight-cards.left-aligned .parallelogram-card:nth-child(3) {
  margin-left: 6px; 
}

.sales-section .spotlight-cards.operations-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: visible;
  justify-content: flex-start;
  position: relative;
  padding-left: 240px; 
}

.sales-section .parallelogram-card {
  width: 220px;
  height: 300px;
  overflow: visible;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
  transform: skew(10deg);
  transition: all 0.4s ease;
  filter: grayscale(100%) brightness(0.6);
  cursor: pointer;
  position: relative;
  margin-right: -30px;
  z-index: 1;
}

.sales-section .parallelogram-card:first-child {
  margin-right: 0;
  overflow: visible;
}

.sales-section .parallelogram-card:hover {
  transform: skew(10deg) scale(1.2);
  filter: none;
  z-index: 10;
}

.sales-section .parallelogram-card img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: skew(-10deg) scale(1.1) translateX(-10%);
  transition: all 0.4s ease;
}


.sales-section .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 20px 12px 20px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}
.sales-section .spotlight-cards.left-aligned .card-label {
	padding: 12px 20px 12px 40px; 
}

.sales-section .parallelogram-card:hover .card-label {
  opacity: 1;
}

.sales-section .card-label h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}

.sales-section .card-label p {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.sales-section .parallelogram-card.management-style {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transform: skew(-10deg);
  margin-left: -30px;
  margin-right: 0;
}
.sales-section .parallelogram-card.management-style img {
  transform: skew(10deg) scale(1.1) translateX(-10%);
}


.sales-section .parallelogram-card.management-style:hover {
  transform: skew(-10deg) scale(1.2); 
  filter: none;
  z-index: 10;
}

.sales-section .parallelogram-card.management-style:hover .card-label {
  opacity: 1;
}

@media (max-width: 900px) {
  .spotlight-section.team-header {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .spotlight-label,
  .spotlight-section .spotlight-label.team-label,
  .sales-section .spotlight-label.sales-label,
  .sales-section .management-subtitle {
    font-size: 2rem;
    text-align: center;
    padding: 0;
    white-space: normal;
  }
  .spotlight-label::after,
  .spotlight-section .spotlight-label.team-label::after,
  .sales-section .spotlight-label.sales-label::after,
  .sales-section .management-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
  }

  .spotlight-section .spotlight-subheading {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .spotlight-row-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 24px;
    padding: 0 16px;
  }

  .spotlight-cards,
  .sales-section .spotlight-cards.left-aligned,
  .sales-section .spotlight-cards.operations-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px 16px 16px;
    overflow: visible;
    justify-content: unset;
    margin: 0;
  }

  .sales-section .spotlight-cards.left-aligned,
  .sales-section .spotlight-cards.operations-cards {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .parallelogram-card,
  .sales-section .parallelogram-card,
  .sales-section .parallelogram-card.management-style {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    clip-path: none;
    transform: none;
    margin: 0;
    filter: none;
    border-radius: 8px;
    overflow: hidden;
  }
  .parallelogram-card:hover,
  .sales-section .parallelogram-card:hover,
  .sales-section .parallelogram-card.management-style:hover {
    transform: none;
    filter: none;
    z-index: 1;
  }
  .parallelogram-card img,
  .sales-section .parallelogram-card img,
  .sales-section .parallelogram-card.management-style img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
  }

  .card-label,
  .sales-section .card-label,
  .sales-section .spotlight-cards.left-aligned .card-label,
  .sales-section .spotlight-cards.operations-cards .card-label {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    left: 0 !important;
    right: 0 !important;
    padding: 8px 10px !important;
    line-height: 1.2;
    opacity: 1;
  }

  .sales-section .spotlight-cards.left-aligned .card-label { padding: 8px 10px !important; }

  .card-label h3 { font-size: 0.9rem !important; }
  .card-label p  { font-size: 0.75rem !important; }

  .sales-section .card-label h3 { font-size: 0.85rem !important; }
  .sales-section .card-label p  { font-size: 0.70rem !important; }

  .sales-section { display: flex; flex-direction: column; gap: 12px; position: relative; }
  .sales-section .label-row { display: none; }

  .sales-section .spotlight-cards.left-aligned::before,
  .sales-section .spotlight-cards.operations-cards::before {
    content: attr(data-mobile-title);
    display: block;
    text-align: center;
    font-size: 1.6rem !important; 
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 8px 0;
    position: relative;
  }
  .sales-section .spotlight-cards.left-aligned::before { content: "Sales"; }
  .sales-section .spotlight-cards.operations-cards::before { content: "Operations"; }

  .sales-section::before,
  .sales-section::after {
    opacity: 0.04;
    width: 45vw;
    height: 25vw;
  }

  .management-section { padding: 36px 0; }
}

@media (max-width: 360px) {
  .spotlight-cards,
  .sales-section .spotlight-cards.left-aligned,
  .sales-section .spotlight-cards.operations-cards {
    grid-template-columns: 1fr;
  }
  .card-label { padding: 6px 8px !important; }
  .sales-section .card-label h3 { font-size: 0.82rem !important; }
  .sales-section .card-label p  { font-size: 0.68rem !important; }
}

@media (max-width: 1400px) and (min-width: 901px) {
  .spotlight-label {
    font-size: 2.2rem;
    padding-right: 15px;
    padding-left: 15px;
  }
  
  .parallelogram-card {
    width: 150px;
    height: 220px;
    margin-left: -20px;
  }
  
  .spotlight-cards {
    padding-right: 40px;
  }
  
  .sales-section .spotlight-cards.left-aligned {
    margin-left: 40px;
  }
  
  .sales-section .spotlight-cards.operations-cards {
    padding-left: 120px;
  }
  
  .sales-section .parallelogram-card {
    width: 150px;
    height: 220px;
    margin-right: -20px;
  }
  
  .sales-section .spotlight-label.sales-label,
  .sales-section .management-subtitle {
    font-size: 2.2rem;
  }
  
  .card-label h3 {
    font-size: 0.95rem;
  }
  
  .card-label p {
    font-size: 0.8rem;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .spotlight-label {
    font-size: 1.8rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .parallelogram-card {
    width: 130px;
    height: 200px;
    margin-left: -15px;
  }
  
  .spotlight-cards {
    padding-right: 30px;
  }
  
  .sales-section .spotlight-cards.left-aligned {
    margin-left: 30px;
  }
  
  .sales-section .spotlight-cards.operations-cards {
    padding-left: 80px;
  }
  
  .sales-section .parallelogram-card {
    width: 130px;
    height: 200px;
    margin-right: -15px;
  }
  
  .sales-section .spotlight-label.sales-label,
  .sales-section .management-subtitle {
    font-size: 1.8rem;
  }
  
  .card-label h3 {
    font-size: 0.85rem;
  }
  
  .card-label p {
    font-size: 0.75rem;
  }
}

.footer {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/Turkc.png/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center 75%;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 80px 40px 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-line {
    font-size: 1.1em;
    color: #ddd;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 8px;
}
.social-icon svg,
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon:hover svg,
.social-icon:hover img {
    filter: brightness(0) invert(1);
}
.footer-nav {
    text-align: left;
}

.footer-nav h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff0000;
}

.footer-nav ul li a:hover {
    color: #ff0000;
    padding-left: 15px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-info {
    text-align: left;
}

.footer-info h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-info-item {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-info-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-legal {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-text {
    color: #aaa;
    font-size: 0.9em;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}