/* ===================================================================
   F4 GROUP — Premium Corporate Website
   Theme: Black + Gold + White (Dubai Luxury Style)
   =================================================================== */

/* ---------- Root Variables ---------- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gold: #c8a24b;
  --gold-light: #e7c977;
  --gold-dark: #a8842f;
  --white: #ffffff;
  --gray: #9a9a9a;
  --light-gray: #f5f5f5;
  --font: 'Poppins', 'Segoe UI', sans-serif;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --gold-gradient: linear-gradient(135deg, #e7c977 0%, #c8a24b 50%, #a8842f 100%);
}





.logo img {
  height: 150px; /* desktop size */
  width: auto;
}

/* Mobile ke liye bhi bada rakho */
@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

/* ---------- Utility / Text ---------- */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.section-subtitle {
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 50px;
}

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 10px 25px rgba(200, 162, 75, 0.3);
}

.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(200, 162, 75, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-cta {
  padding: 10px 26px !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.92)),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.18), transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-content .section-tag {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Page banner (inner pages) */
.page-banner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.92)),
    url('https://images.unsplash.com/photo-1546412414-e1885259563a?auto=format&fit=crop&w=1600&q=80') center/cover;
  padding-top: 80px;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.breadcrumb {
  color: var(--gray);
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ===================================================================
   ABOUT PREVIEW / GENERIC TWO-COL
   =================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 16px;
  z-index: -1;
}

.feature-list {
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray);
}

.feature-list li i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, var(--dark-2), var(--dark));
  border: 1px solid rgba(200, 162, 75, 0.15);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: rgba(200, 162, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  color: var(--black);
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.service-card .read-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card .read-more i {
  transition: transform 0.3s;
}

.service-card:hover .read-more i {
  transform: translateX(6px);
}

/* Detailed service block */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:nth-child(even) .service-detail-img {
  order: 2;
}

.service-detail img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-detail .service-icon {
  margin-bottom: 18px;
}

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why-section {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: var(--dark-2);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(145deg, var(--dark-2), #221c10);
}

.why-card .why-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ===================================================================
   COUNTERS
   =================================================================== */
.counters {
  background:
    linear-gradient(rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.92)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-item h2 {
  font-size: 3rem;
  margin-bottom: 6px;
}

.counter-item p {
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ===================================================================
   CLIENT LOGOS
   =================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: all 0.35s ease;
  letter-spacing: 1px;
}

.client-logo:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  background: var(--gold-gradient);
  text-align: center;
  color: var(--black);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.cta-section p {
  margin-bottom: 30px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.cta-section .btn {
  background: var(--black);
  color: var(--white);
}

.cta-section .btn:hover {
  background: var(--dark-2);
  transform: translateY(-4px);
}

/* ===================================================================
   MISSION / VISION
   =================================================================== */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mv-card {
  padding: 44px 36px;
  border-radius: 16px;
  background: var(--dark-2);
  border-left: 4px solid var(--gold);
  transition: all 0.4s ease;
}

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

.mv-card .mv-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--gray);
}

/* ===================================================================
   TEAM
   =================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--dark-2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

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

.team-img {
  height: 280px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.2rem;
}

.team-info span {
  color: var(--gold);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 14px;
}

.team-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 162, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===================================================================
   BLOG
   =================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
}

.blog-card {
  background: var(--dark-2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

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

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

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

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-body {
  padding: 26px;
}

.blog-meta {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.blog-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.blog-card:hover .blog-body h3 {
  color: var(--gold);
}

.blog-body p {
  color: var(--gray);
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.blog-body .read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--dark-2);
  padding: 26px;
  border-radius: 14px;
  margin-bottom: 22px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  transform: translateX(8px);
  border-left: 3px solid var(--gold);
}

.contact-info-card .ci-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(200, 162, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--gray);
  font-size: 0.92rem;
}

.contact-info-card a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--dark-2);
  padding: 40px;
  border-radius: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  background: rgba(200, 162, 75, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px;
  border-radius: 10px;
  margin-top: 16px;
  text-align: center;
}

.map-wrap {
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--dark);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(200, 162, 75, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.92rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--gray);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* ===================================================================
   WHATSAPP FLOAT BUTTON
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

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

/* Page fade-in */
body {
  animation: pageFade 0.6s ease;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
  .two-col,
  .service-detail,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail:nth-child(even) .service-detail-img {
    order: 0;
  }

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

  .hero {
    background-attachment: scroll;
  }

  .counters {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .about-img-wrap::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .contact-form {
    padding: 26px;
  }
}
