/* ============================================
   I Need a Website UAE - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --brand-yellow: #F7BD12;
  --brand-yellow-hover: #E0A80F;
  --ink: #0E0E0F;
  --gunmetal: #1A1A1A;
  --offwhite: #F5F6F7;
  --muted: #C8CBCE;
  --line: rgba(255,255,255,.08);
  --danger-red: #FF3B30;
  --max: 1200px;
  --r: 16px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, Arial, sans-serif;
  background: var(--ink);
  color: var(--muted);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--offwhite);
  line-height: 1.05;
  font-weight: 800;
}

a {
  color: var(--brand-yellow);
  text-decoration: underline;
}

a:hover {
  color: var(--brand-yellow-hover);
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(14, 14, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--offwhite);
  text-decoration: none;
}

.logo-yellow {
  color: var(--brand-yellow);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  color: var(--offwhite);
}

.plus {
  color: var(--brand-yellow);
  font-weight: 600;
  font-size: 18px;
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gunmetal);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(247, 189, 18, 0.1);
  color: var(--brand-yellow);
}

/* Nav CTA Section */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.2s;
}

.phone-link:hover {
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

.lets-talk-btn {
  font-size: 14px;
  padding: 12px 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--brand-yellow);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  text-decoration: none;
}

.btn:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-1px);
  color: #000;
}

.btn.outline {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.outline:hover {
  border-color: var(--brand-yellow);
  color: var(--brand-yellow);
  background: transparent;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 120px 0 100px;
  background: 
    linear-gradient(135deg, rgba(247, 189, 18, 0.05) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
    radial-gradient(ellipse at 20% 80%, rgba(247, 189, 18, 0.1) 0%, transparent 50%),
    var(--ink);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
  background-size: 100px 100px, 150px 150px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--offwhite);
}

.hero h1 .yellow-text {
  color: var(--brand-yellow);
}

.hero .subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Google Reviews Badge */
.google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.reviews-text {
  font-size: 14px;
  color: var(--muted);
}

.google-reviews .stars {
  color: var(--brand-yellow);
  font-size: 14px;
  margin: 0;
}

/* Email Capture Form */
.email-capture {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.email-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 24px;
  font-size: 16px;
  color: #333;
  outline: none;
  border-radius: 999px;
  min-width: 0;
}

.email-input::placeholder {
  color: #999;
  font-size: 15px;
}

.book-btn {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SCROLLING BANNERS
   ============================================ */

.scrolling-banners {
  background: var(--ink);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.banner-line {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.banner-line:last-child {
  margin-bottom: 0;
}

.banner-content {
  display: flex;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.scroll-right .banner-content {
  animation-name: scrollRight;
}

.scroll-left .banner-content {
  animation-name: scrollLeft;
}

.banner-text {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 800;
  color: var(--offwhite);
  margin-right: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}

@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================
   COMPANIES SECTION
   ============================================ */

.companies {
  background: var(--brand-yellow);
  padding: 80px 0;
  color: #000;
  position: relative;
  overflow: hidden;
}

.company-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.company-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.companies h2 {
  text-align: center;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 32px;
  color: #000;
}

.hl-red {
  position: relative;
  display: inline-block;
}

.hl-red::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--danger-red);
  z-index: 1;
  transform: rotate(-1deg);
  border-radius: 2px;
}

.trusted-text {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin: 0 0 48px;
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 100px 0;
  background: var(--ink);
}

.services h2 {
  text-align: center;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  margin: 0 0 32px;
  line-height: 1.05;
  color: var(--offwhite);
}

.services .subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--gunmetal);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--brand-yellow);
  line-height: 1.05;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
  padding: 100px 0;
  background: var(--gunmetal);
}

.results h2 {
  text-align: center;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  margin: 0 0 32px;
  color: var(--offwhite);
  line-height: 1.05;
}

.yellow-text {
  color: var(--brand-yellow);
}

.results-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

    .results-masonry {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .result-card {
      background: var(--ink);
      border: 1px solid var(--line);
      border-radius: var(--r);
      box-shadow: 0 8px 20px rgba(0,0,0,.35);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    
    .result-card:hover {
      box-shadow: 0 16px 36px rgba(0,0,0,.45);
      transform: translateY(-4px);
    }
    
    .result-image {
      position: relative;
      overflow: hidden;
      height: 200px;
    }
    
    .result-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .result-card:hover .result-image img {
      transform: scale(1.05);
    }

.result-content {
  padding: 24px;
}

.result-stat {
  font-size: 18px;
  font-weight: 800;
  color: var(--offwhite);
  margin: 0 0 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.highlight-yellow {
  color: var(--brand-yellow);
}

.result-company {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: 100px 0;
  background: var(--ink);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--gunmetal);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
}

.stars {
  color: var(--brand-yellow);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--muted);
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--offwhite);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gunmetal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(247, 189, 18, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--offwhite);
}

.cta-subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CTA Email Capture Form */
.cta-email-capture {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-email-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 24px;
  font-size: 16px;
  color: #333;
  outline: none;
  border-radius: 999px;
  min-width: 0;
}

.cta-email-input::placeholder {
  color: #999;
  font-size: 15px;
}

.cta-book-btn {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 100px 0;
  background: var(--gunmetal);
  text-align: center;
}

.contact h2 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  margin: 0 0 32px;
  line-height: 1.05;
  color: var(--offwhite);
}

.contact .subtitle {
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-content small {
  color: var(--muted);
}

.designed-by {
  font-size: 12px;
}

.designed-by a {
  color: var(--brand-yellow);
  text-decoration: none;
  font-weight: 600;
}

.designed-by a:hover {
  color: var(--brand-yellow-hover);
  text-decoration: underline;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gunmetal);
  color: #fff;
  border: 1px solid var(--line);
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hl {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 70%, var(--danger-red) 0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  nav {
    height: 70px;
  }
  
  .logo {
    font-size: 18px;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-item,
  .nav-link {
    width: 100%;
  }
  
  .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 12px;
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
  }
  
  .nav-cta {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  
  .phone-link,
  .lets-talk-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 16px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .scrolling-banners {
    padding: 40px 0;
  }
  
  .banner-line {
    padding: 15px 0;
    margin-bottom: 15px;
  }
  
  .banner-text {
    margin-right: 60px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .email-capture {
    flex-direction: column;
    max-width: none;
    width: calc(100% - 32px);
    padding: 8px;
    gap: 8px;
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .email-input {
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    min-height: 56px;
  }
  
  .email-input::placeholder {
    font-size: 14px;
    text-align: center;
  }
  
  .book-btn {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    border-radius: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .google-reviews {
    font-size: 12px;
  }
  
  .companies {
    padding: 60px 0;
  }
  
  .company-intro p {
    font-size: 16px;
  }
  
  .decorative-circle-top {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
  }
  
  .decorative-circle-bottom {
    width: 15px;
    height: 15px;
    bottom: 20px;
    right: 20px;
  }
  
      .results-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
      }
  
  .result-stat {
    font-size: 16px;
  }
  
  .results-subtitle {
    font-size: 16px;
    margin: 0 0 40px;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-subtitle {
    font-size: 18px;
    margin: 0 0 40px;
  }
  
  .cta-email-capture {
    flex-direction: column;
    max-width: none;
    width: calc(100% - 32px);
    padding: 8px;
    gap: 8px;
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .cta-email-input {
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    min-height: 56px;
  }
  
  .cta-email-input::placeholder {
    font-size: 14px;
    text-align: center;
  }
  
  .cta-book-btn {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    border-radius: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .services, .results, .testimonials, .contact {
    padding: 60px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-left {
    text-align: center;
  }
}
