/* LINE Integration Page Styles */

/* Colors specific to this page based on the design */
:root {
  --line-teal: #40b4c8; /* Approximate Turquoise/Teal from image */
  --line-teal-dark: #2a92a3;
  --line-pink: #f29b9b; /* Approximate Pink from image */
  --line-pink-text: #e07070;
  --line-bg-light: #f9f9f9;
}

/* Hero Section */
.line-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 80px; /* Header offset */
  background: #fff;
}

.line-hero-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  min-height: 500px;
}

/* Teal Box Background for Text */
.line-hero-text-box {
  background: var(--line-teal);
  color: #fff;
  padding: 60px 80px 60px 40px;
  width: 55%;
  position: relative;
  z-index: 2;
  border-radius: 0 50px 50px 0; /* Rounded right side */
}

/* Decorative elements or gradient overlay could go here */
.line-hero-text-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw; /* Extend to left edge */
  width: 100vw;
  height: 100%;
  background: var(--line-teal);
  z-index: -1;
}

.line-hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  font-style: italic; /* "LINE" looks slightly italic in image */
  letter-spacing: 0.05em;
}

.line-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.line-hero-image-container {
  position: absolute;
  right: -50px;
  top: 50px;
  width: 55%;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.line-hero-image-container img {
  width: 100%;
  max-width: 700px; /* Adjust based on image */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Intro Section */
.line-intro {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.line-intro-title {
  font-size: 2.5rem;
  color: var(--line-pink-text);
  font-family: var(--font-serif);
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid var(--line-pink-text); /* Underline style */
  padding-bottom: 5px;
}

.line-intro-subtitle {
  color: var(--line-pink-text);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.line-intro-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 500;
}

/* Feature Grid */
.line-features {
  padding: 60px 20px 100px;
  background: linear-gradient(to bottom, #fff 0%, #f4f4f4 100%);
}

.line-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.line-feature-card {
  background: #fff;
  border-radius: var(--radius-md); /* 16px */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.line-feature-card:hover {
  transform: translateY(-5px);
}

.line-feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #eee;
}

.line-feature-header {
  background: var(--line-teal);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.line-feature-body {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-feature-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.6;
}

.line-feature-arrow {
  color: #fdbb2d; /* Or similar accent */
  font-size: 2rem;
  margin: 10px 0;
  font-weight: bold;
}

.line-feature-highlight {
  color: var(--line-pink-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

/* Contact Footer Section */
.line-contact-section {
  background: #007691; /* Dark Teal */
  color: #fff;
  padding: 40px 20px;
  position: relative;
}

.line-contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.line-contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.line-contact-phone {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.line-contact-address {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.9;
}

.line-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line-contact-links a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.line-contact-qr {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.line-contact-qr img {
  width: 100px;
  height: 100px;
}

.line-contact-form-label {
  position: absolute;
  top: -15px;
  right: 15%;
  background: #007691;
  padding: 5px 15px;
  font-size: 0.8rem;
  border: 1px solid #fff;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .line-hero-inner {
    flex-direction: column;
    padding-bottom: 300px; /* Space for image */
  }

  .line-hero-text-box {
    width: 100%;
    border-radius: 0 0 50px 50px;
    text-align: center;
    padding: 60px 20px;
  }
  
  .line-hero-text-box::before {
    left: 0;
    width: 100%;
  }

  .line-hero-image-container {
    width: 100%;
    right: 0;
    top: auto;
    bottom: -50px;
    position: relative;
    margin-top: -50px;
  }

  .line-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .line-contact-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .line-contact-phone {
    justify-content: center;
    font-size: 2.2rem;
  }
}
