/* ========================================
   ALTO EMPACHO - CUSTOM STYLES v2.0
   Modern & Elegant Design System
   ======================================== */

/* COLOR PALETTE */
:root {
  --primary: #d4754d;
  --primary-dark: #b85d38;
  --primary-light: #e8986a;
  --secondary: #d98ba0;
  --accent: #f5d5b8;
  --accent-dark: #e8c4a0;
  --dark: #c8799b;
  --light: #fef9f3;
  --gray: #9e9e9e;
  --success: #4caf50;
  --danger: #f44336;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

.section-heading h6 {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-heading h4 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-heading h4 em {
  color: var(--primary);
  font-style: italic;
}

.line-dec {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  margin: 20px auto;
  border-radius: 10px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(244, 243, 241, 0.5) 0%, rgba(245, 213, 184, 0.3) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(212, 117, 77, 0.1);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 117, 77, 0.2);
}

.gallery-box {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-box img {
  transform: scale(1.1);
}

.gallery-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 117, 77, 0.85) 0%, rgba(139, 90, 60, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
  padding: 30px;
}

.gallery-item:hover .gallery-box .overlay {
  opacity: 1;
}

.gallery-box .overlay h5 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.gallery-box .overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, rgba(244, 243, 241, 0.5) 0%, rgba(245, 213, 184, 0.3) 100%);
  z-index: 0;
}

.testimonials-row {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.testimonial-item {
  margin-bottom: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, #fef9f3 0%, rgba(245, 213, 184, 0.2) 100%);
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 117, 77, 0.15);
  border-left-color: var(--primary-light);
}

.star-rating {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.star-rating i {
  color: #ffc107;
  margin-right: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 117, 77, 0.05) 0%, rgba(245, 213, 184, 0.1) 100%);
}

.why-choose-row {
  margin-top: 50px;
}

.why-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(212, 117, 77, 0.1);
}

.item-icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(212, 117, 77, 0.3);
}

.item-content h5 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.item-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   ENHANCED HEADER STYLES
   ======================================== */

.pre-header {
  background: linear-gradient(90deg, var(--dark) 0%, var(--secondary) 100%);
  color: #ffffff;
  padding: 12px 0;
}

.pre-header .info li {
  margin-right: 20px;
}

.pre-header .info a {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.pre-header .info a:hover {
  color: var(--accent);
}

.pre-header .social-media a {
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.pre-header .social-media a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.border-first-button a {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white !important;
  padding: 15px 35px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(212, 117, 77, 0.3);
}

.border-first-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 117, 77, 0.4);
  color: white !important;
}

.main-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white !important;
  padding: 15px 35px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(212, 117, 77, 0.3);
  cursor: pointer;
}

.main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 117, 77, 0.4);
}

/* ========================================
   FORM STYLES
   ======================================== */

.texto,
.email,
textarea {
  background: white !important;
  border: 2px solid var(--accent) !important;
  border-radius: 8px !important;
  padding: 12px 15px !important;
  transition: all 0.3s ease !important;
  font-family: 'Poppins', sans-serif !important;
}

.texto:focus,
.email:focus,
textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(212, 117, 77, 0.1) !important;
  outline: none !important;
}

/* ========================================
   ANIMATIONS ENHANCEMENTS
   ======================================== */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wow {
  animation-duration: 0.8s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .gallery-box {
    height: 250px;
  }
  
  .section-heading h4 {
    font-size: 1.8rem;
  }
  
  .why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .item-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-box {
    height: 220px;
  }
  
  .section-heading h6 {
    font-size: 11px;
  }
  
  .section-heading h4 {
    font-size: 1.4rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .why-item {
    padding: 20px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.wow {
  visibility: hidden;
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 5px solid var(--primary);
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h5 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-widget a {
  color: var(--accent);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-widget a:hover {
  color: white;
}

.social-footer {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-footer a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 0.95rem;
}

.social-footer a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 117, 77, 0.4);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* ========================================
   BLOG SECTION STYLES
   ======================================== */

.blog {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef9f3 0%, rgba(245, 213, 184, 0.2) 100%);
}

.blog-container {
  margin-top: 50px;
}

.blog-post-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 117, 77, 0.15);
}

.blog-thumb {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-item:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content .category {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  width: fit-content;
}

.blog-content .date {
  color: var(--gray);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
}

.blog-content h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
  transition: color 0.3s ease;
}

.blog-post-item:hover .blog-content h4 {
  color: var(--primary);
}

.blog-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: inline;
  text-decoration: none;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-post-item:hover .read-more i {
  transform: translateX(3px);
}

/* ========================================
   CONTACT SECTION STYLES
   ======================================== */

.contact-us {
  padding: 80px 0;
  background: white;
}

.contact-wrapper {
  background: linear-gradient(135deg, #fef9f3 0%, rgba(245, 213, 184, 0.2) 100%);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
  padding: 20px 0;
}

.contact-info-section h5 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 117, 77, 0.2);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.info-text h6 {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.info-text p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.info-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.info-text a:hover {
  color: var(--primary-dark);
}

.social-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 117, 77, 0.2);
}

.social-contact h6 {
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-contact a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 117, 77, 0.4);
}

.contact-form-wrapper {
  padding-left: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: white;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 117, 77, 0.1);
  background: white;
}

.contact-form-wrapper button {
  margin-top: 10px;
}

/* ========================================
   FREE QUOTE SECTION
   ======================================== */

.free-quote {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(212, 117, 77, 0.1) 0%, rgba(245, 213, 184, 0.15) 100%);
}

/* ========================================
   HEADER & NAVIGATION IMPROVEMENTS
   ======================================== */

.header-area {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-area.header-sticky {
  padding-top:  0px;
  padding-bottom: 115px;
  background: white;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

  .main-nav .logo img {
    justify-content: center;
    align-items: center;
    height: 140px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .main-nav .logo:hover img {
    transform: scale(1.15);
  }
  transition: width 0.3s ease;
}

.main-nav .nav li a:hover::after {
  width: 100%;
}

.main-nav .nav li a:hover {
  color: var(--primary);
}

.main-nav .nav li a.active {
  color: var(--primary);
}

/* ========================================
   SPECIALTIES SECTION
   ======================================== */

.our-portfolio {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fef9f3 0%, rgba(245, 213, 184, 0.1) 100%);
}

.specialties-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: -5px;
}

.specialty-item {
  margin-bottom: 0;
}

.specialty-card {
  background: white;
  border-radius: 15px;
  padding: 40px 35px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 5px solid transparent;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 117, 77, 0.2);
}

.specialty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 25px rgba(212, 117, 77, 0.3);
  transition: all 0.3s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1) rotateZ(5deg);
  box-shadow: 0 15px 35px rgba(212, 117, 77, 0.4);
}

.specialty-card h5 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.specialty-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.specialty-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.specialty-link:hover {
  color: var(--primary-dark);
}

.specialty-link i {
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-link i {
  transform: translateX(5px);
}

/* ========================================
   CAROUSEL/PORTFOLIO SECTION IMPROVEMENTS
   ======================================== */

.carousel-title {
  text-align: center;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 50px 0 30px;
  position: relative;
  padding-bottom: 20px;
}

.carousel-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 10px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-item:hover {
  box-shadow: 0 15px 40px rgba(212, 117, 77, 0.25);
  transform: translateY(-5px);
}

.portfolio-item .thumb {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.portfolio-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .thumb img {
  transform: scale(1.1);
}

.portfolio-item .down-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 25px;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

.portfolio-item .down-content h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.portfolio-item .down-content span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.loop.owl-carousel .owl-nav button {
  background: linear-gradient(135deg, #ff1493 0%, #c71585 100%) !important;
  color: white !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.6);
  position: absolute;
  top: 43px;
  z-index: 10;
}

.loop.owl-carousel .owl-nav .owl-prev {
  left: auto;
  right: 100px;
}

.loop.owl-carousel .owl-nav .owl-next {
  right: 10px;
}

.loop.owl-carousel .owl-nav button:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(212, 117, 77, 0.4);
}

/* ========================================
   SECTION IMPROVEMENTS
   ======================================== */

.our-portfolio {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fef9f3 0%, rgba(245, 213, 184, 0.1) 100%);
}

.main-banner {
  padding: 80px 0;
  background: white;
}

.about {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(212, 117, 77, 0.05) 0%, rgba(245, 213, 184, 0.1) 100%);
}

.services {
  padding: 80px 0;
  background: white;
}

/* ========================================
   SKILL PROGRESS CIRCLES
   ======================================== */

.progress-value div {
  color: var(--primary);
  font-weight: 700;
}

.progress-value span {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ========================================
   HOVER EFFECTS & TRANSITIONS
   ======================================== */

a {
  transition: all 0.3s ease;
}

button {
  transition: all 0.3s ease;
}

img {
  transition: all 0.3s ease;
}

/* ========================================
   UTILITY IMPROVEMENTS
   ======================================== */

.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* ========================================
   SCROLL BEHAVIOR
   ======================================== */

html {
  scroll-behavior: smooth;
}

/* ========================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ======================================== */

@media (max-width: 992px) {
  .contact-form-wrapper {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .contact-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .main-nav .nav {
    gap: 15px;
  }
  
  .main-nav .nav li a {
    font-size: 0.85rem;
  }
  
  .pre-header .info li {
    margin-right: 10px;
  }
  
  .section-heading h4 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .main-nav .nav {
    gap: 10px;
  }
  
  .main-nav .nav li {
    display: none;
  }
  
  .main-nav .nav li.scroll-to-section:nth-child(-n+3) {
    display: list-item;
  }
}

/* ========================================
   CAROUSEL SECTION SPACING
   ======================================== */

.container-fluid.wow.fadeIn {
  padding-top: 100px;
  margin-top: 50px;
}

.carousel-title {
  margin-top: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .header-area,
  .pre-header,
  .menu-trigger,
  .border-first-button,
  footer {
    display: none;
  }
}
