/* ==========================================================================
   FIKA Design and Digital Mena - Design System & Master Stylesheet
   Theme: Luxury Off-White & Minimalist Elegance
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Premium Off-White & Earthy Luxe */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3EFEA;
  --bg-card: #FFFFFF;
  --bg-dark: #191715;
  
  --text-primary: #1F1D1A;
  --text-secondary: #4A4640;
  --text-muted: #7A746C;
  --text-light: #F7F5F0;
  
  --accent-gold: #C5A059;
  --accent-gold-hover: #b08d48;
  --accent-terracotta: #B86B4D;
  --accent-sand: #E8E2D8;
  
  --border-light: rgba(31, 29, 26, 0.08);
  --border-medium: rgba(31, 29, 26, 0.15);
  
  --shadow-sm: 0 4px 12px rgba(31, 29, 26, 0.03);
  --shadow-md: 0 12px 32px rgba(31, 29, 26, 0.06);
  --shadow-lg: 0 24px 48px rgba(31, 29, 26, 0.1);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Container Widths */
  --site-max-width: 1280px;
  --header-height: 90px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4.5rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 29, 26, 0.05);
}

.header.scrolled {
  height: 75px;
  background: rgba(250, 248, 245, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 4px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.logo:hover .logo-symbol {
  transform: rotate(5deg) scale(1.05);
  background: var(--accent-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.logo-text span {
  font-weight: 400;
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.nav-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--text-primary);
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.nav-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Slideshow Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.5s ease-out;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(25, 23, 21, 0.4) 0%, rgba(25, 23, 21, 0.6) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  max-width: 850px;
  padding-top: 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #FAF8F5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-sand);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: #FFFFFF;
}

.slider-dots {
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-gold);
}

/* About Us Section */
.about {
  background-color: var(--bg-primary);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 12px;
  z-index: 3;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-badge-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Services Section */
.services {
  background-color: var(--bg-secondary);
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 160, 89, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.75rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.service-number {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent-sand);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '•';
  color: var(--accent-gold);
  font-weight: bold;
}

/* Approach / Methodology Section */
.approach {
  background-color: var(--bg-primary);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--accent-sand);
  z-index: 1;
}

.approach-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: 0 0 0 6px var(--bg-primary);
}

.approach-step:hover .step-circle {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  background-color: var(--bg-secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-dark);
}

.portfolio-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.08);
  opacity: 0.85;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(25, 23, 21, 0.9) 100%);
  color: #FFFFFF;
  transform: translateY(15px);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
}

/* Contact Us Section - Perfectly Aligned & Redesigned */
.contact {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-form-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
  background: #FFFFFF;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-response {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-response.success {
  display: block;
  background: #EBF7EE;
  color: #1E6B38;
  border: 1px solid #B8E4C3;
}

.form-response.error {
  display: block;
  background: #FDF2F2;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

/* Contact Info & Map Column */
.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.contact-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.02rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.map-wrapper {
  flex: 1;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Redesigned Creative Footer Section */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.25rem;
}

.footer-legal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-legal-logo .logo-symbol {
  width: 44px;
  height: 44px;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 6px;
}

.footer-legal-name-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.footer-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  padding: 1.25rem 2.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  max-width: 100%;
}

.footer-creative-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  transition: all var(--transition-fast);
}

.footer-creative-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-nav-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Go To Top Button */
.go-top-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.go-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.35);
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay Helpers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Responsive Queries */
@media (max-width: 1024px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-badge {
    right: 0;
    bottom: -1.5rem;
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .approach-steps::before {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.0rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 2rem 1.5rem;
  }

  .footer-nav-container {
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
