/* style.css */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --border-radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.tagline {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  max-width: fit-content;
}

.btn-whatsapp:hover {
  background-color: #0da271;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--light);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--light);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.gallery p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.rating {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author h4 {
  margin-bottom: 0.2rem;
}

.author p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--gray);
  font-style: normal;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.availability {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.highlight {
  font-weight: 700;
  color: #fef3c7;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-details i {
  width: 24px;
  text-align: center;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
  width: 100%;
  max-width: 350px;
}

.secure-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #334155;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #334155;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container,
  .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .description {
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  
  .cta-container {
    align-items: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .contact-details {
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  
  .btn-whatsapp {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .features,
  .gallery,
  .testimonials,
  .contact {
    padding: 3rem 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section Styling */
.faq {
  padding: 3rem 1rem;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

/* Accordion */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.faq-question {
  background: #fff;
  width: 100%;
  text-align: left;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.faq-answer p {
  margin: 1rem 0;
  color: #555;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for 2–3 lines */
  padding: 0 1rem 1rem 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #007bff;
}

/* Area Info */
.area-info {
  padding: 3rem 1rem;
  background: #fff;
}

.area-info h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.area-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.area-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 0.8rem;
}

.area-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Smaller Gallery for Room Detail Pages */
.room-details .gallery-grid,
.gallery.room-gallery {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.room-details .gallery-item img,
.gallery.room-gallery img {
  border-radius: 6px;
  object-fit: cover;
}

/* --- UTILITIES FOR TOGGLING VIEWS --- */
/* We use !important to ensure no other display rules override this */
.mobile-only {
  display: flex !important;
}
.desktop-only {
  display: none !important;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
  /* We restore grid layout for desktop */
  .desktop-only {
    display: grid !important;
  }
}

/* --- ROOM DETAIL HEADER --- */
.details-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.per-month {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}

/* --- MOBILE GALLERY (NETFLIX SCROLL) --- */
.room-gallery-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
}

.room-gallery-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

.gallery-card {
  flex: 0 0 85%; /* Show part of next image to encourage scroll */
  max-width: 300px;
  aspect-ratio: 3/4;
  scroll-snap-align: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- DESKTOP GALLERY (BENTO GRID) --- */
.room-gallery {
  width: 100%;
  gap: 12px;
  margin-bottom: 3rem;
  /* Default Row Height ensures vertical images don't stretch the page */
  grid-auto-rows: 250px; 
}

.gallery-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  cursor: pointer;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crucial for vertical images in grid */
  transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.03);
}

/* LAYOUT 1: Single Image */
.room-gallery.layout-1 {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-inline: auto;
  grid-auto-rows: 500px;
}

/* LAYOUT 2: Two Images (Side by Side) */
.room-gallery.layout-2 {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 400px;
}

/* LAYOUT 3+: The "Hero" Layout */
/* This creates a 4-column grid. */
.room-gallery.layout-many {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* height: 500px;  <-- REMOVED THIS to allow infinite scrolling */
  grid-auto-rows: 240px; /* Height of the small squares */
  gap: 12px;
}

/* The First Image (Hero) takes the left half (2 cols) and top (2 rows) */
.room-gallery.layout-many .item-0 {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%; /* Ensures it fills the 2-row height */
}

/* The rest fill the remaining slots automatically */
.room-gallery.layout-many .gallery-img-wrapper:not(.item-0) {
  grid-column: span 1;
  grid-row: span 1;
}

/* Handling exactly 3 images to avoid gaps */
.room-gallery.layout-many:has(.gallery-img-wrapper:nth-child(3):last-child) .gallery-img-wrapper:not(.item-0) {
  grid-column: span 2; /* Make the 2 small ones wider if there are only 3 total */
  grid-row: span 1;
}

.room-gallery.layout-many .gallery-img-wrapper:last-child:nth-child(odd) {
   /* This is a bit complex to calculate generally, usually better to leave the gap 
      or ensure you upload even numbers of photos. */
}

/* --- DESCRIPTION & META --- */
.details-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.room-meta {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 1.5rem;
  background: var(--light);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.room-meta li {
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-meta i {
    color: var(--primary);
}

.description-box h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.description-box p {
    color: var(--gray);
    margin-bottom: 2rem;
    white-space: pre-line;
}

.btn-whatsapp.full-width {
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem;
}

/* Adjustments for specific counts if necessary */
@media (max-width: 900px) and (min-width: 768px) {
    .room-gallery.layout-many {
        height: 400px; /* Slightly shorter on tablets */
    }
}

/* --- MODERN PROPERTY CARDS --- */

.room-list-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.room-grid-cards {
  display: grid;
  /* Creates a responsive grid that fits as many 300px cards as possible */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Image Area */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px; /* Fixed height makes uniform cards */
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops vertical images to fit the landscape slot */
  transition: transform 0.5s ease;
}

.property-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

/* Price Badge */
.price-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.price-badge small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

/* Content Area */
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.card-title a:hover {
  color: var(--primary);
}

.card-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.card-specs i {
  color: var(--primary);
  margin-right: 4px;
}

.card-summary {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Footer Area inside card */
.card-footer {
  margin-top: auto; /* Pushes footer to bottom */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amenity-pills {
  display: flex;
  gap: 5px;
}

.amenity-pills span {
  background: #f1f5f9;
  color: var(--gray);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}

.btn-card-action {
  background-color: transparent;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-card-action:hover {
  background-color: var(--primary);
  color: white;
}

/* --- UNAVAILABLE / RENTED STATES --- */

/* 1. The Card Styles */
.property-card.unavailable {
  opacity: 0.8;
}

.property-card.unavailable .card-img-wrapper img {
  filter: grayscale(100%); /* Makes the photo black & white */
}

/* The "RENTED" Overlay Badge */
.rented-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Darken the image */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.rented-badge {
  background-color: #ef4444; /* Red color */
  color: white;
  font-weight: 800;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  transform: rotate(-5deg); /* Jaunty angle */
  border: 2px solid white;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* 2. The Detail Page Button Styles */
.btn-disabled {
  background-color: var(--gray);
  color: white;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none; /* Prevents clicking */
  display: inline-flex; /* Match flex layout of btn-whatsapp */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  width: 100%;
}

/* --- 5TH IMAGE OVERLAY --- */
.gallery-img-wrapper {
    position: relative; /* Ensure overlay sits on top */
}

.more-photos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darken image */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.gallery-img-wrapper:hover .more-photos-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* --- LIGHTBOX (FULLSCREEN MODAL) --- */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95); /* Deep black background */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-counter {
    color: #cbd5e1;
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.close-btn:hover {
    color: var(--primary);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.1);
}

.next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 20px;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}