/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e94560;
}

.nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #e94560;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 2rem;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, #ffe5ec, #fff);
  
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #222;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  background: #e94560;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d1344f;
}

.hero-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Features */
.features {
  padding: 5rem 4rem;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #222;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 2rem;
  color: #e94560;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
  color: #222;
}

.feature-card p {
  color: #555;
}

/* Owners & Tenants */
.owners, .tenants {
  padding: 5rem 4rem;
}

.owners h2, .tenants h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #222;
}

.owner-grid, .tenant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: center;
}

.owner-text ul, .tenant-text ul {
  list-style: none;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.owner-img img, .tenant-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  padding: 6rem 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item i {
  font-size: 1.6rem;
  color: #e94560;
}

.info-item h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 0.4rem;
}

.info-item p {
  color: #555;
}

.info-item a {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.4rem;
  color: #555;
  background: #f1f1f1;
  padding: 0.7rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e94560;
  color: #fff;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background: #fff;
  color: #777;
  border-top: 1px solid #eee;
}

.app-download {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.download-btn img {
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.download-btn img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

