:root {
  --primary-blue: #1e3a5f;
  --primary-blue-dark: #152a45;
  --primary-blue-light: #2d5a8a;
  --accent-orange: #e67e22;
  --accent-orange-dark: #d35400;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --success-green: #27ae60;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

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

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-blue-light);
}

ul, ol {
  list-style-position: inside;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--accent-orange-dark);
  color: var(--text-light);
}

.btn-secondary {
  background: var(--primary-blue);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--primary-blue-dark);
  color: var(--text-light);
}

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

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary-blue);
}

.section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

/* Header & Navigation */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a {
  color: var(--text-light);
}

.header-top a:hover {
  color: var(--accent-orange);
}

.header-main {
  padding: 1rem 0;
}

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
}

.main-nav {
  display: none;
}

.main-nav.active {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-blue);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--text-dark);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
}

.nav-dropdown-menu a::after {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-close {
  display: none;
}

.header-cta {
  display: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-orange);
  color: var(--text-light);
}

.footer-logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--text-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
  background-size: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-service .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.hero-service .hero-content {
  max-width: 800px;
}

.hero-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .hero-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image {
    order: -1;
  }
  .hero-image img {
    max-height: 300px;
    object-fit: cover;
  }
}

/* Services Grid */
.services-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.service-card h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-link {
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card:hover .service-link {
  gap: 0.75rem;
}

/* Why Choose Us */
.why-us {
  padding: 4rem 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why-us-item {
  text-align: center;
  padding: 1.5rem;
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--text-light);
}

.why-us-item h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.why-us-item p {
  color: var(--text-muted);
}

/* Service Areas */
.service-areas {
  padding: 4rem 0;
  background: var(--primary-blue);
  color: var(--text-light);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
}

.areas-list li {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
}

.service-areas .section-title {
  color: var(--text-light);
}

.service-areas .section-subtitle {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-blue);
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: var(--text-light);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--primary-blue-dark);
  color: var(--text-light);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--accent-orange);
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-section.alt-bg {
  background: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.content-text h2 {
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.content-text h3 {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.content-text p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-text ul, .content-text ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

/* Service List */
.service-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-list li::before {
  content: '✓';
  color: var(--success-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sub-services Grid */
.subservices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.subservice-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-blue);
}

.subservice-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.subservice-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.subservice-card a {
  color: var(--accent-orange);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Contact Form */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info-box {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.contact-info-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--text-light);
}

.contact-info-item a:hover {
  color: var(--accent-orange);
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service Areas Page */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.area-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 4rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Utility Classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Styles */
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .header-top-content {
    flex-wrap: nowrap;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
  
  .content-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .subservices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .header-cta {
    display: block;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  
  .nav-list > li {
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-list a {
    display: block;
    padding: 1rem 0;
  }
  
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Our Work Gallery */
.our-work {
  padding: 4rem 0;
  background: var(--bg-light);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.work-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.work-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 58, 95, 0.95));
  padding: 3rem 1rem 1rem;
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.work-item:hover .work-item-overlay {
  transform: translateY(0);
}

.work-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.work-item-link {
  font-size: 0.85rem;
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.work-item-link:hover {
  color: #f39c12;
}

/* Mobile caption always visible */
.work-item-caption-mobile {
  display: none;
  padding: 0.75rem;
  background: var(--bg-white);
  text-align: center;
}

.work-item-caption-mobile .work-item-title {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.work-item-caption-mobile .work-item-link {
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .work-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .work-item {
    aspect-ratio: 16/10;
  }
  
  .work-item-overlay {
    display: none;
  }
  
  .work-item-caption-mobile {
    display: block;
  }
}

/* Chat Widget */
#pm-chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pm-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}

.pm-chat-toggle:hover {
  transform: scale(1.05);
  background: var(--accent-orange-dark);
}

.pm-chat-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
}

.pm-chat-close-icon {
  display: none;
}

.pm-chat-open .pm-chat-icon {
  display: none;
}

.pm-chat-open .pm-chat-close-icon {
  display: block;
}

.pm-chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  max-height: 520px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.pm-chat-open .pm-chat-panel {
  display: flex;
}

.pm-chat-header {
  background: var(--primary-blue);
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pm-chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.pm-chat-title {
  font-weight: 600;
  font-size: 1rem;
}

.pm-chat-status {
  font-size: 0.75rem;
  opacity: 0.85;
}

.pm-chat-header-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
}

.pm-chat-header-close:hover {
  opacity: 1;
}

.pm-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 300px;
  min-height: 200px;
}

.pm-chat-message {
  display: flex;
  max-width: 85%;
}

.pm-chat-user {
  align-self: flex-end;
}

.pm-chat-bot {
  align-self: flex-start;
}

.pm-chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pm-chat-user .pm-chat-bubble {
  background: var(--primary-blue);
  color: white;
  border-bottom-right-radius: 4px;
}

.pm-chat-bot .pm-chat-bubble {
  background: #f1f3f4;
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

.pm-chat-suggestions {
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid #eee;
}

.pm-chat-suggestion {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--primary-blue);
  transition: background 0.2s;
}

.pm-chat-suggestion:hover {
  background: #e9ecef;
}

.pm-chat-input-form {
  display: flex;
  padding: 0.75rem;
  border-top: 1px solid #eee;
  gap: 0.5rem;
}

.pm-chat-input {
  flex: 1;
  border: 1px solid #dee2e6;
  border-radius: 24px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  outline: none;
}

.pm-chat-input:focus {
  border-color: var(--primary-blue);
}

.pm-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pm-chat-send:hover {
  background: var(--accent-orange-dark);
}

.pm-chat-send svg {
  width: 18px;
  height: 18px;
  color: white;
}

.pm-chat-dots {
  display: flex;
  gap: 4px;
}

.pm-chat-dots span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: pm-bounce 1.4s infinite ease-in-out both;
}

.pm-chat-dots span:nth-child(1) { animation-delay: -0.32s; }
.pm-chat-dots span:nth-child(2) { animation-delay: -0.16s; }
.pm-chat-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes pm-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 480px) {
  #pm-chat-widget {
    bottom: 1rem;
    right: 1rem;
  }
  
  .pm-chat-toggle {
    width: 54px;
    height: 54px;
  }
  
  .pm-chat-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
  
  .pm-chat-messages {
    max-height: calc(85vh - 180px);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .cta-section,
  .menu-toggle,
  #pm-chat-widget {
    display: none;
  }
  
  .hero {
    background: none;
    color: var(--text-dark);
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
  }
}
