/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #E8781B;
  --orange-light: #F0923E;
  --orange-dark: #D06A12;
  --navy: #1B2A6B;
  --dark-gray: #2C2C2C;
  --medium-gray: #3A3A3A;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-gray: #666666;
  --card-border: #cccccc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-gray);
  background: none;
  border: none;
  margin-right: 10px;
  line-height: 1;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-logo img {
  height: 55px;
  width: auto;
}

/* ===== SIDEBAR NAV ===== */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--orange);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 80px 0 30px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
}

.sidebar-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.sidebar-nav .has-dropdown::after {
  content: '▼';
  font-size: 12px;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.1);
}

.dropdown-content.open {
  display: flex;
}

.dropdown-content a {
  font-size: 15px;
  padding: 12px 30px 12px 50px;
  font-weight: 400;
}

/* ===== FLOATING SOCIAL SIDEBAR ===== */
.social-sidebar {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.social-fb {
  background: #1877F2;
}

.social-li {
  background: #0A66C2;
}

.social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-yt {
  background: #FF0000;
}

.social-wa {
  background: #25D366;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 85vw;
  max-height: 600px;
}

.hero-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider .slide {
  min-width: 100%;
  height: 100%;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
  border-color: var(--white);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 45px 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-underline {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 15px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ===== SERVICE CARDS (Homepage) ===== */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-card .learn-more {
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
}

.service-card .learn-more:hover {
  text-decoration: underline;
}

/* ===== WHY CHOOSE US / STATS ===== */
.stats-section {
  padding: 45px 20px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.stat-card .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.stat-card .stat-desc {
  font-size: 14px;
  color: var(--text-gray);
}

/* ===== CHANNEL PARTNERS ===== */
.partners-section {
  padding: 40px 20px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== TESTIMONIALS (Modern) ===== */
.testimonials-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #FFF8F2 0%, #FFF0E5 100%);
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 30px 25px;
  box-sizing: border-box;
}

.testimonial-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-inner .quote-icon {
  font-size: 40px;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-inner .stars {
  color: #FFC107;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-inner .testimonial-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-author-info .client-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.testimonial-author-info .client-role {
  font-size: 13px;
  color: var(--text-gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dots .t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dots .t-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
  padding: 30px 20px 15px;
  text-align: center;
}

.page-hero h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
}

.page-hero-img {
  margin: 20px 15px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 250px;
}

.page-hero-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== SUB-PAGE SERVICE CARDS (stylish) ===== */
.detail-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 15px 20px;
}

.detail-card {
  background: var(--white);
  border: none;
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  padding: 28px 25px;
  margin: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 120, 27, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.detail-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.detail-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(232, 120, 27, 0.25);
}

.detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.detail-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== REAL ESTATE - INTRO ===== */
.re-intro {
  padding: 30px 20px;
  text-align: center;
}

.re-intro p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== FLATS & APARTMENTS ===== */
.flats-section {
  padding: 20px;
}

.flats-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.flats-header .icons {
  font-size: 24px;
  color: var(--orange);
}

.flats-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.flats-section>p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

.flat-type {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 18px;
  border-left: 4px solid var(--orange);
}

.flat-type h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flat-type h3 .check {
  color: #2ecc71;
  font-size: 22px;
}

.flat-type .flat-desc {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 12px;
}

.flat-type ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flat-type ul li {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.flat-type ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.flat-note {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-top: 15px;
  padding: 0 5px;
}

/* ===== COMMERCIAL SPACES ===== */
.commercial-types ul {
  margin-top: 10px;
}

.commercial-types ul li {
  margin-bottom: 12px;
}

.commercial-types ul li strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}

.commercial-types ul li .check-green {
  color: #2ecc71;
  margin-right: 5px;
}

.commercial-types ul li span {
  font-size: 14px;
  color: var(--text-gray);
  display: block;
  padding-left: 25px;
}

/* ===== MODERN FOOTER ===== */
.modern-footer {
  background: var(--dark-gray);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 50px 25px 30px;
}

/* Footer Form Column */
.footer-form-col {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-form-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--white);
}

.footer-form-col .footer-form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
}

.footer-form textarea {
  height: 100px;
  resize: vertical;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form .footer-submit-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.footer-form .footer-submit-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232, 120, 27, 0.4);
}

/* Footer Info Column */
.footer-info-col h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-about-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-info-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--orange);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item .fci-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .fci-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-contact-item .fci-text strong {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  font-weight: 500;
}

/* Footer Social Icons */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social-icon:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  padding: 18px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
  color: var(--orange);
}

/* ===== ABOUT US PAGE ===== */
.values-section {
  padding: 30px 20px;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
}

.value-card .value-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== OUR STORY ===== */
.story-section {
  padding: 40px 20px;
}

.story-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-section .story-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.story-section .story-author {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.story-stats-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.story-stats-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 15px;
}

.story-stat {
  text-align: center;
  padding: 15px 10px;
}

.story-stat .ss-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
}

.story-stat .ss-label {
  font-size: 14px;
  color: var(--text-gray);
}

/* ===== INVESTMENT PAGE ===== */
.investment-hero-img {
  margin: 15px;
  border-radius: 16px;
  overflow: hidden;
}

.investment-hero-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== MUSIC PAGE ===== */
.music-hero-img {
  margin: 15px;
  border-radius: 16px;
  overflow: hidden;
}

.music-hero-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ===== CONTACT PAGE GET IN TOUCH ===== */
.contact-page-form-section {
  background: var(--dark-gray);
  padding: 50px 20px 40px;
  color: var(--white);
}

.contact-page-form-section .section-title {
  color: var(--white);
}

.contact-page-form {
  margin-top: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: var(--orange);
}

.contact-page-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-page-form .submit-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 13px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.contact-page-form .submit-btn:hover {
  background: var(--orange-light);
  box-shadow: 0 4px 15px rgba(232, 120, 27, 0.4);
}

/* ===== RESPONSIVE (Tablet) ===== */
@media (min-width: 768px) {
  .header {
    padding: 15px 40px;
  }

  .hero-slider {
    height: 50vw;
    max-height: 500px;
    margin: 0 30px;
    border-radius: 18px;
  }

  .section {
    padding: 60px 40px;
  }

  .service-cards {
    flex-direction: row;
    justify-content: center;
  }

  .service-card {
    flex: 1;
    max-width: 340px;
  }

  .stats-section {
    padding: 60px 40px;
  }

  .stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .value-card {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
  }

  .detail-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 0 40px 22px;
    max-width: 900px;
    margin: 0 auto;
  }

  .story-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }

  /* Footer tablet */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 40px 35px;
  }

  .footer-form-col {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 40px;
  }

  .footer-form .footer-submit-btn {
    width: auto;
  }

  .social-sidebar {
    right: 16px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .testimonials-section {
    padding: 60px 50px;
  }

  .investment-hero-img,
  .music-hero-img {
    margin: 15px 30px;
  }

  .page-hero-img {
    margin: 20px 30px;
  }

  .re-intro {
    padding: 30px 40px;
  }

  .flats-section {
    padding: 20px 40px;
  }
}

/* ===== RESPONSIVE (Desktop) ===== */
@media (min-width: 1024px) {
  .hero-slider {
    height: 40vw;
    max-height: 550px;
    margin: 0 60px;
    border-radius: 22px;
  }

  .section {
    padding: 70px 60px;
  }

  .detail-cards-grid {
    max-width: 1000px;
    gap: 24px;
    padding: 0 60px 24px;
  }

  .footer-top {
    padding: 55px 60px 40px;
    gap: 60px;
  }

  .testimonials-section {
    padding: 70px 80px;
  }

  .testimonial-inner {
    padding: 35px 30px;
  }

  .social-sidebar {
    right: 20px;
  }

  .investment-hero-img,
  .music-hero-img {
    margin: 20px 60px;
    border-radius: 20px;
  }

  .page-hero-img {
    margin: 20px 60px;
    border-radius: 20px;
  }

  .investment-hero-img img,
  .music-hero-img img {
    height: 300px;
  }

  .re-intro {
    padding: 30px 80px;
    max-width: 800px;
    margin: 0 auto;
  }

  .flats-section {
    padding: 25px 60px;
    max-width: 800px;
    margin: 0 auto;
  }

  .story-section {
    padding: 40px 60px;
    max-width: 850px;
    margin: 0 auto;
  }

  .values-section {
    padding: 40px 60px;
  }

  .contact-page-form-section {
    padding: 50px 60px;
  }
}

@media (min-width: 1280px) {
  .hero-slider {
    height: 35vw;
    max-height: 550px;
    margin: 0 80px;
    border-radius: 24px;
  }

  .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px 20px 40px;
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-section {
    padding: 70px 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .investment-hero-img,
  .music-hero-img {
    margin: 20px auto;
    max-width: 900px;
  }

  .page-hero {
    max-width: 900px;
    margin: 0 auto;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-20 {
  margin-top: 20px;
}