/* ===================================
   URBANWAYS - OPTIMIZED STYLESHEET
   Version: 2.0
   Author: Urbanways Team
   Last Updated: 2025
=================================== */

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  /* Colors */
  --gold: #c9a961;
  --pink: #e91e63;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --accent-teal: #00bfa6;
  --text-dark: #222;
  --text-medium: #444;
  --text-muted: #666;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Spacing */
  --container-padding: 6%;
  --section-padding: 120px;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ===================================
   RESET & BASE STYLES
=================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
}

p {
  line-height: 1.7;
}

/* ===================================
   ACCESSIBILITY
=================================== */
/* Focus States */
*:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--dark);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   LOADING SCREEN
=================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(201, 169, 97, 0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================
   CONTAINER
=================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===================================
   HEADER & NAVIGATION
=================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem var(--container-padding);
  max-width: 1600px;
  margin: 0 auto;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1001;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo .urban {
  color: var(--dark);
}

.logo .ways {
  color: var(--pink);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  padding: 0;
  z-index: 1001;
  transition: transform var(--transition);
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 10px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 100px 40px 40px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav .nav-link {
  width: 100%;
  padding: 18px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--light-gray);
  opacity: 0;
  transform: translateX(50px);
}

.mobile-nav.active .nav-link {
  animation: slideInRight 0.5s ease forwards;
}

.mobile-nav.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active .nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav.active .nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav.active .nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav.active .nav-link:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  padding-left: 10px;
  background: rgba(233, 30, 99, 0.05);
}

.mobile-nav-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid var(--light-gray);
  opacity: 0;
}

.mobile-nav.active .mobile-nav-footer {
  animation: fadeIn 0.6s ease 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.mobile-nav-contact {
  margin-bottom: 30px;
}

.mobile-nav-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-nav-contact a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding: 0;
  border: none;
  text-transform: none;
  font-weight: 400;
}

.mobile-nav-contact a:hover {
  color: var(--pink);
  background: transparent;
}

.mobile-social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.mobile-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 0;
  border: none;
  transition: all var(--transition);
}

.mobile-social-links a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

body.menu-open {
  overflow: hidden;
}

/* ===================================
   HERO SECTION
=================================== */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
              url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat;
  animation: zoomIn 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
  z-index: 2;
  max-width: 1000px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 700px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 16px 50px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  font-weight: 500;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.cta-btn:focus-visible {
  outline-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1.5s ease 1s forwards;
}

.scroll-indicator span {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--white);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { 
    transform: translateY(0); 
    opacity: 0; 
  }
  50% { 
    transform: translateY(20px); 
    opacity: 1; 
  }
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
=================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===================================
   SECTION STYLES
=================================== */
section {
  padding: var(--section-padding) 0;
}

.section-subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  font-weight: 300;
  text-align: center;
}

/* ===================================
   INTRO SECTION
=================================== */
.intro-section {
  background: var(--white);
  text-align: center;
}

/* ===================================
   STATS SECTION
=================================== */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   PORTFOLIO SECTION
=================================== */
.portfolio-section {
  background: var(--light-gray);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.portfolio-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
  /* cursor: pointer; */ /* Disabled until portfolio pages created */
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.1);
}

.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(233, 30, 99, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.overlay-text {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.portfolio-card-content {
  padding: 30px;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.portfolio-card:hover .portfolio-card-title {
  color: var(--pink);
}

.portfolio-card-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   SERVICES SECTION
=================================== */
.services-preview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--light-gray);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION
=================================== */
.testimonials-section {
  background: var(--light-gray);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border-radius: 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-weight: 500;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
  background: linear-gradient(135deg, var(--accent-teal), #008c7a);
  color: var(--white);
  text-align: center;
}

.cta-section .section-title,
.cta-section .section-description,
.cta-section p {
  color: var(--white);
}

.cta-section .cta-btn {
  background: var(--white);
  color: var(--accent-teal);
  border: 2px solid var(--white);
}

.cta-section .cta-btn:hover {
  background: transparent;
  color: var(--white);
}

/* ===================================
   FOOTER
=================================== */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 2;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--pink);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--pink);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===================================
   BACK TO TOP BUTTON
=================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px;
  }

  .portfolio-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .testimonial-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
    --container-padding: 5%;
  }

  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .hero-section {
    min-height: 80vh;
    height: auto;
  }

  .stats-section {
    padding: 60px 0;
  }

  .portfolio-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .portfolio-card-image {
    height: 300px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* ===================================
   PRINT STYLES
=================================== */
@media print {
  header {
    position: relative;
    box-shadow: none;
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0;
  }

  .scroll-indicator,
  .back-to-top,
  .hamburger,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none !important;
  }

  .hero-bg {
    animation: none;
  }

  a {
    color: var(--dark);
    text-decoration: underline;
  }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
=================================== */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg {
    animation: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* Optionally add dark mode styles here */
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --text-muted: #555;
  }
}/* ===================================
   URBANWAYS - PAGE-SPECIFIC STYLES
   Add this to the main style.css or include as separate file
=================================== */

/* ===================================
   PAGE HERO VARIANTS
=================================== */
.page-hero {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.about-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
}

.services-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
}

.contact-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                    url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
}

/* ===================================
   ABOUT PAGE STYLES
=================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

.intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.intro-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.intro-highlight {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  margin-top: 2rem;
  padding-left: 30px;
  border-left: 2px solid var(--gold);
  display: block;
}

.mission-section {
  background: var(--light-gray);
}

.mission-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.values-section {
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
}

.value-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

.team-section {
  background: var(--light-gray);
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-member {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: start;
}

.team-member-reverse {
  grid-template-columns: 1fr 400px;
}

.team-member-reverse .team-image {
  order: 2;
}

.team-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.team-image:hover img {
  filter: grayscale(0%);
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.team-role {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.team-credentials {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.team-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===================================
   SERVICES PAGE STYLES
=================================== */
.services-intro {
  background: var(--white);
  text-align: center;
}

.services-grid-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--white);
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--light-gray);
  padding: 60px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.detailed-services {
  background: var(--white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail-reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail-reverse .service-image {
  order: 2;
}

.service-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail:hover .service-image img {
  transform: scale(1.05);
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.service-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.process-section {
  background: var(--dark);
  color: var(--white);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
}

.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* ===================================
   CONTACT PAGE STYLES
=================================== */
.contact-info-section {
  background: var(--white);
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 80px;
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--light-gray);
  transition: all 0.4s ease;
}

.contact-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  transition: color var(--transition);
  display: block;
}

.contact-link:hover {
  color: var(--pink);
}

.contact-address {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: normal;
  transition: color var(--transition);
}

.contact-card:hover .contact-address {
  color: var(--pink);
}

.contact-address-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-address-link:hover {
  color: var(--pink);
}

.address-details {
  background: var(--dark);
  color: var(--white);
}

.address-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.address-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.address-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.address-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-weight: 400;
}

.action-btn:hover {
  background: var(--white);
  color: var(--dark);
}

.action-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}

.action-btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.address-map {
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.address-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.address-map:hover iframe {
  filter: grayscale(0%);
}

.social-section {
  background: var(--light-gray);
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 60px;
  font-weight: 300;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--white);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.social-card-instagram::before {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card-facebook::before {
  background: #1877f2;
}

.social-card-linkedin::before {
  background: #0077b5;
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.social-card-instagram .social-icon {
  color: #E1306C;
}

.social-card-facebook .social-icon {
  color: #1877f2;
}

.social-card-linkedin .social-icon {
  color: #0077b5;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-name {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===================================
   CTA VARIATIONS
=================================== */
.cta-light {
  background: var(--light-gray);
}

.cta-white {
  background: var(--white);
}

.cta-btn-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.cta-btn-dark:hover {
  background: transparent;
  color: var(--dark);
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 1024px) {
  .intro-grid,
  .team-member,
  .team-member-reverse,
  .service-detail,
  .service-detail-reverse,
  .address-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-member-reverse .team-image,
  .service-detail-reverse .service-image {
    order: 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 70vh;
  }

  .intro-image,
  .team-image,
  .service-image {
    height: 400px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .address-map {
    height: 300px;
  }

  .address-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .value-number,
  .service-number {
    font-size: 2.5rem;
  }

  .intro-image,
  .team-image,
  .service-image {
    height: 300px;
  }
}
/* ===================================
   ADDITIONAL CSS FOR SERVICE ICONS
   Add this to your style.css file after .service-number
=================================== */

/* Icon styling for service cards */
.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  color: var(--pink);
  transform: scale(1.1);
}
/* ===================================
   DROPDOWN NAVIGATION
=================================== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* Make dropdown trigger look like other nav links */
.nav-link-dropdown {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  user-select: none;
}

.nav-link-dropdown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-link-dropdown:hover::after,
.nav-dropdown:hover .nav-link-dropdown::after {
  width: 100%;
}

.nav-link-dropdown:hover,
.nav-dropdown:hover .nav-link-dropdown {
  color: var(--pink);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
  display: block;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}

/* Ensure mobile-submenu is hidden on desktop */
.desktop-nav .mobile-submenu {
  display: none !important;
}

.dropdown-content a {
  display: block;
  padding: 16px 28px;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 400;
  position: relative;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--pink);
  transition: width 0.3s ease;
  z-index: -1;
  opacity: 0.05;
}

.dropdown-content a:hover {
  color: var(--pink);
  padding-left: 35px;
}

.dropdown-content a:hover::before {
  width: 100%;
}

/* Mobile submenu */
.mobile-submenu {
  display: none; /* Hidden by default on desktop */
}

/* Show only in mobile navigation */
.mobile-nav .mobile-submenu {
  display: flex;
  flex-direction: column;
  background: rgba(233, 30, 99, 0.05);
  margin: 0 -40px;
  padding: 0 40px;
  /* /* border-left: 3px solid var(--pink); */ /* Removed */ */ /* Removed - user request */
}

.submenu-link {
  padding: 12px 0 12px 20px !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.submenu-link:last-child {
  border-bottom: none !important;
}

.submenu-link:hover {
  color: var(--pink) !important;
}

/* ===================================
   PORTFOLIO PAGES
=================================== */
.portfolio-hero .hero-bg {
  background-size: cover;
  background-position: center;
}

.hospitality-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80');
}

.commercial-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
}

.residential-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
}

.social-hero .hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('https://images.unsplash.com/photo-1524813686514-a57563d77965?w=1920&q=80');
}

.portfolio-intro {
  background: var(--white);
  text-align: center;
}

.portfolio-gallery {
  background: var(--light-gray);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.gallery-item {
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-info {
  padding: 30px;
}

.gallery-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.gallery-item:hover .gallery-info h3 {
  color: var(--pink);
}

.gallery-category {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 500;
}

.gallery-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Approach Section */
.approach-section {
  background: var(--white);
  padding: 100px 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}

.approach-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-gray);
  transition: all 0.4s ease;
}

.approach-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.approach-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.approach-item:hover .approach-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.approach-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 500;
}

.approach-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Portfolio Gallery Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media
/* Hide dropdown-content in mobile navigation, show only mobile-submenu */
.mobile-nav .dropdown-content {
  display: none !important;
}

.mobile-nav .mobile-submenu {
  display: flex !important;
}

/* Ensure desktop nav doesn't show mobile-submenu */
.desktop-nav .mobile-submenu,
header .mobile-submenu {
  display: none !important;
}
 display: block;
  }
  
  .dropdown-content {
    display: none; /* Hide desktop dropdown on mobile */
  }
  
  .mobile-submenu {
    display: flex;
    flex-direction: column;
    background: rgba(233, 30, 99, 0.05);
    margin: 10px -40px 10px -40px;
    padding: 10px 40px;
    /* border-left: 3px solid var(--pink); */ /* Removed */
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
      padding-top: 0;
      padding-bottom: 0;
    }
    to {
      opacity: 1;
      max-height: 300px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }
}
: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

/* ===================================
   MOBILE NAVIGATION ENHANCEMENTS
=================================== */

/* Mobile dropdown toggle indicator */
.mobile-nav .nav-dropdown {
  position: relative;
}

.mobile-nav .nav-link-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

/* Hide dropdown arrow on mobile */
.mobile-nav .nav-link-dropdown::after {
  display: none;
}

/* Mobile submenu collapsible */
.mobile-nav .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mobile-nav .mobile-submenu.open {
  max-height: 300px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Better tap feedback for mobile */
.mobile-nav .nav-link-dropdown:active {
  background: rgba(233, 30, 99, 0.1);
}

.submenu-link:active {
  background: rgba(233, 30, 99, 0.15);
}

/* Smooth scrolling for internal links */
html {
  scroll-behavior: smooth;
}

/* Improve form inputs on mobile */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Reduce animations on low-power mode */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .mobile-submenu {
    transition: none !important;
  }
}

/* Better contrast for accessibility */
@media (prefers-contrast: high) {
  .dropdown-content a:hover {
    background: var(--dark);
    color: var(--white);
  }
  
  .nav-link:hover {
    text-decoration: underline;
  }
}
 /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Contact grid */
  .contact-grid,
  .social-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  /* CTA buttons more prominent on mobile */
  .cta-btn {
    padding: 18px 40px;
    font-size: 0.85rem;
    width: auto;
    display: inline-block;
  }
  
  /* Section titles smaller on mobile */
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .section-description {
    font-size: 1rem;
  }
}

/* Small Mobile Optimizations (max 480px) */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .hero-section,
  .page-hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  /* Portfolio and gallery images */
  .portfolio-card-image,
  .gallery-image {
    height: 200px;
  }
  
  .portfolio-card-content,
  .gallery-info {
    padding: 20px;
  }
  
  /* Stats to single column */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Service cards */
  .service-card {
    padding: 40px 25px;
  }
  
  /* Buttons full width on small mobile */
  .cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Back to top button smaller */
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .nav-link,
  .submenu-link {
    padding: 1rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-content a {
    min-height: 48px;
    padding: 15px 28px;
  }
  
  .mobile-nav .nav-link {
    padding: 18px 0;
  }
  
  /* Remove hover effects on touch devices */
  .portfolio-card:hover,
  .gallery-item:hover,
  .service-card:hover {
    transform: none;
  }
  
  /* Make buttons more prominent */
  .cta-btn,
  .action-btn {
    min-height: 48px;
    padding: 15px 35px;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section,
  .page-hero {
    min-height: 100vh;
  }
  
  .portfolio-card-image,
  .gallery-image {
    height: 180px;
  }
}

/* Print styles */
@media print {
  .hamburger,
  .mobile-nav,
  .mobile-nav-overlay,
  .back-to-top,
  .dropdown-content,
  .scroll-indicator {
    display: none !important;
  }
  
  header {
    position: relative;
  }
  
  .hero-section,
  .page-hero {
    min-height: auto;
    page-break-after: always;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .portfolio-card-image img,
  .gallery-image img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* =====================================================
   MOBILE NAVIGATION DROPDOWN FIX
   Added: November 2025
===================================================== */

/* Force hide dropdown-content in mobile navigation */
.mobile-nav .dropdown-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Ensure mobile-submenu displays and works properly */
.mobile-nav .mobile-submenu {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(233, 30, 99, 0.05);
  /* /* border-left: 3px solid var(--pink); */ /* Removed */ */ /* Removed - user request */
  margin: 0 -40px;
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* When dropdown is open */
.mobile-nav .mobile-submenu.open,
.mobile-nav .nav-link-dropdown.active + .mobile-submenu {
  max-height: 500px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Hide mobile-submenu in desktop navigation */
.desktop-nav .mobile-submenu {
  display: none !important;
  visibility: hidden !important;
}

/* Submenu link styling */
.mobile-nav .submenu-link {
  padding: 12px 0 12px 20px !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.mobile-nav .submenu-link:last-child {
  border-bottom: none !important;
}

.mobile-nav .submenu-link:hover,
.mobile-nav .submenu-link:active {
  color: var(--pink) !important;
  background: rgba(233, 30, 99, 0.08);
  padding-left: 25px !important;
}

/* Portfolio dropdown toggle indicator */
.mobile-nav .nav-link-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.mobile-nav .nav-link-dropdown.active {
  color: var(--pink);
}

/* Add visual indicator that dropdown is toggleable */
.mobile-nav .nav-link-dropdown::after {
  content: 'Ã¢â‚¬Âº';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.mobile-nav .nav-link-dropdown.active::after {
  transform: rotate(270deg);
}


/* =====================================================
   ADDITIONAL FIX: Prevent dropdown from staying open on portfolio pages
   Added: November 2025
===================================================== */

/* Ensure dropdown only shows on hover, not when parent is active */
.desktop-nav .nav-dropdown .dropdown-content {
  display: block;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show dropdown ONLY on hover, regardless of active state */
.desktop-nav .nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Active class on portfolio link should only affect color, not dropdown */
.desktop-nav .nav-link-dropdown.active {
  color: var(--pink);
}

/* Ensure active class doesn't force dropdown to stay open */
.desktop-nav .nav-link-dropdown.active ~ .dropdown-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* On hover, dropdown shows even if parent has active class */
.desktop-nav .nav-dropdown:hover .nav-link-dropdown.active ~ .dropdown-content,
.desktop-nav .nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===================================
   IMPROVED MOBILE DROPDOWN STYLES
   Add these styles to your style.css
=================================== */

/* Mobile Navigation - Improved Dropdown */
.mobile-nav .nav-dropdown {
  position: relative;
  width: 100%;
}

.mobile-nav .nav-link-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Add chevron icon indicator */
.mobile-nav .nav-link-dropdown::after {
  content: '\203A';
  font-size: 1.8rem;
  color: var(--pink);
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  font-weight: 300;
}

.mobile-nav .nav-link-dropdown.active::after {
  transform: rotate(270deg);
}

.mobile-nav .nav-link-dropdown.active {
  color: var(--pink);
  background: rgba(233, 30, 99, 0.05);
  padding-left: 10px;
}

/* Mobile Submenu - Improved Styling */
.mobile-nav .mobile-submenu {
  display: flex !important;
  flex-direction: column;
  background: linear-gradient(to right, rgba(233, 30, 99, 0.03), rgba(233, 30, 99, 0.08));
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  /* /* border-left: 3px solid var(--pink); */ /* Removed */ */ /* Removed - user request */
}

/* Submenu Links - Better Visual Design */
.mobile-nav .submenu-link {
  padding: 16px 20px 16px 30px !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  color: var(--text-dark) !important;
  border-bottom: 1px solid rgba(233, 30, 99, 0.1) !important;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.mobile-nav .submenu-link:last-child {
  border-bottom: none !important;
}

/* Bullet point indicator for submenu items */
.mobile-nav .submenu-link::before {
  content: '•';
  position: absolute;
  left: 15px;
  color: var(--pink);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav .submenu-link:hover::before {
  opacity: 1;
}

.mobile-nav .submenu-link:hover {
  color: var(--pink) !important;
  padding-left: 35px !important;
  background: rgba(255, 255, 255, 0.5);
}

/* Active submenu link */
.mobile-nav .submenu-link.active {
  color: var(--pink) !important;
  background: rgba(233, 30, 99, 0.1);
  font-weight: 500;
}

/* Animation for dropdown items */
.mobile-nav.active .mobile-submenu {
  animation: none; /* Remove conflicting animation */
}

/* Ensure smooth transitions */
.mobile-nav .nav-dropdown {
  transition: none;
}

/* Better touch feedback */
.mobile-nav .nav-link-dropdown:active {
  background: rgba(233, 30, 99, 0.15);
  transform: scale(0.98);
}

.mobile-nav .submenu-link:active {
  background: rgba(233, 30, 99, 0.2);
  transform: translateX(3px);
}

/* Accessibility improvements */
.mobile-nav .nav-link-dropdown:focus-visible,
.mobile-nav .submenu-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: -2px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .mobile-nav .nav-link-dropdown {
    font-size: 1rem;
    padding: 16px 0;
  }

  .mobile-nav .submenu-link {
    padding: 14px 20px 14px 28px !important;
    font-size: 0.9rem !important;
  }

  .mobile-nav .nav-link-dropdown::after {
    font-size: 1.6rem;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .mobile-nav .mobile-submenu {
    background: rgba(233, 30, 99, 0.15);
  }

  .mobile-nav .submenu-link {
    border-bottom-color: rgba(233, 30, 99, 0.3) !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-nav .nav-link-dropdown::after,
  .mobile-nav .mobile-submenu,
  .mobile-nav .submenu-link {
    transition: none !important;
  }
}

/* END OF IMPROVED MOBILE DROPDOWN STYLES */

/* ===================================
   ADDITIONAL FIXES FOR ACTIVE STATE
   Add these to the end of style.css
=================================== */

/* Ensure chevron always shows, even when Portfolio is active */
.mobile-nav .nav-link-dropdown::after {
  content: '\203A' !important;
  display: inline-block !important;
  font-size: 1.8rem;
  color: var(--pink);
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  font-weight: 300;
}

/* When dropdown is manually toggled open */
.mobile-nav .nav-link-dropdown[aria-expanded="true"]::after {
  transform: rotate(270deg);
}

/* Keep pink color when active (on portfolio pages) */
.mobile-nav .nav-link-dropdown.active {
  color: var(--pink);
}

/* But don't add background until actually clicked */
.mobile-nav .nav-link-dropdown.active[aria-expanded="true"] {
  background: rgba(233, 30, 99, 0.05);
  padding-left: 10px;
}

/* Make sure active submenu items are highlighted */
.mobile-nav .submenu-link.active {
  color: var(--pink) !important;
  background: rgba(233, 30, 99, 0.12);
  font-weight: 500;
  /* /* border-left: 3px solid var(--pink); */ /* Removed */ */ /* Removed - user request */
  padding-left: 27px !important;
}

.mobile-nav .submenu-link.active::before {
  opacity: 1;
}


/* ===================================
   SIMPLE MOBILE NAVIGATION
   Remove all fancy styling, keep it clean
=================================== */

/* Remove chevron icon */
.mobile-nav .nav-link-dropdown::after {
  display: none !important;
}

/* Simple submenu - no gradient, no border */
.mobile-nav .mobile-submenu {
  display: flex !important;
  flex-direction: column;
  background: transparent !important;
  margin: 0;
  padding: 0 !important;
  border-left: none !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Simple Portfolio link - no special styling when active */
.mobile-nav .nav-link-dropdown {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.mobile-nav .nav-link-dropdown.active {
  color: var(--pink);
  background: transparent !important;
  padding-left: 0 !important;
}

/* Simple submenu links - no bullets, no fancy hover */
.mobile-nav .submenu-link {
  padding: 14px 0 14px 20px !important;
  font-size: 0.95rem !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: color 0.3s ease;
  background: transparent !important;
  border-left: none !important;
}

.mobile-nav .submenu-link:last-child {
  border-bottom: none !important;
}

/* Remove bullet points */
.mobile-nav .submenu-link::before {
  display: none !important;
}

/* Simple hover - just color change */
.mobile-nav .submenu-link:hover {
  color: var(--pink) !important;
  padding-left: 20px !important;
  background: transparent !important;
}

/* Active submenu link - just pink color */
.mobile-nav .submenu-link.active {
  color: var(--pink) !important;
  background: transparent !important;
  font-weight: 500;
  border-left: none !important;
  padding-left: 20px !important;
}

/* Remove touch feedback animations */
.mobile-nav .nav-link-dropdown:active {
  background: transparent !important;
  transform: none !important;
}

.mobile-nav .submenu-link:active {
  background: transparent !important;
  transform: none !important;
}

/* End of Simple Mobile Nav Override */