html, body {
  overflow-x: hidden;
  width: 100vw;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

.logo {
  font-size: 30px;
}

/* Social Media Icons in Navigation */
.navbar-nav .social-icons {
  margin-left: 15px;
}

.navbar-nav .social-icons .social-icon {
  padding: 8px 10px !important;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav .social-icons .social-icon:hover {
  color: #fff;
  background-color: #d4af37;
  transform: translateY(-2px);
}

/* Instagram specific color on hover */
.navbar-nav .social-icons .social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* YouTube specific color on hover */
.navbar-nav .social-icons .social-icon[aria-label="YouTube"]:hover {
  background-color: #ff0000;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav .social-icons {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
    width: auto;
  }
  
  .navbar-nav .social-icons .social-icon {
    margin-right: 10px;
    width: auto;
    height: auto;
    padding: 8px 12px !important;
    border-radius: 4px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  
  /* Make social icons align with other menu items on mobile */
  .navbar-nav .social-icons .social-icon {
    background: none !important;
    color: #000000 !important;
  }
  
  .navbar-nav .social-icons .social-icon:hover {
    background-color: rgba(255,255,255,0.1) !important;
    transform: none;
  }
}

/* Footer Styles */
.footer-brand .footer-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.footer-brand .footer-subtitle {
  font-size: 16px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 500;
  font-style: italic;
}

.footer-brand .footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.footer-social h6 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.footer-social .social-icon a {
  display: block;
  margin-bottom: 10px;
  padding: 8px 0;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social .social-icon a i {
  font-size: 18px;
  margin-right: 10px;
  width: 25px;
}

.footer-social .social-icon a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.footer-social .social-icon a[aria-label*="Instagram"]:hover {
  color: #E4405F;
}

.footer-social .social-icon a[aria-label*="YouTube"]:hover {
  color: #ff0000;
}

/* Footer Menu Links */
.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: #d4af37;
  padding-left: 5px;
}

/* Footer Legal Links */
.footer-legal {
  color: #666 !important;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal:hover {
  color: #d4af37 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-brand .footer-title {
    font-size: 24px;
  }
  
  .footer-brand .footer-subtitle {
    font-size: 14px;
  }
  
  .sub-footer .col-md-4 {
    text-align: center !important;
    margin-top: 10px;
  }
  
  .sub-footer .right {
    text-align: center !important;
  }
}

/* Footer Bottom Section - Logos */
.site-footer__bottom {
  background-color: #000;
  padding: 30px 0;
  margin-bottom: 0 !important;
}

.site-footer__bottom .container {
  margin-bottom: 0 !important;
}

.site-footer__bottom img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.site-footer__bottom img:hover {
  opacity: 1;
}

/* Remove any extra margin/padding from footer */
.main-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Ensure no extra spacing at bottom of page */
body {
  margin-bottom: 0 !important;
}

footer {
  margin-bottom: 0 !important;
}

/* Portfolio Filter System */
.portfolio-filter {
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #ddd;
  color: #666;
  padding: 10px 25px;
  margin: 0 5px 10px 5px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #fff;
  transform: translateY(-2px);
}

/* Portfolio Gallery Items */
.portfolio-gallery {
  margin-top: 20px;
}

.gallery-item {
  transition: all 0.3s ease;
  opacity: 1;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 50%, #dadce0 100%);
}

.portfolio-img img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio-info p {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-btn {
    padding: 8px 20px;
    font-size: 12px;
    margin: 0 3px 8px 3px;
  }
  
  .portfolio-img img {
    height: 300px;
    object-fit: contain;
  }
  
  .portfolio-info h5 {
    font-size: 16px;
  }
  
  .portfolio-info p {
    font-size: 12px;
  }
}

/* Subcategory Filter Styles */
.subcategory-filter {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.subcategory-title {
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subfilter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.subfilter-btn {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.subfilter-btn:hover,
.subfilter-btn.active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #fff;
  transform: translateY(-1px);
}

/* Enhanced Portfolio Info */
.portfolio-category {
  display: block;
  background: rgba(212, 175, 55, 0.9);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  width: fit-content;
}

.portfolio-link {
  display: block;
  color: #d4af37;
  text-decoration: none;
  font-size: 12px;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.portfolio-link:hover {
  color: #fff;
  text-decoration: none;
}

.portfolio-link i {
  margin-right: 5px;
  font-size: 14px;
}

/* Responsive subcategories */
@media (max-width: 768px) {
  .subcategory-filter {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .subcategory-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .subfilter-btn {
    padding: 6px 15px;
    font-size: 12px;
  }
  
  .subfilter-buttons {
    gap: 8px;
  }
  
  .portfolio-category {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .portfolio-link {
    font-size: 11px;
  }
}

/* Social Follow Section */
.social-follow-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.social-follow-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.5;
}

.social-follow-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-follow-item:hover {
  transform: translateY(-5px);
}

.social-profile-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d4af37;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.social-follow-item:hover .social-profile-img {
  border-color: #b8941f;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

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

.social-follow-item:hover .social-profile-img img {
  transform: scale(1.1);
}

.social-info {
  position: relative;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-follow-item:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
}

.social-info h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.social-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.social-follow-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-follow-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #9e7d1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-follow-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .social-profile-img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  
  .social-info h5 {
    font-size: 18px;
  }
  
  .social-info p {
    font-size: 13px;
  }
  
  .social-follow-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .social-follow-section .row {
    margin: 0 -10px;
  }
  
  .social-follow-section [class*="col-"] {
    padding: 0 10px;
  }
}

/* About Action Buttons */
.about-action-buttons {
  margin-top: 20px;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #fff;
  padding: 12px 25px;
  margin: 0 8px 15px 8px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: none;
  min-width: 130px;
}

.about-btn i {
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.about-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #9e7d1a 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #fff;
  text-decoration: none;
}

.videobook-btn:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.trabajos-btn:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Responsive adjustments for about buttons */
@media (max-width: 768px) {
  .about-action-buttons {
    margin-top: 15px;
  }
  
  .about-btn {
    display: block;
    margin: 0 auto 10px auto;
    width: 80%;
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .about-btn {
    padding: 10px 20px;
    font-size: 12px;
    min-width: 120px;
  }
}

/* Videobook Modal Styles */
#videobookModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#videobookModal .modal-header {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: white;
  border-bottom: none;
  padding: 20px 30px;
}

#videobookModal .modal-title {
  font-size: 20px;
  font-weight: 600;
}

#videobookModal .modal-title i {
  font-size: 22px;
  margin-right: 10px;
}

#videobookModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

#videobookModal .btn-close:hover {
  opacity: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.placeholder-content {
  text-align: center;
  color: white;
  padding: 40px;
}

.placeholder-content i {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.placeholder-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #d4af37;
}

.placeholder-content p {
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.placeholder-content small {
  font-size: 14px;
  opacity: 0.6;
}

#videobookModal .modal-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-info {
  flex-grow: 1;
}

.video-info small {
  color: #6c757d;
  font-style: italic;
}

.video-info i {
  margin-right: 5px;
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
  #videobookModal .modal-dialog {
    margin: 10px;
  }
  
  #videobookModal .modal-header {
    padding: 15px 20px;
  }
  
  #videobookModal .modal-title {
    font-size: 18px;
  }
  
  .placeholder-content {
    padding: 20px;
  }
  
  .placeholder-content i {
    font-size: 40px;
  }
  
  .placeholder-content h4 {
    font-size: 20px;
  }
  
  .placeholder-content p {
    font-size: 14px;
  }
  
  #videobookModal .modal-footer {
    padding: 10px 20px;
    flex-direction: column;
    gap: 10px;
  }
  
  .video-info {
    text-align: center;
  }
}

/* Simple Media Icons for Portfolio */
.portfolio-item .media-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.portfolio-item:hover .media-icon {
  background: rgba(212, 175, 55, 0.9);
  transform: scale(1.1);
}

/* Project Video Modal Styling */
#projectVideoModal .modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

#projectVideoModal .modal-header {
  background: linear-gradient(135deg, #d4af37, #f4e5a1);
  color: #fff;
  border-bottom: none;
}

#projectVideoModal .btn-close {
  filter: brightness(0) invert(1);
}

#projectVideoModal .video-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  background: #000;
}

#projectVideoModal .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.contact-cta-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.contact-cta-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: none;
}

.contact-cta-btn i {
  font-size: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-cta-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #9e7d1a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments for contact CTA */
@media (max-width: 768px) {
  .contact-cta-content {
    padding: 30px 15px;
  }
  
  .contact-cta-content h3 {
    font-size: 24px;
  }
  
  .contact-cta-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .contact-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ====================================
   CONTACT PAGE REDESIGN
   ==================================== */

/* Contact Header */
.contact-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.contact-header h3 {
  font-size: 24px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
  font-weight: 500;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #f1f1f1;
}

.contact-form-wrapper h5 {
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-form-wrapper h5 i {
  color: #d4af37;
  margin-right: 10px;
  font-size: 22px;
}

.contact-form .form-control {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-form-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  width: 100%;
}

.contact-form-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #9e7d1a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-form-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* Contact Methods */
.contact-methods {
  padding-left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex: 1;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.whatsapp-contact,
.email-contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #d4af37;
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  background: #d4af37;
  color: #fff;
}

.method-icon i {
  font-size: 24px;
}

.method-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.method-content p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #666;
}

.email-address a {
  font-size: 18px;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-address a:hover {
  color: #b8941f;
  text-decoration: underline;
}

.contact-method-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.whatsapp-btn i {
  margin-right: 8px;
  font-size: 16px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 26px;
  }
  
  .contact-header h3 {
    font-size: 20px;
  }
  
  .contact-intro {
    font-size: 16px;
  }
  
  .contact-form-wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .contact-method {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .method-icon i {
    font-size: 20px;
  }
  
  .method-content h5 {
    font-size: 16px;
  }
  
  .method-content p {
    font-size: 13px;
  }
  
  .email-address a {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .contact-header h2 {
    font-size: 22px;
  }
  
  .contact-header h3 {
    font-size: 18px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }
}

.section-title p {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.footer-brand h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.img-social-footer {
  width: 50px;
  height: 50px;
}

.section-sobre-mi h4 {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #DD6E8B;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

.section-sobre-mi h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  line-height: 1.2em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

.header-subtitle {
  font-family: 'Oswald', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 7px !important;
  color: #ffffff !important;
}

.grecaptcha-badge {
    display: none !important;
}

.title span {
  color: #000000;
}

.footer-brand h4 {
  color: #ffffff;
}

.footer-social .social-icon a {
  color: #ffffff;
}

.footer-menu li a {
  color: #ffffff;
}

.footer-legal {
  color: #ffffff !important;
}

.portfolio-gallery {
    position: relative;
    min-height: 200px; /* Ajusta según necesites */
}

.portfolio-gallery.filtering {
    pointer-events: none;
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.gallery-item.hiding {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.gallery-item.showing {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.gallery-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

/* Para un efecto más suave en el grid */
.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.gallery-item {
    will-change: transform, opacity;
}