* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #111;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 40px;
    background: #e9e9e9;
    padding: 12px 28px;
    border-radius: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.menu-btn {
    border: 1px solid #ccc;
    padding: 10px 22px;
    border-radius: 40px;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0 100px 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.contact-link span.dot {
    width: 6px;
    height: 6px;
    background: #ff4d2d;
    border-radius: 50%;
    display: inline-block;
}
.hero-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-size: 96px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #111;
}

/* Paragraph styled like screenshot */
.hero-text {
  max-width: 420px;
  margin-top: 40px;
  margin-left: auto;   /* pushes paragraph to right */
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

/* Triangle container */
.triangle-wrap {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 45px;
  margin-left: 10px;
  transform: translateY(8px);
}

/* Black big triangle */
.triangle-black {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 55px solid #111;
  border-top: 45px solid transparent;
}

/* Small orange triangle */
.triangle-orange {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #ff4d2d;
  border-top: 20px solid transparent;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    font-size: 14px;
    color: #666;
}

.scroll {
    display: flex;
    align-items: center;
    gap: 8px;
}

.arrow-down {
    font-size: 18px;
}

.map-link {
    text-decoration: none;
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
/* Outer Section */
.contact-section {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

/* Large Rounded Container */
.contact-wrapper {
  width: 92%;
  max-width: 1500px;
  background: #ededed;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  gap: 80px;
}

/* LEFT MAP */
.map-area {
  flex: 1;
}

.map-area iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 12px;
}

/* RIGHT FORM */
.form-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-area h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Form grid */
.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input {
  height: 50px;
  padding: 0 15px;
  border-radius: 8px;
  border: 2px solid #ff4d2d;
  background: #f7f7f7;
  font-size: 14px;
  outline: none;
}

/* Website full width */
.full-width {
  width: 100%;
  margin-bottom: 25px;
}

/* Textarea */
textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ff4d2d;
  background: #f7f7f7;
  resize: none;
  font-size: 14px;
  outline: none;
  margin-bottom: 35px;
}

/* Button */
.submit-btn {
  width: 100%;
  height: 60px;
  background: #ff4d2d;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #e84324;
}

/* Responsive */
@media(max-width: 1100px){
  .contact-wrapper {
    flex-direction: column;
  }

  .map-area iframe {
    height: 400px;
  }
}
/* Section */
.contact-note {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}

/* Subtle grid pattern */
.contact-note::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 400px;
  background-image: 
    linear-gradient(#dcdcdc 1px, transparent 1px),
    linear-gradient(90deg, #dcdcdc 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  transform: rotate(-2deg);
}

/* Text container */
.note-wrapper {
  position: relative;
  max-width: 900px;
  text-align: center;
}

/* Text styling */
.note-wrapper p {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.5px;
}
.locations {
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.locations-wrapper {
  width: 90%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* Card */
.location-card {
  background: #e9e9e9;
  border-radius: 20px;
  padding: 30px;
  width: 32%;
  text-align: center;
  transition: transform 0.4s ease;
}

/* Image container */
.image-wrap {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 25px;
}

.image-wrap img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Typography */
.location-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.location-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* Button */
.location-card button {
  margin-top: 25px;
  padding: 14px 35px;
  border-radius: 40px;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.location-card.active button {
  background: #ff4d2d;
  color: white;
  border: none;
}

.location-card button:hover {
  transform: scale(1.05);
}

/* Slight center emphasis */
.location-card.active {
  transform: translateY(20px);
}

@media(max-width: 1000px){
  .locations-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .location-card {
    width: 100%;
    max-width: 500px;
  }
}
/* Footer Section */
.footer{
  padding:120px 8% 40px;
  background:linear-gradient(to right,#0f0f12,#121218);
  position:relative;
  overflow:hidden;
}

/* Top Grid */
.footer-top{
  display:flex;
  justify-content:space-between;
  gap:80px;
  margin-bottom:120px;
}

/* LEFT LARGE TEXT */
.footer-left h1{
  font-size:72px;
  font-weight:800;
  line-height:1.05;
  max-width:450px;
  color: #ddd;
}

/* Social Icons */
.socials{
  margin-top:30px;
  display:flex;
  gap:15px;
  color: #ddd;
}

.socials div{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#1c1c22;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  cursor:pointer;
  transition:0.3s;
}

.socials div:hover{
  background:#ff4d4d;
}

/* Quick Links */
.footer-links h4,
.footer-contact h4{
  font-size:16px;
  margin-bottom:20px;
  position:relative;
  color: #ddd;
}

.footer-links h4::before,
.footer-contact h4::before{
  content:"•";
  color:#ff4d4d;
  margin-right:8px;
}

/* Pills */
.link-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  max-width:350px;
}

.link-pills a{
  padding:10px 18px;
  border-radius:40px;
  background:#e6e6e6;
  color:#000;
  font-size:13px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.link-pills a:hover{
  background:#ff4d4d;
  color:#fff;
}

/* Contact */
.footer-contact p{
  font-size:14px;
  color:#cfcfcf;
  margin-bottom:12px;
  max-width:250px;
}

/* Huge Background Text */
.footer-big{
  font-size:200px;
  font-weight:900;
  color:#ff4d4d;
  line-height:1;
  letter-spacing:-5px;
  margin-bottom:20px;
}

/* Bottom Bar */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:#bbb;
}

.footer-bottom a{
  color:#bbb;
  text-decoration:none;
  margin-left:20px;
}

.footer-bottom a:hover{
  color:#fff;
}

/* Scroll To Top */
.scroll-top{
  position:fixed;
  right:25px;
  bottom:25px;
  width:45px;
  height:45px;
  border-radius:50%;
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width:1100px){
  .footer-top{
    flex-direction:column;
  }
  .footer-big{
    font-size:120px;
  }
}

@media(max-width:700px){
  .footer-left h1{
    font-size:42px;
  }
  .footer-big{
    font-size:70px;
  }
}