/*
Theme Name: musharaf
Theme URI: https://musharafglobal.com
Author: sounthar
Description: Musharaf Enterprises Premium multi-venture enterprise theme
Version: 1.0.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  overflow-x: hidden;
  color: #fff;
}

/* Canvas for 3D Background */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Main Content */
.content {
  position: relative;
  z-index: 10;
}

/* Custom Cursor */
.cursor {
  width: 40px;
  height: 40px;
  border: 2px solid #C8A84B;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #C8A84B;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: 0.1s;
  transform: translate(-50%, -50%);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 36px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #C8A84B, #F0D87A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.header-logo {
  width: 150px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C8A84B;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  gap: 0;
  z-index: 200;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* X animation when active */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #C8A84B;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #C8A84B;
}

/* Section Styles */
section {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
}

/* .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
} */

.hero-content {
  max-width: 700px;
  padding-top: 5rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero .gold-text {
  background: linear-gradient(135deg, #D4AF37, #F0D87A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4AF37, #B8942A);
  border: none;
  color: #050505;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #E0C060, #C8A84B);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #C8A84B;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* Venture Cards */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
#about .ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.venture-card {
  background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(10,10,10,0.9));
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(200,168,75,0.15);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.venture-card:hover {
  transform: translateY(-15px) scale(1.02) !important;
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 30px 50px rgba(0,0,0,0.3);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
}

.venture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(200,168,75,0.2), rgba(200,168,75,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,168,75,0.3);
}

.venture-icon i {
  font-size: 2rem;
  color: #C8A84B;
}

.venture-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.venture-card p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.venture-link {
  color: #C8A84B;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(15,15,15,0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(200,168,75,0.1);
  transition: all 0.4s;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(200,168,75,0.4);
  transition: all 0.4s !important;
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: #C8A84B;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #aaa;
  line-height: 1.6;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(200,168,75,0.15);
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(200,168,75,0.1), rgba(200,168,75,0.02));
  border-radius: 20px;
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(200,168,75,0.1);
  transform: translateX(5px);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(200,168,75,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #C8A84B;
}

.contact-item a, .contact-item span {
  color: #fff;
  text-decoration: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

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

.contact-form select {
  color: rgba(255,255,255,0.6);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A84B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background-color: #1a1a1a;
  color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C8A84B;
  background: rgba(255,255,255,0.08);
}

/* CF7 specific overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.wpcf7 select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 12px;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath stroke='%23C8A84B' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.wpcf7 select option {
  background-color: #1a1a1a;
  color: #fff;
}

.wpcf7 select option:first-child {
  color: rgba(255,255,255,0.6);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #C8A84B;
  background: rgba(255,255,255,0.08);
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4AF37, #B8942A);
  border: none;
  color: #050505;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background: linear-gradient(135deg, #E0C060, #C8A84B);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ========== PREMIUM FOOTER STYLES ========== */
footer {
  background: #0a0a0a;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(200, 168, 75, 0.15);
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-img {
 width: 150px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #aaa;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 168, 75, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8A84B;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: #C8A84B;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}

.footer-links a:hover {
  color: #C8A84B;
  padding-left: 5px;
}

.footer-contact p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: #C8A84B;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #C8A84B;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-copyright {
  color: #888;
  font-size: 14px;
}

.footer-partners {
  color: #666;
  font-size: 14px;
}

/* Scroll Reveal */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
  opacity: 1 !important;
  transform: none !important;
}

.btn i {
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .ventures-grid,
  .features-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  /* Hide desktop nav */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 2rem 2rem;
    transition: left 0.3s ease;
    gap: 0;
    z-index: 150;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    padding: 18px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(200, 168, 75, 0.1);
    letter-spacing: 3px;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero::before {
    background: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
  }
  #about .ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
section {
    display: flex;
    align-items: center;
    padding: 4rem 20px;
    position: relative;
}
section {
    display: flex;
    align-items: center;
    padding: 4rem 20px;
    position: relative;
}
    .hero-content {
        padding-top: 7rem;
    }
.contact-item i.fas.fa-map-marker-alt {
    width: 99px;
}
.contact-wrapper {
    padding: 10px;
}
.contact-form {
    padding: 0px 10px;
}
.contact-info-card {
    padding: 10px;
}
.venture-card {
    padding: 2rem;
}
.feature-card {
    padding: 2rem;
}
    body.admin-bar .navbar {
        top: 0 !important;
    }

  .hero p {
    font-size: 1rem;
  }

  .logo img {
    height: 40px;
  }

  footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-title {
    margin-bottom: 1rem;
  }

  .footer-copyright,
  .footer-partners {
    font-size: 0.7rem;
  }
}
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.footer-whatsapp-float {
position: fixed;
    bottom: 85px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: footer-whatsapp-pulse 2s infinite;
}

.footer-whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b859;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.footer-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1A1A2E;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.footer-whatsapp-float:hover .footer-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes footer-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 768px) {
  .footer-whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 120px;
    right: 25px;
  }
  .scroll-top {
    bottom: 60px !important;
	}
  .footer-whatsapp-tooltip {
    display: none;
  }
}
.scroll-top {
position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    /* border-radius: 50%; */
    background: #3a331d;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}
.scroll-top:hover {
  background: #333;
  transform: translateY(-3px);
}
p.footer-partners a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
p.footer-partners a:hover {
    color: #C8A84B;
}
.contact-item i.fas.fa-map-marker-alt {
    width: 52px;
}