:root {
  --gold: #E3C088;
  --navy: #061C2B;
  --bronze: #AD8551;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-600: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Navigation */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 1rem 0;
}

.fixed-nav.scrolled {
  background-color: rgba(6, 28, 43, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.imagemdecima {
  height: 90px; 
  width: auto;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

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

.mobile-menu-button {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  margin-top: 1rem;
  background-color: rgba(6, 28, 43, 0.95);
  border-radius: 0.5rem;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background-color: var(--bronze);
}

.btn-white {
  background-color: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background-color: var(--gold);
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 28, 43, 0.7);
  z-index: 1;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: rgba(6, 28, 43, 0.95);
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  border: 1px solid rgba(227, 192, 136, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.about-image-container {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(227, 192, 136, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--navy);
}

.services-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 2rem;
}

.portfolio-button-container {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(6, 28, 43, 0.4);
  border: 1px solid rgba(227, 192, 136, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeIn 0.6s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(227, 192, 136, 0.1);
  border-color: rgba(227, 192, 136, 0.5);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-icon {
  margin-bottom: 1rem;
  color: var(--gold);
}

.service-icon svg {
  width: 3rem;
  height: 3rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--gold);
}

.service-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Services Section - Left Aligned */
.services-content-left {
  text-align: left;
}

.services-subtitle-left {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.portfolio-button-container-left {
  margin-bottom: 3rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 12px;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background-color: rgba(6, 28, 43, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.close:hover {
  background-color: var(--gold);
  color: var(--navy);
}

.modal-header {
  position: relative;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.modal-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

.modal-body {
  padding: 30px;
}

.modal-body h2 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.modal-body > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-details {
  border-top: 1px solid rgba(227, 192, 136, 0.2);
  padding-top: 20px;
}

.modal-details h3 {
  color: var(--gold);
  margin-bottom: 15px;
}

.modal-details p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FF0000;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.youtube-link:hover {
  background-color: #CC0000;
}

.youtube-icon {
  width: 24px;
  height: 24px;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: rgba(6, 28, 43, 0.95);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-container {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(227, 192, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.contact-label {
  color: var(--gold);
  font-weight: 500;
}

.contact-detail {
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-button-container {
  margin-top: 2rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background-color: #25D366;
  color: var(--white);
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #128C7E;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--navy);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(227, 192, 136, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo-container {
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-logo-container {
    margin-bottom: 0;
    text-align: left;
  }
}

.footer-logo {
  text-decoration: none;
}

.imagemdebaixo {
  height: 200px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
  }
}

.footer-heading {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(227, 192, 136, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

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

.text-gold {
  color: var(--gold);
}

/* Projects Page Styles */
.projects-header {
  background-color: rgba(6, 28, 43, 0.95);
  padding: 30px 0;
  border-bottom: 1px solid rgba(227, 192, 136, 0.2);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: var(--bronze);
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.projects-section {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: rgba(6, 28, 43, 0.4);
  border: 1px solid rgba(227, 192, 136, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeIn 0.6s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(227, 192, 136, 0.1);
  border-color: rgba(227, 192, 136, 0.5);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--gold);
  color: var(--navy);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.project-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white);
  background-color: rgba(227, 192, 136, 0.2);
  padding: 8px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-icon {
  opacity: 1;
}

.project-content {
  padding: 25px;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.project-card:hover .project-title {
  color: var(--gold);
}

.project-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-title {
    font-size: 2rem;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .project-card, .service-card {
    margin: 0 10px;
  }
}

/* Footer Social Icons */
.footer-social {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-social {
    text-align: left;
  }
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .social-icons {
    justify-content: flex-start;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(227, 192, 136, 0.2);
  color: var(--gold);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Projects Grid Layout */
.projects-grid-section {
  padding: 5rem 0;
  background-color: rgba(6, 28, 43, 0.9);
}

.projects-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.projects-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 300px;
}

.projects-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.projects-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(227, 192, 136, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.projects-image:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(227, 192, 136, 0.2);
}

.projects-text {
  padding: 2.5rem;
  text-align: left;
  background-color: rgba(6, 28, 43, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(227, 192, 136, 0.2);
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.projects-text h3 {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.projects-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive Design for Projects Grid */
@media (max-width: 768px) {
  .projects-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  
  .projects-image {
    height: 220px;
  }
  
  .projects-text {
    padding: 2rem;
    height: auto;
    text-align: center;
  }
  
  .projects-text h3 {
    font-size: 1.4rem;
  }
  
  .projects-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .projects-layout {
    gap: 2rem;
  }
  
  .projects-row {
    gap: 1.5rem;
  }
  
  .projects-image {
    height: 200px;
  }
  
  .projects-text {
    padding: 1.5rem;
  }
}

/* Projects Showcase Section - 6 Columns */
.projects-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.projects-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.projects-grid-6 {
    display: none;
}

.project-column {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 192, 136, 0.2);
    border-color: var(--gold);
}

.project-image {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
}

.project-company {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.project-stats {
    font-size: 0.8rem;
    color: var(--bronze);
    font-weight: 500;
}

/* Services Grid - 7 blocks in 3 columns */
.services-grid-7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-modern {
    position: relative;
    background: linear-gradient(145deg, var(--navy) 0%, var(--black) 100%);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(227, 192, 136, 0.3);
    border-color: var(--gold);
}

.service-icon-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    padding: 0.75rem;
    border-radius: 12px;
    z-index: 2;
}

.service-icon-top .icon {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.service-image-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    opacity: 0.15;
    overflow: hidden;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-modern {
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}

.service-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description-modern {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.embla {
    overflow: hidden;
    border-radius: 12px;
}

.embla__container {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
}

.embla__slide {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
}

@media (min-width: 768px) {
    .embla__slide {
        width: calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .embla__slide {
        width: calc(33.333% - 1rem);
    }
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-company {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1rem 1.5rem 0.5rem;
    text-align: center;
}

.project-stats {
    font-size: 0.9rem;
    color: var(--bronze);
    margin: 0 1.5rem;
    text-align: center;
    font-weight: 500;
}

.project-footer {
    margin-top: auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-icon svg {
    width: 20px;
    height: 20px;
}

/* Navigation Buttons */
.embla__prev,
.embla__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(227, 192, 136, 0.3);
}

.embla__prev {
    left: -25px;
}

.embla__next {
    right: -25px;
}

.embla__prev:hover,
.embla__next:hover {
    background: var(--bronze);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(173, 133, 81, 0.4);
}

.embla__prev svg,
.embla__next svg {
    color: var(--navy);
    width: 24px;
    height: 24px;
}

.embla__prev:disabled,
.embla__next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .embla__prev,
    .embla__next {
        width: 40px;
        height: 40px;
    }
    
    .embla__prev {
        left: -20px;
    }
    
    .embla__next {
        right: -20px;
    }
    
    .embla__prev svg,
    .embla__next svg {
        width: 20px;
        height: 20px;
    }
}

/* Update existing projects-grid-6 to be hidden since we're using carousel */
.projects-grid-6 {
    display: none;
}

/* Responsive Design for new sections */
@media (max-width: 1200px) {
    .projects-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid-7 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-column {
        padding: 1rem;
    }
    
    .service-card-modern {
        padding: 1.5rem;
        min-height: 240px;
    }
    
    .projects-showcase-section,
    .services-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .projects-grid-6 {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 100px;
    }
    
    .service-card-modern {
        min-height: 220px;
    }
}
