/* ================================
   GLOBAL STYLES
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #c8a96a;        /* Gold/Brown - same as Home Rise */
  --primary-dark: #b38f4a;
  --primary-light: #e5d3a3;
  --dark: #0f172a;            /* Dark blue */
  --dark-light: #1e293b;
  --dark-lighter: #334155;
  --light: #f8fafc;
  --gray: #94a3b8;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--dark-lighter);
  margin-top: -30px;
  margin-bottom: 50px;
}

/* ================================
   BUTTONS
================================ */
.btn-main {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-main:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-small {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
}

/* ================================
   LOADER
================================ */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-text {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: var(--dark);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #c8a96a; /* Change from #fff to gold */
  margin: 0;
}

.navbar nav a {
  color: #fff;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar nav a:hover {
  color: var(--primary);
}

.navbar nav a:hover::after {
  width: 100%;
}

/* ================================
   HERO SECTION - WITH MOBILE IMAGE
================================ */
.hero {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), 
              url('/assets/images/hero-app-bg.jpg') no-repeat center center;
  background-size: cover;
}

/* Mobile - use smaller image */
@media (max-width: 768px) {
  .hero {
    height: 450px;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), 
                url('/assets/images/hero-app-bg-mobile.jpg') no-repeat center center;
    background-size: cover;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero {
    height: 400px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
}
/* ================================
   FEATURED APPS SLIDER
================================ */
.featured-apps {
  background: linear-gradient(135deg, var(--dark), #1a2635);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.featured-apps .section-title {
  color: #fff;
}

.featured-apps .section-title::after {
  background: var(--primary);
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.featured-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-slider::-webkit-scrollbar {
  display: none;
}

.featured-slide {
  min-width: calc(33.333% - 30px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .featured-slide {
    min-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .featured-slide {
    min-width: calc(100% - 40px);
    scroll-snap-align: center;
  }
}

.featured-slide-inner {
  background: var(--dark-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 169, 106, 0.3);
}

.featured-slide-inner:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(200, 169, 106, 0.2);
  border-color: var(--primary);
}

.featured-slide .app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px auto 10px;
  border: 3px solid var(--primary);
}

.featured-slide .app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-slide .featured-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.featured-slide .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-slide-inner:hover .featured-img img {
  transform: scale(1.1);
}

.featured-slide .featured-content {
  padding: 25px 20px;
  text-align: center;
  background: var(--dark-light);
  flex: 1;
}

.featured-slide .badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-slide h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
}

.featured-slide p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.featured-slide .rating {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 15px;
}

/* ================================
   AMAZING BUTTONS FOR FEATURED APPS
================================ */
.featured-slide .app-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.featured-slide .store-badge {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.featured-slide .store-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.featured-slide .store-badge:hover::before {
  left: 100%;
}

.featured-slide .store-badge img {
  height: 45px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 0;
}

.featured-slide .store-badge:hover img {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 25px rgba(200, 169, 106, 0.4);
}

.featured-slide .btn-small {
  display: inline-block;
  background: linear-gradient(135deg, #c8a96a, #b38f4a);
  color: #0f172a;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(200, 169, 106, 0.3);
  position: relative;
  overflow: hidden;
  width: auto;
  min-width: 160px;
}

.featured-slide .btn-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.featured-slide .btn-small:hover {
  background: transparent;
  color: #c8a96a;
  border-color: #c8a96a;
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(200, 169, 106, 0.4);
}

.featured-slide .btn-small:hover::before {
  left: 100%;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
  width: 25px;
  border-radius: 20px;
}

/* Mobile Responsive for Buttons */
@media (max-width: 768px) {
  .featured-slide .store-badge img {
    height: 40px;
  }
  
  .featured-slide .btn-small {
    padding: 12px 30px;
    font-size: 14px;
    min-width: 140px;
  }
  
  .featured-slide .app-buttons {
    gap: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .featured-slide .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .featured-slide .store-badge {
    width: 100%;
    max-width: 200px;
  }
  
  .featured-slide .store-badge img {
    height: 45px;
    width: 100%;
    object-fit: contain;
  }
  
  .featured-slide .btn-small {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-slide .btn-small {
    padding: 12px 25px;
    font-size: 14px;
  }
}
/* ================================
   APPS GRID
================================ */
.apps-grid-section {
  background: var(--light);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }
}

.app-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(200, 169, 106, 0.15);
}

.app-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(270deg, var(--primary), #ffffff, var(--primary));
  background-size: 400% 400%;
  animation: borderFlow 6s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.app-card:hover::before {
  opacity: 1;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.app-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.app-card:hover::after {
  left: 100%;
}

.app-icon-large {
  width: 80px;
  height: 80px;
  margin: 20px auto 10px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.app-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-content {
  padding: 20px;
  text-align: center;
}

.app-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.app-content .category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.app-content .short-desc {
  color: var(--dark-lighter);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.app-content .rating {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 15px;
}

.app-content .rating span {
  color: var(--gray);
  font-size: 13px;
  margin-left: 5px;
}

.app-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 15px 0;
}

.app-btn {
  padding: 8px;
  border-radius: 25px;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.app-btn.playstore {
  background: #0f172a;
  color: #fff;
}

.app-btn.appstore {
  background: #000;
  color: #fff;
}

.app-btn.buy {
  background: var(--primary);
  color: var(--dark);
}

.app-btn.demo {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-details {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.view-details:hover {
  text-decoration: underline;
}

/* ================================
   SERVICES SECTION
================================ */
.services {
  background: var(--dark);
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--dark-light);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--dark-lighter);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(200, 169, 106, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--dark);
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ================================
   TESTIMONIALS
================================ */
.testimonials {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--dark-light);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(200, 169, 106, 0.1);
  font-family: serif;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.author-info p {
  font-size: 12px;
  color: var(--primary);
  margin: 0;
}

/* ================================
   CTA SECTION
================================ */
.cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 20px;
}

.cta h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
}

.cta p {
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 18px;
}

.cta .btn-main {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.cta .btn-main:hover {
  background: transparent;
  color: var(--dark);
}

/* ================================
   APP DETAILS PAGE
================================ */
.app-details {
  padding-top: 120px;
}

.app-header {
  background: var(--dark);
  color: #fff;
  padding: 60px 0;
  margin-bottom: 50px;
}

.app-header-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.app-header-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  overflow: hidden;
  border: 4px solid var(--primary);
}

.app-header-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-header-info h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.app-header-info .subtitle {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 20px;
}

.app-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.app-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-meta-item .label {
  color: var(--gray);
  font-size: 14px;
}

.app-meta-item .value {
  font-weight: 600;
  color: var(--primary);
}

.app-description {
  padding: 50px 0;
}

.app-description h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--dark);
}

.app-description p {
  color: var(--dark-lighter);
  line-height: 1.8;
  margin-bottom: 30px;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tech-badge {
  background: var(--dark-light);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
}

.app-screenshots {
  margin: 50px 0;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.screenshot {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.app-actions-large {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.app-actions-large .store-badge img {
  height: 50px;
  width: auto;
}

.btn-buy-large {
  background: var(--primary);
  color: var(--dark);
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-buy-large:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.3);
}

/* ================================
   CONTACT PAGE
================================ */
.contact-section {
  padding: 120px 0 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--dark-lighter);
  margin-bottom: 30px;
}

.contact-details {
  margin: 40px 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 20px;
}

.contact-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--dark-lighter);
  margin: 0;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.3);
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-col p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: var(--gray);
  font-size: 14px;
}

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* ================================
   ANIMATIONS
================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
  
  /* REMOVE this line: .navbar nav { display: none; } */
  
  .app-header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-nav {
    display: none;
  }
}

/* ================================
   APP BADGE
================================ */
.app-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c8a96a;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Page Links */
.contact-text-premium a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text-premium a:hover {
    color: #c8a96a;
    text-decoration: underline;
}

/* Make clickable cards have pointer cursor and hover effect */
.contact-item[onclick] {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item[onclick]:hover {
    transform: translateX(8px);
    background: #f1f5f9;
    box-shadow: 0 5px 15px rgba(200, 169, 106, 0.1);
}

/* Add a subtle indicator that it's clickable */
.contact-item[onclick]::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #c8a96a;
    font-size: 18px;
}

.contact-item[onclick]:hover::after {
    opacity: 1;
}