@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --theme-main: #a66005;
  --theme-main2: #6a1d5e;
  --theme-dark: #0b090c;
  --text-dark: #202020;
  --text-body: #545454;
  --bg-soft: #f8f9fa;
  --bg-cyan: #f4f8ff;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--theme-main);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--theme-main2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > [class*="col-"] {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
}

/* Spark particles */
.spark-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--theme-main);
  border-radius: 50%;
  opacity: 0;
  animation: sparkFloat 4s ease-in-out infinite;
  box-shadow: 0 0 6px var(--theme-main);
}

@keyframes sparkFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  transition: var(--transition);
}

.header.scrolled .logo {
  color: var(--text-dark);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.header.scrolled .nav a {
  color: var(--text-dark);
}

.nav a:hover,
.nav a.nav-cta {
  color: var(--theme-main);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-main);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-call-header:hover {
  background: var(--theme-main2);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166, 96, 5, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger.active span {
  background: var(--text-dark);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-slide {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 9, 12, 0.75) 0%, rgba(106, 29, 94, 0.45) 50%, rgba(11, 9, 12, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(166, 96, 5, 0.9);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(166, 96, 5, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(166, 96, 5, 0); }
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.hero-location {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 24px;
}

.hero-location i {
  color: var(--theme-main);
  margin-right: 6px;
}

.hero-price-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-price-box .label {
  display: block;
  color: var(--theme-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-price-box .amount {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.hero-highlights li:last-child {
  border-bottom: none;
}

.hero-highlights i {
  color: var(--theme-main);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-pagination {
  bottom: 30px !important;
  z-index: 4;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--theme-main);
  width: 30px;
  border-radius: 6px;
}

.hero-prev, .hero-next {
  color: var(--white) !important;
  z-index: 4;
  width: 48px;
  height: 48px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(11, 9, 12, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-prev:hover, .hero-next:hover,
.hero-prev:focus-visible, .hero-next:focus-visible {
  background: var(--theme-main);
  transform: scale(1.08);
}

.hero-prev:focus-visible, .hero-next:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.hero-prev::after, .hero-next::after {
  font-size: 24px !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--theme-main);
  color: var(--white);
  border-color: var(--theme-main);
}

.btn-primary:hover {
  background: var(--theme-main2);
  border-color: var(--theme-main2);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(166, 96, 5, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--theme-main);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--theme-main);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-3px);
}

.btn-green-cta {
  background: #25d366;
  color: var(--white) !important;
  border-color: #25d366;
}

.btn-green-cta:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.btn-block {
  width: 100%;
}

/* Stats bar */
.stats-bar {
  background: var(--theme-main);
  padding: 30px 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-title .light {
  font-weight: 300;
}

.text-white { color: var(--white) !important; }

.divider {
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-main), var(--theme-main2));
  margin: 0 auto;
  border-radius: 2px;
}

.divider.white {
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
}

.section-desc {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1rem;
  opacity: 0.85;
}

.sub-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Overview */
.overview {
  background: var(--bg-soft);
}

.key-details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 4px solid var(--theme-main);
}

.key-details h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.key-details li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.key-details li:last-child {
  border-bottom: none;
}

.content-block h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 16px;
}

/* Price section */
.price-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--theme-dark);
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 9, 12, 0.82);
  z-index: 0;
}

.price-section .container {
  position: relative;
  z-index: 1;
}

.pricing-table {
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
}

.pricing-table th {
  background: rgba(166, 96, 5, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.pricing-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

.price-btn {
  display: inline-block;
  background: var(--theme-main);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.price-btn:hover {
  background: var(--white);
  color: var(--theme-main) !important;
  transform: scale(1.05);
}

.parking-info {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.parking-info i {
  color: var(--theme-main);
  margin-right: 8px;
}

.price-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.price-card figure {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.price-card img {
  width: 100%;
  object-fit: contain;
  background: var(--white);
}

/* Floor plans */
.plan-box {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.plan-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}

.plan-box .btn {
  position: relative;
  z-index: 1;
}

.floor-swiper {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Location */
.location-section {
  background: var(--bg-cyan);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.connectivity-grid {
  margin-top: 30px;
}

.connect-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  height: calc(100% - 20px);
  transition: var(--transition);
}

.connect-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.connect-box h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.connect-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
}

.connect-box i {
  color: var(--theme-main);
  margin-top: 3px;
}

/* Amenities */
.amenities-section {
  position: relative;
  background-size: cover;
  background-position: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.amenity-card.hidden-amenity {
  display: none;
}

.amenities-grid.show-all .hidden-amenity {
  display: block;
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(166, 96, 5, 0.5);
}

.amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

/* Specs */
.specs-section {
  background: var(--bg-soft);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--theme-main);
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.spec-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.spec-card h3 i {
  color: var(--theme-main);
  margin-right: 8px;
}

.spec-card li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.9rem;
}

.spec-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--theme-main);
  font-weight: 700;
}

/* Gallery */
.gallery-swiper {
  padding: 10px 50px 40px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-prev, .gallery-next,
.floor-prev, .floor-next {
  color: var(--theme-main) !important;
}

/* Developer */
.developer-section {
  padding: 0;
  background: var(--bg-soft);
}

.developer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.developer-image {
  overflow: hidden;
}

.developer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

.developer-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.developer-content .section-title {
  text-align: left;
}

.developer-content .divider {
  margin: 0 0 24px;
}

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-main), var(--theme-main2));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(166, 96, 5, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--theme-main);
}

.faq-question i {
  color: var(--theme-main);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--theme-main2) 0%, var(--theme-main) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-buttons .btn-green-cta:hover {
  background: #1da851;
  color: var(--white) !important;
}

/* Footer */
.footer {
  background: var(--theme-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--theme-main);
}

.footer-col ul li {
  padding: 4px 0;
}

.footer-col ul a {
  font-size: 0.9rem;
}

.footer-col i {
  color: var(--theme-main);
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: var(--theme-main);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Privacy policy page */
.privacy-page {
  padding-top: 100px;
  padding-bottom: 70px;
  background: var(--bg-soft);
  min-height: 70vh;
}

.privacy-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.privacy-content h2 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 28px 0 12px;
  font-weight: 600;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-updated {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.developer-content .section-cta {
  justify-content: flex-start;
  margin-top: 28px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  animation: floatBounce 3s ease-in-out infinite;
}

.float-btn:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.float-call {
  background: var(--theme-main);
}

.float-whatsapp {
  background: #25d366;
}

.float-btn i {
  font-size: 1.3rem;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-right {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .developer-wrap {
    grid-template-columns: 1fr;
  }

  .developer-image img {
    min-height: 300px;
  }

  .developer-content {
    padding: 40px 24px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 24px 24px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav a {
    color: var(--text-dark) !important;
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .btn-call-header {
    display: none;
  }

  .gallery-swiper {
    padding: 10px 40px 40px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    min-height: 550px;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .plan-box {
    height: 280px;
  }

  .float-btn span {
    display: none;
  }

  .float-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}
