
/* ====================================
   Mr. Ductless HVAC - Main Stylesheet
   ==================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ====================================
   CSS Variables - R-O Inspired Design
   ==================================== */
:root {
  /* Brand Colors */
  --primary-color: #ffffff;
  --primary-dark: #000000;
  --primary-light: #ffffff;
  --secondary-color: #cccccc;
  --accent-color: #ffffff;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --light-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --dark-gray: #cccccc;
  --text-dark: #ffffff;
  --text-muted: #999999;
  
  /* Functional Colors */
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #0dcaf0;
  
  /* Typography */
  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0 20px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(255, 255, 255, 0.05);
  --shadow-md: 0 4px 12px rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 10px 30px rgba(255, 255, 255, 0.1);
  
  /* Border Radius */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
}

/* ====================================
   Global Styles
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--white);
  background-color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

p {
  margin-bottom: 1rem;
  color: var(--white);
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--dark-gray);
}

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

/* ====================================
   Navbar Styles
   ==================================== */
.navbar {
  background-color: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand:hover {
  color: var(--dark-gray);
}

.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.navbar-toggle:hover {
  background-color: var(--white);
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all var(--transition-normal);
}

.navbar-toggle:hover span {
  background-color: var(--black);
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.navbar-nav li {
  display: inline-block;
}

.nav-link {
  font-weight: 600;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  display: inline-block;
  position: relative;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark-gray);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width var(--transition-normal);
}

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

/* ====================================
   Hero Section - R-O Inspired
   ==================================== */
.hero-section {
  background: var(--black);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content .lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  display: inline-block;
  text-align: center;
}

.btn {
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 0;
  transition: all var(--transition-normal);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-primary:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-cta {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
  opacity: 0.9;
}

.hero-image img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* ====================================
   Section Styles - R-O Inspired
   ==================================== */
section {
  padding: 120px 0;
  position: relative;
}

.section-container,
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.section-title::after {
  display: none;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  text-align: center;
  color: var(--text-muted);
}

/* ====================================
   Highlights Section - R-O Inspired
   ==================================== */
.highlights-section {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  text-align: center;
}

.highlight-item i {
  color: var(--white);
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
  font-size: 3rem;
}

.highlight-item:hover i {
  transform: scale(1.1);
  color: var(--dark-gray);
}

.highlight-item h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.highlight-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
}

/* ====================================
   Services Overview Section - R-O Inspired
   ==================================== */
.services-overview-section {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-overview-section .lead {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.service-item {
  padding: 2rem;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-item i {
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  font-size: 2.5rem;
}

.service-item:hover i {
  transform: scale(1.1);
  color: var(--dark-gray);
}

.service-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ====================================
   Testimonials Section - R-O Inspired
   ==================================== */
.testimonials-section {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background-color: transparent;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--white);
  opacity: 0.15;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-author h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-author small {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
}

/* ====================================
   Call-to-Action Section - R-O Inspired
   ==================================== */
.cta-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.cta-section .lead {
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================================
   Footer - R-O Inspired
   ==================================== */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

.footer-nav-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-nav ul li {
  margin-bottom: 0.75rem;
}

.footer-nav ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-normal);
  font-weight: 300;
}

.footer-nav ul li a:hover {
  color: var(--white);
}

.footer-social-link {
  color: var(--white);
  transition: all var(--transition-normal);
  display: inline-block;
  margin: 0 1rem 0 0;
}

.footer-social-link:hover {
  color: var(--dark-gray);
  transform: translateY(-3px);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  font-weight: 300;
}

.footer-copy a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.footer-copy a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ====================================
   Additional Page-Specific Styles
   ==================================== */
.about-section,
.contact-section,
.portfolio-section,
.privacy-section {
  background-color: var(--black);
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info i {
  color: var(--white);
  width: 24px;
}

/* ====================================
   Modal Styles
   ==================================== */
.modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background-color: var(--black);
  border-bottom: 1px solid var(--medium-gray);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
}

.modal-body {
  padding: 2rem;
  background-color: var(--black);
}

.form-label {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background-color: var(--black);
  color: var(--white);
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  background-color: var(--black);
  color: var(--white);
}

.form-text {
  font-size: 0.875rem;
  color: var(--white);
}

.invalid-feedback {
  font-size: 0.875rem;
  color: var(--danger);
}

/* ====================================
   Animation Classes
   ==================================== */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   Utility Classes
   ==================================== */
.text-primary {
  color: var(--white) !important;
}

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

.bg-light {
  background-color: var(--black) !important;
}

.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet and smaller desktop (991px and below) */
@media (max-width: 991px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
  
  .navbar-toggle {
    display: block;
  }
  
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--black);
    border-left: 2px solid var(--medium-gray);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
  }
  
  .navbar-nav.active {
    right: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .navbar-nav li {
    width: 100%;
  }
  
  .nav-link {
    padding: 1rem;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--medium-gray);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-image {
    order: -1;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-container {
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .highlights-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

/* Mobile landscape and portrait (767px and below) */
@media (max-width: 767px) {
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-logo {
    height: 40px;
  }
  
  .hero-section {
    padding: 40px 0 30px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .section-container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .highlights-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }
}

/* Small mobile devices (575px and below) */
@media (max-width: 575px) {
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-logo {
    height: 35px;
  }
  
  .hero-section {
    padding: 30px 0 20px;
  }
  
  section {
    padding: 30px 0;
  }
  
  .section-container,
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-content .lead {
    font-size: 1rem;
  }
  
  .highlight-item h3,
  .service-item h4 {
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .section-container,
  .hero-container,
  .navbar-container,
  .footer-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ====================================
   Accessibility
   ==================================== */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====================================
   Print Styles
   ==================================== */
@media print {
  .navbar,
  .footer,
  .cta-section,
  .modal {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}

/* ====================================
   Additional Page-Specific Styles
   ==================================== */

/* Portfolio Grid - R-O Inspired */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.portfolio-item {
  background: var(--black);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.portfolio-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 350px;
  background: var(--black);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(20%);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.portfolio-overlay i {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0.8);
  transition: transform var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay i {
  transform: scale(1);
}

.portfolio-item-info {
  padding: 2rem;
  background: var(--black);
}

.portfolio-item-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.portfolio-item-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.portfolio-tags .tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.portfolio-item:hover .portfolio-tags .tag {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Process Grid - R-O Inspired */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.process-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: transparent;
  color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: all var(--transition-normal);
}

.process-step:hover .process-number {
  color: var(--white);
  border-color: var(--white);
}

.process-icon {
  margin: 2rem 0 1.5rem;
}

.process-icon i {
  color: var(--white);
  transition: all var(--transition-normal);
  font-size: 3rem;
}

.process-step:hover .process-icon i {
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.process-step p {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Responsive Portfolio */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .portfolio-image {
    height: 240px;
  }
}

/* Process Images */
.process-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* Contact Info Grid - R-O Inspired */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0;
  margin: 0 auto 5rem;
  max-width: 1400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
  text-align: center;
  padding: 4rem 3rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
}

.contact-info-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.contact-icon {
  margin-bottom: 2rem;
}

.contact-info-item i {
  color: var(--white);
  transition: all var(--transition-normal);
  font-size: 3rem;
}

.contact-info-item:hover i {
  transform: scale(1.1);
}

.contact-info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.contact-info-item a {
  color: var(--white);
  font-weight: 400;
  transition: color var(--transition-normal);
  text-decoration: none;
  font-size: 1.25rem;
  border-bottom: 1px solid transparent;
}

.contact-info-item a:hover {
  color: var(--dark-gray);
  border-bottom-color: var(--dark-gray);
}

.contact-info-item small {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Contact Section - R-O Inspired */
.contact-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.contact-section .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 4rem;
  color: var(--text-muted);
}

/* Form Section - R-O Inspired */
.form-section {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: transparent;
  color: var(--white);
  transition: all var(--transition-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
  background-color: transparent;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 2rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-actions {
  margin-top: 3rem;
  text-align: left;
}

.form-actions .btn {
  padding: 1rem 3rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-header h2 {
    font-size: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-section .section-title {
    font-size: 2.5rem;
  }
  
  .contact-section .lead {
    font-size: 1.25rem;
  }
  
  .contact-info-item {
    padding: 3rem 2rem;
  }
  
  .contact-info-item h3 {
    font-size: 1.75rem;
  }
  
  .contact-info-item p,
  .contact-info-item a {
    font-size: 1.25rem;
  }
  
  .contact-info-item small {
    font-size: 1rem;
  }
}

/* Mission Section */
.mission-section {
  background: var(--black);
  padding: 60px 0;
}

.mission-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  border-left: 4px solid var(--white);
  padding-left: 2rem;
  margin: 2rem 0;
  text-align: center;
}

/* Team Member */
.team-section {
  padding: 60px 0;
}

.team-member {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.team-member-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.team-member-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-member-bio {
  line-height: 1.8;
  color: var(--white);
}

/* Privacy Policy */
.privacy-section {
  padding: 60px 0;
}

.privacy-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.privacy-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--medium-gray);
}

.privacy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  color: var(--white);
}

/* Services Section */
.services-section {
  padding: 60px 0;
}

.why-choose-section {
  background: var(--black);
  padding: 60px 0;
}

/* Process Section */
.process-section {
  padding: 60px 0;
  background: var(--black);
}

/* Responsive Team Member */
@media (max-width: 768px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .team-member-image {
    max-width: 300px;
    margin: 0 auto;
  }
}