* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

/* NAV */
.nav {
  padding: 25px 40px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
}

.nav-links a:hover {
  color: black;
}

/* HERO SPLIT */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-left h1 {
  font-size: 48px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING BLOCK */
.floating {
  display: flex;
  justify-content: center;
  margin-top: -80px;
}

.floating-box {
  background: white;
  padding: 40px;
  width: 600px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE STRIP */
.image-strip {
  display: flex;
  gap: 10px;
  padding: 60px;
}

.image-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.image-strip img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.content {
  padding: 80px 60px;
}

.content-inner {
  max-width: 700px;
}

.content h2 {
  margin-bottom: 20px;
}

/* SIMPLE HERO */
.simple-hero {
  padding: 100px 60px;
}

/* CONTACT */
.contact-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-center {
  text-align: center;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  color: #777;
}

/* CONTACT FULL PAGE */

.contact-full {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f3ef;
}

.contact-wrapper {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.contact-title {
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.contact-sub {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

/* BIG BUTTON */

.contact-button {
  display: inline-block;
  padding: 22px 60px;
  font-size: 20px;
  text-decoration: none;
  color: white;
  background: black;
  border-radius: 60px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */

.contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ffffff33, transparent);
  opacity: 0;
  transition: 0.4s;
}

.contact-button:hover::before {
  opacity: 1;
}

/* SCALE + FLOAT */

.contact-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CLICK EFFECT */

.contact-button:active {
  transform: scale(0.97);
}