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

body {
  font-family: 'Source Sans Pro', 'Arial', sans-serif;
  line-height: 1.7;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-width: 300px;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.4s ease;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nav-logo .logo-image:hover {
  opacity: 0.9;
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  position: relative;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
}

/* Mobile Navigation Base Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Removed underline effects from navigation links */

/* Image Carousel Styles - Full Cinematic Experience */
.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  transform: scale(1.02);
}

.carousel-image.active {
  opacity: 1;
  z-index: 2;
}

/* Specific image positioning fixes */
.carousel-image[src*="hero-main1.jpg"] {
  transform: scale(1.25);
  object-position: center center;
}

.carousel-image[src*="hero-main5.jpg"] {
  transform: scale(1.2);
  object-position: center center;
}

.carousel-image[src*="about-hero4.jpg"] {
  object-position: center top;
  transform: scale(1.05);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0.0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform: scale(1.05);
  will-change: transform, opacity;
  background: #000;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide.next {
  opacity: 0;
  transform: translateX(100%) scale(1.05);
  z-index: 0;
}

.carousel-slide.prev {
  opacity: 0;
  transform: translateX(-100%) scale(1.05);
  z-index: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: #000;
  transition: transform 2s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform: scale(1);
  display: block;
  will-change: transform;
  image-rendering: -webkit-optimize-contrast;
}

.carousel-slide.active img {
  transform: scale(1.01);
}

.carousel-slide:hover img {
  transform: scale(1.02);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  border: 2px solid transparent;
  user-select: none;
}

.carousel-dot.active {
  background: #4A90E2;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 100;
  opacity: 0;
  backdrop-filter: blur(10px);
  user-select: none;
}

.image-carousel:hover .carousel-arrow {
  opacity: 0.9;
}

.carousel-arrow:hover {
  background: rgba(74, 144, 226, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.prev {
  left: 30px;
}

.carousel-arrow.next {
  right: 30px;
}

/* Hero Section - Fast Collage Experience */
.hero {
  background: #000;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 70px;
  border: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-content h1 {
  display: none;
}

.hero-content p {
  display: none;
}

.hero-image {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: calc(100vh - 70px);
  z-index: 1;
  overflow: hidden;
}

.hero-collage {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 1px;
  background: #000;
  overflow: hidden;
}

.hero-collage-item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.8) contrast(1.1);
  will-change: transform, filter;
  image-rendering: -webkit-optimize-contrast;
}

.hero-collage-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.hero-collage-item:nth-child(1) { grid-column: span 1; }
.hero-collage-item:nth-child(2) { grid-column: span 1; }
.hero-collage-item:nth-child(3) { grid-column: span 1; }

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.btn {
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid transparent;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: calc(100vw - 60px);
  box-sizing: border-box;
  white-space: nowrap;
  min-width: 140px;
  word-wrap: break-word;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(139, 62, 191, 0.3));
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3), 
              0 0 30px rgba(139, 62, 191, 0.2);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.6), rgba(139, 62, 191, 0.6));
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5), 
              0 0 50px rgba(139, 62, 191, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  color: white;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.cta-button {
  background: linear-gradient(135deg, #4A90E2, #8B3EBF);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #357ABD, #7A34A8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Services Section */
.services {
  padding: 0 20px 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.service-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-top: 4px solid;
  border-image: linear-gradient(135deg, #4A90E2, #8B3EBF) 1;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  font-weight: bold;
  background: linear-gradient(135deg, #4A90E2, #8B3EBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(139, 62, 191, 0.1));
  padding: 80px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.calendly-inline-widget {
  margin: 0 auto;
  max-width: 900px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#calendly-embed {
  max-width: 800px;
  margin: 0 auto;
  height: 600px;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.newsletter {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(139, 62, 191, 0.1));
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 2px solid;
  border-image: linear-gradient(135deg, #4A90E2, #8B3EBF) 1;
}

#mc_embed_signup {
  margin-top: 1rem;
}

#mc_embed_signup_scroll {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.mc-field-group {
  flex: 1;
  min-width: 250px;
}

#mce-EMAIL {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 25px;
  width: 100%;
  transition: border-color 0.3s;
  font-size: 16px;
}

#mce-EMAIL:focus {
  outline: none;
  border-color: #4A90E2;
}

#mc-embedded-subscribe {
  background: linear-gradient(135deg, #4A90E2, #8B3EBF);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 16px;
  white-space: nowrap;
}

#mc-embedded-subscribe:hover {
  background: linear-gradient(135deg, #357ABD, #7A34A8);
  transform: translateY(-2px);
}

.newsletter p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Footer Styles */
.footer {
  position: relative;
  color: white;
  padding: 80px 0 0 0;
  margin-top: 80px;
  background: #000;
  overflow: hidden;
}

.footer-background-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  z-index: 1;
}

.footer-collage-item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.footer-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) contrast(1.2);
  transition: filter 0.6s ease;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.footer .container {
  position: relative;
  z-index: 3;
}

.footer-top {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}

.footer-logo-section {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  height: 80px;
  width: auto;
  max-width: 300px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
}

.footer-logo-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #4A90E2;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #4A90E2, #8B3EBF);
}

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

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a:hover {
  color: #4A90E2;
  padding-left: 10px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Social Links with Enhanced Hover Effects */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  padding: 8px 16px;
  background: rgba(74, 144, 226, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.social-link:hover::before {
  width: 200%;
  height: 200%;
}

.social-link:hover {
  background: rgba(74, 144, 226, 0.8);
  transform: translateY(-3px) scale(1.05);
  padding-left: 16px !important;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.footer-cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4A90E2, #8B3EBF);
  color: white !important;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
  padding-left: 24px !important;
}

.footer-bottom {
  background: rgba(85, 95, 125, 0.3);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4A90E2;
}

/* Photography Gallery Section */
.photography-gallery {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.photography-collage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3px;
  z-index: 1;
  background: #000;
  overflow: hidden;
}

.photography-collage-item {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photography-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
}

.photography-collage-item:hover {
  transform: scale(1.02);
  z-index: 10;
}

.photography-collage-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.2);
}

.photography-collage-item:nth-child(1) { grid-row: span 2; grid-column: span 2; }
.photography-collage-item:nth-child(2) { grid-row: span 1; grid-column: span 1; }
.photography-collage-item:nth-child(3) { grid-row: span 1; grid-column: span 1; }
.photography-collage-item:nth-child(4) { grid-row: span 1; grid-column: span 1; }
.photography-collage-item:nth-child(5) { grid-row: span 2; grid-column: span 1; }
.photography-collage-item:nth-child(6) { grid-row: span 1; grid-column: span 2; }
.photography-collage-item:nth-child(7) { grid-row: span 1; grid-column: span 1; }
.photography-collage-item:nth-child(8) { grid-row: span 1; grid-column: span 2; }

.photography-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.photography-gallery-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 4rem;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.photography-gallery-content h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
  color: #ffffff;
  font-weight: 700;
}

.photography-gallery-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 400;
}

.photography-gallery-content .btn {
    margin: 0 1rem;
}

/* Photography Description Section */
.photography-description {
  background: #1a1a1a;
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin: 0;
}

.photography-description .container {
  max-width: 800px;
  margin: 0 auto;
}

.photography-description h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 700;
}

.photography-description p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* About Hero Collage Styles */
.about-hero {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    background: #000;
}

.about-collage-item {
    position: relative;
    overflow: hidden;
    background: #111;
}

.about-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.8) contrast(1.1);
}

.about-collage-item:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.about-collage-item:nth-child(1) { grid-row: span 2; grid-column: span 2; }
.about-collage-item:nth-child(2) { grid-row: span 1; grid-column: span 2; }
.about-collage-item:nth-child(3) { grid-row: span 1; grid-column: span 2; }

.about-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 4rem;
    background: transparent;
    border-radius: 15px;
}

/* Services Preview Section */
.services-preview {
  padding: 0 20px 80px 20px;
  background: white;
  margin: 0;
}

.services-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-preview h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.service-link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #8B3EBF;
}

/* Call to Action Section */
.cta {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(139, 62, 191, 0.9));
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta .container {
  max-width: 800px;
  margin: 0 auto;
}

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

.cta p{
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
      /* Mobile menu handled in responsive.css */
  }

  .hero {
      grid-template-columns: 1fr;
      height: auto;
      padding: 100px 5% 50px;
  }

  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-content p {
      font-size: 1.1rem;
  }

  .hero-buttons {
      justify-content: center;
  }

  .portfolio-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
  }

  .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .featured-work {
      padding: 60px 20px;
  }

  .services-preview {
      padding: 60px 20px;
  }

  .cta {
      padding: 60px 20px;
  }

  .newsletter form {
      flex-direction: column;
      align-items: center;
  }

  .newsletter input {
      width: 100%;
      max-width: 300px;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .footer-bottom-content {
      flex-direction: column;
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }
}

/* Improve blog post text contrast */
.post-content h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 600;
}

.post-date {
  color: #4a4a4a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Image Hover Overlay Styles */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.image-overlay.active {
  opacity: 1;
  visibility: visible;
}

.image-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-overlay:hover img {
  transform: scale(1.02);
}

/* Close indicator */
.image-overlay::before {
  content: '✕ Click to close';
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .image-overlay::before {
    font-size: 0.9rem;
    padding: 8px 12px;
    top: 15px;
    right: 15px;
  }
  
  .image-overlay img {
    max-width: 95vw;
    max-height: 85vh;
  }
}