:root {
  --primary: #1e3a5f;
  --accent: #e6c7a1;
  --neutral: #f5f1eb;
  --dark: #0f172a;
  --text: #334155;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text);
  margin-top: 15px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto;
  border-radius: 2px;
}

.bg-light {
  background-color: var(--neutral);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px var(--shadow-lg);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.brand-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231e3a5f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.5), rgba(15, 23, 42, 0.4)),
    url('./ACCC-BG.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.20), rgba(15, 23, 42, 0.30));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.4);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator i {
  width: 32px;
  height: 32px;
  color: var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.about-card h3 {
  color: var(--primary);
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(30, 58, 95, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(30, 58, 95, 0.1);
  transform: translateX(10px);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.developer-card {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(230, 199, 161, 0.1));
}

.large-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.text-primary {
  color: var(--primary);
}

.feature-card {
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  position: relative;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  opacity: 0.3;
  transform: scale(1.1);
  z-index: -1;
}

.feature-icon-large {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.ppp-explanation {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(230, 199, 161, 0.05));
}

.ppp-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  display: inline-block;
}

.advantage-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.advantage-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.advantage-card h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.advantage-card p {
  color: var(--text);
  margin: 0;
  font-size: 0.95rem;
}

.design-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.design-image-wrapper img {
  transition: transform 0.5s ease;
}

.design-image-wrapper:hover img {
  transform: scale(1.05);
}

.color-palette {
  margin-top: 2rem;
}

.color-swatch {
  text-align: center;
}

.swatch {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.swatch:hover {
  transform: scale(1.1);
}

.experience-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.experience-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.experience-card h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-image {
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .carousel-image {
    height: 300px;
  }
}

.carousel-caption {
  background: rgba(30, 58, 95, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 2rem;
  bottom: 2rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 2rem;
}

.location-list {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
}

.location-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--neutral);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(30, 58, 95, 0.05);
  transform: translateX(10px);
}

.location-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.location-item h5 {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.pricing-card {
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10;
}

.pricing-icon {
  text-align: center;
}

.pricing-icon-large {
  width: 56px;
  height: 56px;
  color: var(--primary);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin: 1.5rem 0;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-price .unit {
  font-size: 1rem;
  color: var(--text);
}

.pricing-price .coming-soon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text);
}

.pricing-features li i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary), var(--dark)),
    url('https://images.pexels.com/photos/462024/pexels-photo-462024.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(15, 23, 42, 0.85));
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 24px;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand .brand-text {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--white);
}

.social-link i {
  width: 20px;
  height: 20px;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.newsletter-form .input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  flex: 1;
}

.newsletter-form .btn {
  padding: 0.875rem 1.5rem;
}

.newsletter-form .btn i {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.back-to-top.show {
  display: flex;
}

.back-to-top i {
  width: 24px;
  height: 24px;
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-float i {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 4px 20px var(--shadow);
  }

  .nav-link::after {
    display: none;
  }

  .btn-cta {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* ===== PRICING UI ENHANCEMENT ===== */

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

/* FEATURED CARD */
.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(30, 58, 95, 0.2);
}

/* BADGE FIX */
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* SUB TEXT */
.pricing-sub {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 10px;
}

.pricing-sub.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* PRICE IMPROVEMENT */
.pricing-price .amount {
  font-size: 2.6rem;
}

/* FEATURES */
.pricing-features li {
  border-bottom: 1px dashed var(--border);
  padding: 8px 0;
}

/* BUTTON FIX */
.pricing-card .btn {
  border-radius: 50px;
  font-weight: 600;
}

/* INLINE ICON + TEXT */

.roi-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.roi-inline h3 {
  font-size: 22px;
  font-weight: 700;
}

.roi-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
}


/* INVESTMENT SECTION FIX */

.investment-point i {
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-top: 3px;
}

.investment-point span {
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .investment-point {
    justify-content: center;
    text-align: center;
  }
}

/* FAQ PREMIUM STYLE */

.custom-faq .accordion-item {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.custom-faq .accordion-button {
  font-weight: 600;
  background: transparent;
  box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
  background: rgba(0,0,0,0.03);
  color: var(--primary);
}

.custom-faq .accordion-body {
  font-size: 15px;
  line-height: 1.6;
}

/* FIX BUTTON SIZE + STYLE */

.cta-btn-fixed {
  width: auto;              /* NOT full width */
  min-width: 220px;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

/* CENTER CONTENT */
.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ICON FIX */
.btn-icon {
  width: 18px;
  height: 18px;
}

/* HOVER */
.cta-btn-fixed:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .cta-btn-fixed {
    width: 100%;   /* full width only on mobile */
  }
}


/* FLOATING CALL BUTTON */

.call-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* ICON */
.call-fab i {
  width: 22px;
  height: 22px;
}

/* HOVER */
.call-fab:hover {
  transform: scale(1.1);
  background: var(--accent);
}

/* MOBILE SIDE PADDING FIX */

@media (max-width: 768px) {

  /* Apply to all sections EXCEPT first */
  #about,
  #features,
  #advantages,
  #design,
  #experience,
  #investment-opportunity,
  #floor-plan,
  #location,
  #project,
  #project-compliance,
  #commercial-property-investment,
  #faq,
  #commercial-property,
  #contact {
    padding-left: 15px;
    padding-right: 15px;
  }

}

/* LOGO FIX */

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* NAVBAR HEIGHT FIX */
.navbar {
  padding: 10px 0;
}

/* MOBILE LOGO */
@media (max-width: 768px) {
  .logo-img {
    height: 80px;
  }
}