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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* === Header === */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 45px;
  width: auto;
}

.header-logo-text {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}

.header-logo-text strong {
  display: block;
  font-size: 16px;
  color: #333;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  transition: all 0.3s;
}

.nav a:hover,
.nav a.active {
  background: #ee9539;
  color: #333;
}

.header-phone {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.header-phone a {
  color: #333;
}

.header-phone a:hover {
  color: #333;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}

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

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #ee9539;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #d9802a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(238,149,57,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #333;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* === Photo Collage Gallery (Homepage) === */
.collage {
  padding: 0;
  overflow: hidden;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 4px;
}

.collage-grid .collage-item {
  overflow: hidden;
  position: relative;
}

.collage-grid .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-grid .collage-item:hover img {
  transform: scale(1.08);
}

.collage-grid .collage-item.wide {
  grid-column: span 2;
}

.collage-grid .collage-item.tall {
  grid-row: span 2;
}

/* === About Agency Section === */
.about {
  padding: 70px 0;
  background: #f2f2f2;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-inner .about-tagline {
  font-size: 17px;
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-inner p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.75;
}

.about-inner p strong {
  color: #333;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 0;
  border-top: none;
}

.about-stat {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 25px 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.about-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  line-height: 1;
}

.about-stat .label {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* === Services Section (Homepage) === */
.services {
  padding: 70px 0;
  background: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ee9539;
  margin: 15px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 25px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.service-card .btn {
  font-size: 14px;
  padding: 10px 24px;
  margin-top: 10px;
}

/* === Offers / Promo Section === */
.offers {
  padding: 70px 0;
  background: #fff;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.offer-card:last-child {
  margin-bottom: 0;
}

.offer-card-img {
  overflow: hidden;
}

.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.offer-card-body {
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.offer-badge {
  display: inline-block;
  background: #ee9539;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  align-self: flex-start;
}

.offer-card-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.offer-card-body .offer-price {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}

.offer-card-body .offer-price small {
  font-size: 14px;
  font-weight: 400;
  color: #717171;
}

/* === Gallery Grid === */
.gallery {
  padding: 70px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* === Page Intro (for inner pages) === */
.page-intro {
  padding: 50px 0;
  text-align: center;
}

.page-intro h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.page-intro p {
  font-size: 17px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* === Price Cards === */
.price-section {
  padding: 50px 0;
  background: #f8f8f8;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: #fff;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  overflow: hidden;
}

.price-card-img {
  height: 200px;
  overflow: hidden;
}

.price-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.price-card:hover .price-card-img img {
  transform: scale(1.05);
}

.price-card-content {
  padding: 25px 25px 30px;
}

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

.price-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.price-card .price-value {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.price-card .price-period {
  font-size: 14px;
  color: #717171;
  margin-bottom: 20px;
}

.price-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

/* === Contact Section === */
.contact-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  background: #ee9539;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
}

.contact-info-item .text strong {
  display: block;
  margin-bottom: 3px;
}

.contact-info-item .text a:hover {
  color: #333;
}

/* Contact Form */
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #333;
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

/* === Footer === */
.footer {
  background: #ee9539;
  color: #3d1a00;
  padding: 45px 0 20px;
}

.footer-top {
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-cta-btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 16px 50px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-cta-btn:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer h4 {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer a {
  color: #3d1a00;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #000;
  text-decoration: underline;
}

.footer span {
  display: block;
  font-size: 14px;
  color: #3d1a00;
  margin-bottom: 6px;
}

.footer-logo img {
  height: auto;
  width: 110px;
  margin-bottom: 12px;
}

.footer-company-info {
  font-size: 13px;
  line-height: 1.6;
  color: #3d1a00;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #5a3000;
}

/* === Contact Cards === */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card-icon {
  font-size: 36px;
  margin-bottom: 15px;
  width: 70px;
  height: 70px;
  background: #ee9539;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card a {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card span {
  font-size: 15px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 13px;
  color: #717171;
  margin-top: 5px;
}

/* === Modal === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #717171;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal .form-group {
  margin-bottom: 16px;
}

.modal label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #555;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: #333;
}

.modal textarea {
  height: 100px;
  resize: vertical;
}

/* === Responsive === */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero h1 {
    font-size: 32px;
  }

  .collage-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 180px 180px;
  }

  .offer-card {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
  }

  .burger {
    display: flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 15px 0;
    order: 3;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px;
    text-align: center;
  }

  .header-phone {
    order: 2;
    margin-left: auto;
    margin-right: 15px;
    font-size: 16px;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .price-cards {
    grid-template-columns: 1fr;
  }

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

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 26px;
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 150px);
  }

  .collage-grid .collage-item.wide {
    grid-column: span 1;
  }

  .collage-grid .collage-item.tall {
    grid-row: span 1;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card-img img {
    min-height: 220px;
    max-height: 260px;
  }

  .offer-card-body {
    padding: 25px;
  }

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

  .about-stat .number {
    font-size: 28px;
  }
}
