/* ==========================================
   GROUP CAPITAL ROCK - HOMEPAGE REVAMP CSS
   Light Mode Default | Premium Build
   ========================================== */

/* --- Google Font Override --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --gcr-primary: #0a2540;
  --gcr-secondary: #1a5276;
  --gcr-accent: #c9a84c;
  --gcr-accent-light: #f0c040;
  --gcr-bg: #ffffff;
  --gcr-bg-alt: #f4f7fb;
  --gcr-text: #1a1a2e;
  --gcr-text-muted: #6c757d;
  --gcr-card-bg: #ffffff;
  --gcr-card-border: rgba(10,37,64,0.08);
  --gcr-glass: rgba(255,255,255,0.85);
  --gcr-shadow: 0 8px 40px rgba(10,37,64,0.1);
  --gcr-shadow-hover: 0 20px 60px rgba(10,37,64,0.18);
  --gcr-radius: 16px;
  --gcr-radius-sm: 8px;
  --gcr-transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Dark Mode */
body.dark-mode {
  --gcr-bg: #060d1a;
  --gcr-bg-alt: #0d1b2e;
  --gcr-text: #e8edf5;
  --gcr-text-muted: #8a9bb2;
  --gcr-card-bg: #0f2038;
  --gcr-card-border: rgba(201,168,76,0.15);
  --gcr-glass: rgba(6,13,26,0.85);
  --gcr-shadow: 0 8px 40px rgba(0,0,0,0.4);
  --gcr-shadow-hover: 0 20px 60px rgba(0,0,0,0.6);
}

/* Dark Mode Toggle Button */
#gcr-theme-toggle {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9999;
  background: var(--gcr-primary);
  color: #fff;
  border: 2px solid var(--gcr-accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--gcr-shadow);
  transition: var(--gcr-transition);
}
#gcr-theme-toggle:hover {
  background: var(--gcr-accent);
  color: var(--gcr-primary);
  transform: scale(1.1);
}

/* ==========================================
   MOBILE HEADER — Premium Compact Design
   ========================================== */

/* Applies to all mobile viewports up to 991px (where main-menu is hidden) */
@media (max-width: 991px) {

  /* ── Top Bar: slim, dark, brand colours ── */
  .main-header.style-one .header-top {
    background: #0a2540 !important;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 6px 0 !important;
  }

  .main-header.style-one .header-top .top-right {
    float: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0 16px;
  }

  /* Hide desktop-only address text on mobile */
  .main-header.style-one .header-top .top-left {
    display: none !important;
  }

  /* Social links in top bar */
  .main-header.style-one .header-top .social-links li a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px !important;
    transition: color 0.2s ease;
  }
  .main-header.style-one .header-top .social-links li a:hover {
    color: #c9a84c !important;
  }

  /* Google Translate widget — keep it small */
  #google_translate_element .goog-te-gadget-simple {
    font-size: 11px !important;
    border: none !important;
    background: rgba(255,255,255,0.07) !important;
    border-radius: 6px !important;
    padding: 2px 8px !important;
  }
  #google_translate_element .goog-te-gadget-simple span {
    color: rgba(255,255,255,0.8) !important;
  }

  /* ── Header Lower: dark navy bar with logo + hamburger ── */
  .main-header.style-one .header-lower {
    background: #ffffff !important;
    border-bottom: 2px solid rgba(201,168,76,0.25) !important;
    padding: 0 !important;
    box-shadow: 0 3px 20px rgba(10,37,64,0.15) !important;
  }

  .main-header.style-one .header-lower .auto-container {
    padding: 0 16px;
  }

  .main-header.style-one .header-lower .outer-box {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 62px !important;
    padding: 0 !important;
  }

  /* Logo: compact, left-aligned */
  .main-header.style-one .header-lower .logo-box {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
  }

  .main-header.style-one .header-lower .logo-box .logo img {
    max-height: 44px !important;
    width: auto !important;
    border-radius: 8px !important;
  }

  /* Menu area: pushed to extreme right edge */
  .main-header.style-one .header-lower .menu-area {
    float: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    margin-left: auto !important;   /* <-- pins hamburger to right */
  }

  /* Hide the Join Now button on mobile — too cramped */
  .main-header.style-one .header-lower .btn-box {
    display: none !important;
  }

  /* Hide search icon on mobile to keep it clean */
  .main-header.style-one .header-lower .search-btn {
    display: none !important;
  }

  /* Hamburger toggler: gold-accented, compact */
  .main-header.style-one .menu-area .mobile-nav-toggler {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    background: #0a2540 !important;
    border: 1px solid rgba(201,168,76,0.4) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .main-header.style-one .menu-area .mobile-nav-toggler:hover {
    background: #c9a84c !important;
    border-color: #c9a84c !important;
  }

  .main-header.style-one .menu-area .mobile-nav-toggler .icon-bar {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #c9a84c !important;
    border-radius: 2px !important;
    transition: all 0.25s ease !important;
  }

  .main-header.style-one .menu-area .mobile-nav-toggler:hover .icon-bar {
    background: #0a2540 !important;
  }

  /* Hide the main-menu block (shown via mobile-menu plugin instead) */
  .main-header.style-one .main-menu {
    display: none !important;
  }

  /* Sticky header: hide completely on mobile (uses top-bar style instead) */
  .main-header.style-one .sticky-header {
    display: none !important;
  }
}

/* Extra small: tighten logo even more on very small phones */
@media (max-width: 400px) {
  .main-header.style-one .header-lower .logo-box .logo img {
    max-height: 36px !important;
  }
  .main-header.style-one .header-lower .outer-box {
    min-height: 54px !important;
  }
}


/* ==========================================
   1. HERO SWIPER SLIDER
   ========================================== */
.gcr-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gcr-hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 950px;
}

.gcr-hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.gcr-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-in-out;
}

.swiper-slide-active .gcr-slide-bg {
  transform: scale(1);
}

.gcr-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,37,64,0.82) 0%,
    rgba(10,37,64,0.5) 50%,
    rgba(201,168,76,0.15) 100%
  );
  z-index: 1;
}

.gcr-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.gcr-slide-inner {
  max-width: 680px;
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.swiper-slide-active .gcr-slide-inner {
  animation: slideInLeft 0.8s 0.3s ease-out forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

.gcr-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gcr-accent);
  color: var(--gcr-accent-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.gcr-slide-badge i {
  font-size: 12px;
}

.gcr-slide-inner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gcr-slide-inner h1 span {
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gcr-slide-inner p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 35px;
  font-weight: 400;
}

.gcr-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gcr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  color: #0a2540 !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--gcr-transition);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  letter-spacing: 0.3px;
}

.gcr-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.5);
  color: #0a2540 !important;
}

.gcr-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  transition: var(--gcr-transition);
}

.gcr-btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
  color: #fff !important;
}

/* Hero Stats Bar Inside Slider */
.gcr-slide-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.gcr-slide-stat {
  text-align: left;
}

.gcr-slide-stat .number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gcr-accent-light);
  display: block;
  line-height: 1;
}

.gcr-slide-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}

/* Hero Navigation */
.gcr-hero-section .swiper-pagination {
  bottom: 30px;
}

.gcr-hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: var(--gcr-transition);
}

.gcr-hero-section .swiper-pagination-bullet-active {
  background: var(--gcr-accent);
  width: 35px;
  border-radius: 5px;
}

.gcr-hero-section .swiper-button-next,
.gcr-hero-section .swiper-button-prev {
  color: var(--gcr-accent);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: var(--gcr-transition);
}

.gcr-hero-section .swiper-button-next::after,
.gcr-hero-section .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.gcr-hero-section .swiper-button-next:hover,
.gcr-hero-section .swiper-button-prev:hover {
  background: var(--gcr-accent);
  color: var(--gcr-primary);
}

/* ==========================================
   2. LIVE TICKER BAR
   ========================================== */
.gcr-ticker-bar {
  background: var(--gcr-primary);
  border-top: 3px solid var(--gcr-accent);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.gcr-ticker-bar coingecko-coin-price-marquee-widget {
  display: block;
}

/* ==========================================
   3. FEATURES STRIP
   ========================================== */
.gcr-features-strip {
  background: var(--gcr-bg);
  padding: 70px 0 50px;
}

.gcr-features-strip .sec-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gcr-accent);
  margin-bottom: 10px;
}

.gcr-features-strip h2.strip-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gcr-text);
  margin-bottom: 50px;
}

.gcr-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gcr-feature-card {
  background: var(--gcr-card-bg);
  border: 1px solid var(--gcr-card-border);
  border-radius: var(--gcr-radius);
  padding: 36px 28px;
  transition: var(--gcr-transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--gcr-shadow);
}

.gcr-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gcr-accent), var(--gcr-accent-light));
  transform: scaleX(0);
  transition: var(--gcr-transition);
}

.gcr-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gcr-shadow-hover);
  border-color: var(--gcr-accent);
}

.gcr-feature-card:hover::before {
  transform: scaleX(1);
}

.gcr-feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,37,64,0.07), rgba(201,168,76,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gcr-primary);
  margin-bottom: 22px;
  transition: var(--gcr-transition);
}

.gcr-feature-card:hover .gcr-feature-icon {
  background: linear-gradient(135deg, var(--gcr-primary), var(--gcr-secondary));
  color: var(--gcr-accent);
  transform: scale(1.1);
}

.gcr-feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gcr-text);
  margin-bottom: 12px;
}

.gcr-feature-card p {
  font-size: 0.9rem;
  color: var(--gcr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   4. AI-POWERED TRADING SECTION
   ========================================== */
.gcr-ai-section {
  background: linear-gradient(135deg, #0a2540 0%, #0e3460 50%, #1a1a4e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gcr-ai-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gcr-ai-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,149,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.gcr-ai-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gcr-accent-light);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gcr-ai-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gcr-ai-section h2 span {
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gcr-ai-section .lead-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.gcr-ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.gcr-ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--gcr-radius-sm);
  padding: 18px;
  transition: var(--gcr-transition);
}

.gcr-ai-feature-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.gcr-ai-feature-item .ai-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gcr-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.gcr-ai-feature-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gcr-ai-feature-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

.gcr-ai-visual {
  position: relative;
}

.gcr-ai-img-wrapper {
  border-radius: var(--gcr-radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  border: 1px solid rgba(201,168,76,0.2);
}

.gcr-ai-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.gcr-floating-stat {
  position: absolute;
  background: rgba(10,37,64,0.9);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 16px 20px;
  animation: floatUpDown 3s ease-in-out infinite;
}

.gcr-floating-stat.stat-1 {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.gcr-floating-stat.stat-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 1.5s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gcr-floating-stat .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gcr-accent);
  display: block;
  line-height: 1;
}

.gcr-floating-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
}

/* ==========================================
   5. REAL ESTATE SECTION
   ========================================== */
.gcr-realestate-section {
  background: var(--gcr-bg-alt);
  padding: 100px 0;
}

.gcr-section-header {
  margin-bottom: 60px;
}

.gcr-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gcr-accent);
  margin-bottom: 12px;
}

.gcr-section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gcr-accent);
}

.gcr-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gcr-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gcr-section-header p {
  color: var(--gcr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

.gcr-realestate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.gcr-property-card {
  background: var(--gcr-card-bg);
  border-radius: var(--gcr-radius);
  overflow: hidden;
  box-shadow: var(--gcr-shadow);
  border: 1px solid var(--gcr-card-border);
  transition: var(--gcr-transition);
}

.gcr-property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--gcr-shadow-hover);
}

.gcr-property-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.gcr-property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gcr-property-card:hover .gcr-property-img img {
  transform: scale(1.08);
}

.gcr-property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  color: #0a2540;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.gcr-property-roi {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10,37,64,0.85);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.gcr-property-roi span {
  color: #4ade80;
  font-size: 13px;
}

.gcr-property-body {
  padding: 24px;
}

.gcr-property-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gcr-text);
  margin-bottom: 6px;
}

.gcr-property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gcr-text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.gcr-property-meta {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--gcr-card-border);
  border-bottom: 1px solid var(--gcr-card-border);
  margin-bottom: 16px;
}

.gcr-property-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gcr-text-muted);
}

.gcr-property-meta-item i {
  color: var(--gcr-accent);
}

.gcr-property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gcr-property-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gcr-primary);
}

.gcr-property-price sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gcr-text-muted);
}

.gcr-property-cta {
  background: var(--gcr-primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--gcr-transition);
}

.gcr-property-cta:hover {
  background: var(--gcr-accent);
  color: var(--gcr-primary) !important;
}

/* ==========================================
   6. ABOUT / STATS REVAMP
   ========================================== */
.gcr-about-section {
  padding: 100px 0;
  background: var(--gcr-bg);
}

.gcr-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.gcr-stat-box {
  background: var(--gcr-bg-alt);
  border: 1px solid var(--gcr-card-border);
  border-radius: var(--gcr-radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--gcr-transition);
}

.gcr-stat-box:hover {
  border-color: var(--gcr-accent);
  transform: translateY(-4px);
  box-shadow: var(--gcr-shadow);
}

.gcr-stat-box .value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gcr-primary), var(--gcr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.gcr-stat-box .label {
  font-size: 0.82rem;
  color: var(--gcr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ==========================================
   7. MODERN APPROACH SECTION
   ========================================== */
.gcr-modern-section {
  background: var(--gcr-bg-alt);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gcr-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gcr-approach-card {
  background: var(--gcr-card-bg);
  border-radius: var(--gcr-radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gcr-card-border);
  box-shadow: var(--gcr-shadow);
  transition: var(--gcr-transition);
  position: relative;
  overflow: hidden;
}

.gcr-approach-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0) 60%, rgba(201,168,76,0.05) 100%);
  pointer-events: none;
}

.gcr-approach-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--gcr-shadow-hover);
  border-color: var(--gcr-accent);
}

.gcr-approach-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: var(--gcr-accent);
  box-shadow: 0 10px 30px rgba(10,37,64,0.2);
  transition: var(--gcr-transition);
}

.gcr-approach-card:hover .gcr-approach-icon {
  background: linear-gradient(135deg, var(--gcr-accent), var(--gcr-accent-light));
  color: var(--gcr-primary);
  transform: scale(1.1) rotate(5deg);
}

.gcr-approach-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gcr-text);
  margin-bottom: 14px;
}

.gcr-approach-card p {
  font-size: 0.88rem;
  color: var(--gcr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   8. TRADINGVIEW WIDGET REVAMP
   ========================================== */
.gcr-trading-section {
  padding: 100px 0;
  background: var(--gcr-bg);
}

.gcr-widget-wrapper {
  background: var(--gcr-card-bg);
  border-radius: var(--gcr-radius);
  overflow: hidden;
  box-shadow: var(--gcr-shadow);
  border: 1px solid var(--gcr-card-border);
  padding: 10px;
}

.gcr-invest-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--gcr-transition);
  box-shadow: 0 8px 30px rgba(10,37,64,0.25);
  margin-top: 30px;
  border: 2px solid transparent;
}

.gcr-invest-btn:hover {
  background: linear-gradient(135deg, var(--gcr-accent), var(--gcr-accent-light));
  color: var(--gcr-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.35);
}

/* ==========================================
   9. HOW IT WORKS - REVAMP
   ========================================== */
.gcr-howitworks {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2540 0%, #0e3460 100%);
  position: relative;
  overflow: hidden;
}

.gcr-howitworks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(201%2C168%2C76%2C0.15)"/></svg>') 0 0 / 60px 60px;
  pointer-events: none;
}

.gcr-howitworks h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.gcr-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
}

.gcr-steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  z-index: 0;
}

.gcr-step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.gcr-step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gcr-accent);
  transition: var(--gcr-transition);
  position: relative;
}

.gcr-step-number::after {
  content: attr(data-num);
  position: absolute;
  font-size: 0.75rem;
  background: var(--gcr-accent);
  color: var(--gcr-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  top: -5px;
  right: -5px;
}

.gcr-step-item:hover .gcr-step-number {
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.15));
  border-color: var(--gcr-accent);
  transform: scale(1.1);
}

.gcr-step-icon {
  font-size: 30px;
  color: var(--gcr-accent);
}

.gcr-step-item h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.gcr-step-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ==========================================
   10. TESTIMONIALS REVAMP
   ========================================== */
.gcr-testimonials {
  padding: 100px 0;
  background: var(--gcr-bg);
}

.gcr-testimonial-swiper {
  padding: 20px 10px 50px !important;
}

.gcr-testimonial-card {
  background: var(--gcr-card-bg);
  border-radius: var(--gcr-radius);
  padding: 36px 30px;
  box-shadow: var(--gcr-shadow);
  border: 1px solid var(--gcr-card-border);
  transition: var(--gcr-transition);
  height: 100%;
}

.gcr-testimonial-card:hover {
  box-shadow: var(--gcr-shadow-hover);
  border-color: var(--gcr-accent);
  transform: translateY(-5px);
}

.gcr-testimonial-stars {
  color: var(--gcr-accent);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.gcr-testimonial-quote {
  font-size: 0.95rem;
  color: var(--gcr-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.gcr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gcr-card-border);
}

.gcr-testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gcr-accent);
}

.gcr-testimonial-author h6 {
  font-weight: 700;
  color: var(--gcr-text);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.gcr-testimonial-author span {
  font-size: 0.78rem;
  color: var(--gcr-accent);
}

/* ==========================================
   11. NEWS / BLOG REVAMP
   ========================================== */
.gcr-news-section {
  padding: 100px 0;
  background: var(--gcr-bg-alt);
}

.gcr-news-card {
  background: var(--gcr-card-bg);
  border-radius: var(--gcr-radius);
  overflow: hidden;
  box-shadow: var(--gcr-shadow);
  border: 1px solid var(--gcr-card-border);
  transition: var(--gcr-transition);
  height: 100%;
}

.gcr-news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gcr-shadow-hover);
}

.gcr-news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.gcr-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gcr-news-card:hover .gcr-news-img img {
  transform: scale(1.08);
}

.gcr-news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  color: #0a2540;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gcr-news-body {
  padding: 24px;
}

.gcr-news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--gcr-text-muted);
  margin-bottom: 14px;
}

.gcr-news-meta i {
  color: var(--gcr-accent);
}

.gcr-news-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gcr-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.gcr-news-body h4 a {
  color: inherit;
  text-decoration: none;
  transition: var(--gcr-transition);
}

.gcr-news-body h4 a:hover {
  color: var(--gcr-accent);
}

.gcr-news-excerpt {
  font-size: 0.87rem;
  color: var(--gcr-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.gcr-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gcr-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--gcr-transition);
}

.gcr-read-more:hover {
  color: var(--gcr-accent);
  gap: 14px;
}

/* ==========================================
   12. CLIENTS / PARTNERS REVAMP
   ========================================== */
.gcr-partners-section {
  padding: 60px 0;
  background: var(--gcr-bg);
  border-top: 1px solid var(--gcr-card-border);
  border-bottom: 1px solid var(--gcr-card-border);
}

.gcr-partners-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gcr-text-muted);
  margin-bottom: 40px;
}

.gcr-partners-carousel .client-logo img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--gcr-transition);
}

.gcr-partners-carousel .client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================
   13. CTA REVAMP
   ========================================== */
.gcr-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2540 0%, #0e3460 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.gcr-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gcr-cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.gcr-cta-section h2 span {
  background: linear-gradient(135deg, #c9a84c, #f0c040);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gcr-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.gcr-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==========================================
   14. COUNTERS REVAMP
   ========================================== */
.gcr-counters {
  padding: 80px 0;
  background: var(--gcr-bg);
}

.gcr-counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.gcr-counter-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  transition: var(--gcr-transition);
}

.gcr-counter-item + .gcr-counter-item {
  border-left: 1px solid var(--gcr-card-border);
}

.gcr-counter-item:hover {
  background: var(--gcr-bg-alt);
}

.gcr-counter-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gcr-primary), var(--gcr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.gcr-counter-label {
  font-size: 0.85rem;
  color: var(--gcr-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Mobile hero top-padding — accounts for the compact mobile header height:
   top-bar (~34px) + header-lower (~62px) = ~96px total. Use 110px for breathing room. */

/* Tablets & large phones hero top padding (576px – 991px) */
@media (min-width: 576px) and (max-width: 991px) {
  .gcr-hero-swiper { max-height: 750px; }
  .gcr-slide-content {
    padding: 120px 40px 0 !important;   /* clears header + breathing room */
    align-items: flex-start;
  }
  .gcr-ai-features { grid-template-columns: 1fr; }
  .gcr-realestate-cards { grid-template-columns: 1fr 1fr; }
  .gcr-approach-grid { grid-template-columns: 1fr 1fr; }
  .gcr-counter-item + .gcr-counter-item { border-left: none; }
  .gcr-counters-grid { grid-template-columns: 1fr 1fr; }
  .gcr-counter-item:nth-child(2n+1) { border-right: 1px solid var(--gcr-card-border); }
  .gcr-floating-stat.stat-1 { right: 10px; }
}

/* Mobile Phones (up to 575px) */
@media (max-width: 575px) {
  .gcr-hero-swiper {
    height: 100svh;
    min-height: 600px;
    max-height: 800px;
  }

  /* Push slide content well below the compact mobile header */
  .gcr-slide-content {
    padding: 130px 20px 0 !important;   /* top-bar ~34px + logo-bar ~62px + 34px gap */
    align-items: flex-start;
  }

  .gcr-slide-badge { font-size: 11px; padding: 5px 14px; }
  .gcr-slide-inner h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .gcr-slide-inner p { font-size: 0.9rem; margin-bottom: 24px; }
  .gcr-slide-stats { flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 18px; }
  .gcr-slide-stat .number { font-size: 1.4rem; }
  .gcr-hero-btns { flex-direction: column; gap: 10px; }
  .gcr-hero-btns a { text-align: center; justify-content: center; width: 100%; }
  .gcr-ai-features { grid-template-columns: 1fr; }
  .gcr-stats-grid { grid-template-columns: 1fr 1fr; }
  .gcr-counter-item + .gcr-counter-item { border-left: none; border-top: 1px solid var(--gcr-card-border); }
  .gcr-counters-grid { grid-template-columns: 1fr 1fr; }
  .gcr-floating-stat.stat-1 { right: -5px; }
  .gcr-floating-stat.stat-2 { left: -5px; }
  .gcr-hero-section .swiper-button-next,
  .gcr-hero-section .swiper-button-prev { display: none; }
}

/* Very small phones (up to 390px) */
@media (max-width: 390px) {
  .gcr-slide-content { padding: 120px 16px 0 !important; }
  .gcr-slide-inner h1 { font-size: 1.55rem; }
}

/* NOTE: Tablet rules merged into the block above (lines 1587+) to avoid conflict */

/* Large Screens (1400px+) - TV/Ultra */
@media (min-width: 1400px) {
  .gcr-hero-swiper { max-height: 1050px; }
  .gcr-slide-inner h1 { font-size: 4.5rem; }
}

/* Utility classes for sections */
.gcr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 575px) {
  .gcr-container { padding: 0 16px; }
}

/* Smooth body font override */
body { font-family: 'Inter', 'Arimo', sans-serif; }

/* Dark mode body tweaks */
body.dark-mode .main-header,
body.dark-mode .sticky-header { background-color: #060d1a !important; }
body.dark-mode .main-footer { background-color: #0d1b2e !important; }
body.dark-mode .gcr-news-section { background: #060d1a; }
body.dark-mode .gcr-realestate-section { background: #0d1b2e; }
body.dark-mode .gcr-modern-section { background: #0d1b2e; }
body.dark-mode .gcr-partners-section { background: #060d1a; border-color: rgba(201,168,76,0.1); }
body.dark-mode .gcr-counters { background: #060d1a; }
