/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #333;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: scale(1.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #000;
  color: #fff;
}

.badge-dark {
  background-color: #000;
  color: #fff;
}

.badge-light {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.badge-outline {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

.logo-icon {
  position: relative;
}

.camera-icon {
  width: 2rem;
  height: 2rem;
  color: #000;
}

.pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

/* Hero Section */
.hero {
  padding: 8rem 1rem 6rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #000 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: gradient-shift 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #888;
  margin-bottom: 3rem;
}

.hero-cta {
  margin-top: 3rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: 10%;
  left: 5%;
}

.floating-2 {
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

.floating-circle {
  width: 6rem;
  height: 6rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.floating-circle svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #000;
}

/* Features Section */
.features {
  padding: 6rem 1rem;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #e5e5e5;
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
}

.feature-card:hover {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.feature-title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 1rem;
  background: #f8f9fa;
}

.portfolio-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.portfolio-item {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #fff;
  transition: all 0.5s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.portfolio-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

.portfolio-professional {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.portfolio-description {
  color: #666;
}

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

/* Services Section */
.services {
  padding: 6rem 1rem;
  background: #fff;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text .badge {
  background: #f5f5f5;
  color: #000;
  margin-bottom: 1.5rem;
}

.services-text .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.services-list {
  space-y: 2rem;
}

.service-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #000;
  margin-top: 0.25rem;
}

.service-title {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
}

.services-card {
  position: relative;
}

.partnership-card {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partnership-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.partnership-header svg {
  width: 1.5rem;
  height: 1.5rem;
}

.partnership-header h3 {
  font-size: 1.5rem;
}

.partnership-description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.partnership-features {
  margin-bottom: 1.5rem;
}

.partnership-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.partnership-feature svg {
  width: 1rem;
  height: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 1rem;
  background: #f8f9fa;
}

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

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #fff;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fbbf24;
  fill: currentColor;
}

.testimonial-text {
  color: #666;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: #000;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonial-business {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: #aaa;
}

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

/* Footer */
.footer {
  background: #000;
  color: #fff;
  padding: 4rem 1rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .camera-icon {
  width: 2rem;
  height: 2rem;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-features {
  space-y: 0.5rem;
}

.footer-features p {
  color: #aaa;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.contact-info {
  margin-top: 1rem;
  color: #ccc;
}

.contact-info .email {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.fade-in-up {
  animation: fade-in-up 1s ease-out forwards;
}

.bounce-subtle {
  animation: bounce-subtle 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

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

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

  .services-text .section-title {
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

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

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

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

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

/* Icon styles */
.icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
