body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f7f7f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
}
.nav-logo {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.5px;
  pointer-events: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  pointer-events: auto;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.nav-links a:hover {
  opacity: 0.7;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 100;
  pointer-events: none;
}

.subtitle {
  font-size: 13px;
  color: #777;
  text-transform: lowercase;
  margin-bottom: 0px;
  font-weight: 500;
}

.subtitle::first-letter {
    text-transform: uppercase;
}

.title {
  font-size: 96px;
  font-weight: 400;
  color: #111;
  margin: 0;
  letter-spacing: -3px;
}

.gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
}

.gallery-item {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  pointer-events: auto;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.1s ease-out;
}

.gallery-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  z-index: 200 !important;
}

/* SECTIONS COMMON */
section {
  padding: 120px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
  margin-top: 0;
}

/* PROJECTS SECTION */
.projects-section {
  background-color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.project-card {
  cursor: pointer;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
  transition: transform 0.5s ease;
}
.project-card:hover img {
  transform: scale(1.02);
}
.project-info h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.project-info p {
  color: #777;
  margin: 0;
  font-size: 15px;
}

/* SERVICES SECTION */
.services-section {
  background-color: #fff;
}
.services-section .left-align {
  text-align: left;
  margin-bottom: 40px;
}
.services-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.services-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 40px;
}
.chat-prompt {
  font-size: 18px;
}
.lets-chat {
  color: #d4af37;
  font-style: italic;
  text-decoration: none;
}
.accordion-item {
  border-bottom: 1px solid #111;
  padding: 24px 0;
}
.accordion-item:first-child {
  border-top: 1px solid #111;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-family: inherit;
  color: #111;
}
.accordion-content {
  display: none;
  padding-top: 15px;
  color: #666;
}
.accordion-content p {
  margin: 0;
  font-size: 15px;
}

/* CONTACT SECTION */
.contact-section {
  background-color: #fff;
  color: #111;
  text-align: left;
  padding-bottom: 120px;
}
.form-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 60px;
  text-align: left;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  font-size: 16px;
  color: #111;
}
.form-group input[type="text"], 
.form-group input[type="email"], 
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #888;
  background: transparent;
  color: #111;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-bottom-color: #111;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #ccc;
}
.checkbox-group-container {
  gap: 20px;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #111;
  cursor: pointer;
}
.check-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid #888;
  border-radius: 2px;
  cursor: pointer;
}
.submit-btn {
  padding: 16px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
  margin-top: 20px;
}
.submit-btn:hover {
  background: #333;
}

.footer {
  background: #111;
  color: #666;
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  border-top: 1px solid #222;
  margin: 0;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .navbar { padding: 20px 24px; }
  .nav-links { display: none; }
  
  .title { font-size: 56px; letter-spacing: -2px; line-height: 1.1; margin-top: 8px; }
  .subtitle { font-size: 12px; }
  
  section { padding: 80px 0; }
  .section-title { font-size: 36px; margin-bottom: 40px; }
  
  .projects-grid { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  
  .services-content-wrapper { 
    grid-template-columns: 1fr; 
    gap: 60px;
  }
  
  .contact-form { padding: 0; }
}

@media (max-width: 480px) {
  .title { font-size: 48px; }
  section { padding: 60px 0; }
  .section-title { font-size: 32px; }
}
