:root {
  --primary-teal: #1e8b97;
  --primary-blue: #0272a9;
  --text-black: #000000;
  --text-gray: #6d6d6d;
  --text-light-gray: #797979;
  --bg-white: #ffffff;
  --bg-light: #f9f9f9;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --max-width: 1440px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text-black);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section-padding {
  padding: 80px 0;
}

/* Utility for merged images */
.merged-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.merged-image-wrapper img {
  position: absolute;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* CSS for section section:Header */
#header-section {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-black);
}

.main-nav a.active {
  color: var(--primary-teal);
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-teal);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  
  .main-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* CSS for section section:Hero */
#hero-section {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 50px;
}

.hero-collage {
  position: relative;
  height: 800px;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 100px;
  left: 0;
  width: 80%;
  height: 700px;
  background-color: #d9d9d9;
  z-index: 1;
}

.hero-img-main {
  position: absolute;
  top: 50px;
  right: 0;
  width: 75%;
  height: auto;
  z-index: 2;
  object-fit: cover;
}

.hero-img-secondary {
  position: absolute;
  top: 150px;
  left: 50px;
  width: 40%;
  height: auto;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .hero-collage {
    height: 600px;
  }
  .hero-bg {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-collage {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    padding: 20px;
  }
  
  .hero-bg {
    display: none;
  }
  
  .hero-img-main, .hero-img-secondary {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 20px;
  }
}

/* CSS for section section:About */
#about-section {
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-title-col {
  position: relative;
}

.subtitle {
  font-family: var(--font-sans);
  color: var(--text-gray);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.about-title-col h2 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-black);
  margin-bottom: 40px;
}

.circle-decoration {
  margin-top: 40px;
  width: 150px;
  opacity: 0.8;
}

.about-text-col p {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-black);
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .circle-decoration {
    display: none;
  }
}

/* CSS for section section:Projects */
#projects-section {
  background-color: #fff;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.projects-info {
  max-width: 500px;
}

.projects-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-black);
}

.projects-info p {
  color: var(--text-light-gray);
  font-size: 16px;
}

.projects-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.view-all {
  color: var(--primary-blue);
  font-weight: 600;
  border-bottom: 1px solid var(--primary-blue);
  padding-bottom: 2px;
}

.slider-controls {
  display: flex;
  gap: 20px;
}

.slider-controls img {
  cursor: pointer;
  width: 40px;
}

.projects-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.project-card {
  background: #fff;
}

.card-image {
  background-color: #f5f0ea;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  margin-bottom: 5px;
}

.price {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-black);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .projects-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .projects-action {
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .projects-slider {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Services */
#services-section {
  background-color: #fff;
}

.services-header {
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-sans);
  color: var(--text-gray);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-black);
}

.services-header .highlight {
  color: var(--primary-teal);
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.service-icon img {
  width: 100%;
  height: auto;
}

.service-num {
  font-family: var(--font-sans);
  font-size: 24px;
  color: var(--text-gray);
  margin-bottom: 10px;
  font-weight: 600;
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.service-item p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-header h2 {
    font-size: 36px;
  }
}

/* CSS for section section:Stats */
#stats-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

.stats-container {
  position: relative;
  height: 800px;
}

.stat-item {
  position: absolute;
  z-index: 2;
}

.stat-circle, .stat-circle-small {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-circle img, .stat-circle-small img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.stat-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-content .number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
}

.stat-content .label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  margin-top: 5px;
}

/* Positioning */
.stat-clients {
  bottom: 50px;
  left: 5%;
  width: 200px;
  height: 200px;
}

.stat-awards {
  top: 50px;
  left: 25%;
  width: 180px;
  height: 180px;
}

.stat-years {
  top: 100px;
  right: 15%;
  width: 200px;
  height: 200px;
}

.stat-image-1 {
  position: absolute;
  top: 150px;
  left: 20%;
  width: 35%;
  z-index: 1;
}

.stat-image-2 {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 25%;
  z-index: 1;
}

@media (max-width: 1024px) {
  .stats-container {
    height: 600px;
  }
}

@media (max-width: 768px) {
  #stats-section {
    padding: 40px 0;
  }
  
  .stats-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .stat-item, .stat-image-1, .stat-image-2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 300px;
  }
  
  .stat-circle img, .stat-circle-small img {
    animation: none;
  }
}

/* CSS for section section:Awards */
#awards-section {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.awards-content {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.awards-content .subtitle {
  color: var(--text-light-gray);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.awards-content h2 {
  font-size: 48px;
  color: #fffcf9;
}

.awards-image {
  width: 100%;
  opacity: 0.8;
}

.awards-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* CSS for section section:Testimonials */
#testimonials-section {
  background-color: #fff;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-black);
  margin-bottom: 30px;
  font-style: italic;
}

.client-info h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-info span {
  font-size: 14px;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Instagram */
#instagram-section {
  background-color: #fff;
}

.insta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.insta-header h2 {
  font-size: 32px;
  font-family: var(--font-sans);
}

.follow-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-black);
}

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

.insta-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* CSS for section section:Footer */
#site-footer {
  background-color: #fff;
  padding-top: 80px;
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-talk {
  border: 1px solid #000;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

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

.link-col h4, .contact-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-col li {
  margin-bottom: 10px;
}

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

.contact-item img {
  width: 20px;
  margin-top: 5px;
}

.contact-item p {
  max-width: 300px;
  font-size: 14px;
}

.social-col {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 45px;
}

.social-col img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-gray);
}

@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 10px;
    text-align: center;
  }
}