/* WhiteFiber Design System - Enterprise Colocation Page */
:root {
    /* Colors - HSL values matching WhiteFiber brand */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 25%, 27%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 27%);
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(215, 25%, 27%);
    
    /* WhiteFiber Brand Orange */
    --primary: hsl(6, 78%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-hover: hsl(6, 78%, 55%);
    
    /* Light Gray Section Backgrounds */
    --secondary: hsl(210, 40%, 98%);
    --secondary-foreground: hsl(215, 25%, 27%);
    
    /* Muted Text and Backgrounds */
    --muted: hsl(210, 40%, 96%);
    --muted-foreground: hsl(215, 15%, 58%);
    
    --accent: hsl(210, 40%, 96%);
    --accent-foreground: hsl(215, 25%, 27%);
    
    --destructive: hsl(0, 84.2%, 60.2%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(214.3, 31.8%, 91.4%);
    --input: hsl(214.3, 31.8%, 91.4%);
    --ring: hsl(6, 78%, 60%);
    
    --radius: 0.5rem;
}

/* Dark mode */
.dark {
    --background: hsl(215, 25%, 27%);
    --foreground: hsl(0, 0%, 100%);
    --card: hsl(215, 28%, 23%);
    --card-foreground: hsl(0, 0%, 100%);
    --popover: hsl(215, 28%, 23%);
    --popover-foreground: hsl(0, 0%, 100%);
    --primary: hsl(6, 78%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-hover: hsl(6, 78%, 55%);
    --secondary: hsl(215, 28%, 20%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(215, 28%, 20%);
    --muted-foreground: hsl(215, 15%, 70%);
    --accent: hsl(215, 28%, 20%);
    --accent-foreground: hsl(0, 0%, 100%);
    --destructive: hsl(0, 62.8%, 50%);
    --destructive-foreground: hsl(0, 0%, 100%);
    --border: hsl(215, 28%, 32%);
    --input: hsl(215, 28%, 32%);
    --ring: hsl(6, 78%, 60%);
}

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

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Banner */
.top-banner {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-button {
    background-color: var(--background);
    color: var(--foreground);
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.banner-button:hover {
    background-color: var(--secondary);
}

/* Main Navigation */
.main-nav {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.nav-brand span {
    font-size: 1.5rem;
    color: var(--foreground);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item:hover {
    color: var(--primary);
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
}

.contact-button {
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-button:hover {
    background-color: var(--secondary);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--foreground);
    transition: all 0.2s;
}

/* -------------------
   RESPONSIVE DESIGN
------------------- */

/* Desktop (≥1024px) */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex; /* show full nav menu */
  }
  .mobile-menu-toggle {
    display: none; /* hide hamburger */
  }
}

/* Tablet (≤1023px) */
@media (max-width: 1023px) {
  .nav-menu {
    position: absolute;
    top: 70px; /* below navbar */
    right: 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none; /* toggled with JS */
    width: 250px;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex; /* show menu when toggled */
  }

  .mobile-menu-toggle {
    display: flex; /* show hamburger */
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .nav-brand h1,
  .nav-brand span {
    font-size: 1.25rem;
  }

  .nav-menu {
    width: 100%; /* full width menu */
    left: 0;
    right: 0;
    border-radius: 0;
  }

  .contact-button {
    display: none;
  }
}


/* Hero Section */
.container22{
    background-image: url(./src/assets/ChatGPT\ Image\ Sep\ 2\,\ 2025\,\ 08_43_53\ PM.png);
    background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100vh;
}
.hero-section {

    padding: 4rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: var(--foreground); */
    color:black;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-image-container {
    max-width: 1024px;
    margin: 0 auto 3rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Intro Section */
.intro-section {
    padding: 4rem 1rem;
}

.intro-content {
    
   
    text-align: center;
    display: flex;
}

.intro-content h2 {
 letter-spacing: .1rem;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.13;
    color: var(--foreground);
    
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
        max-width: 490px;

}

/* -------------------
   RESPONSIVE DESIGN
------------------- */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .intro-content {
    flex-direction: column; /* stack heading and paragraph */
    text-align: center;
  }

  .intro-content h2 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .intro-content p {
    font-size: 1rem;
    max-width: 420px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .intro-section {
    padding: 3rem 1rem;
  }

  .intro-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .intro-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .intro-section {
    padding: 2rem 1rem;
  }

  .intro-content h2 {
    font-size: 1.8rem;
  }

  .intro-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}


/* Features Section */
.features-section {
    padding: 4rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 3rem;
    height: 3rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.75;
}

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

.features-cta p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* Specifications Section */
.spec-section {
    background-color: var(--secondary);
    background-opacity: 0.5;
    padding: 4rem 1rem;
}

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

.spec-card {
    background-color: var(--card);
    border-radius: 0.5rem;
    overflow: hidden;
}

.spec-image {
    aspect-ratio: 16 / 9;
}

.spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-content {
    padding: 1.5rem;
}

.spec-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.spec-content ul {
    list-style: none;
}

.spec-content li {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.spec-content li::before {
    content: "•";
    color: var(--primary);
    margin-right: 0.5rem;
}

/* CTA Section */
 .cta-section {
      background: url("./src/assets/ChatGPT\ Image\ Sep\ 2\,\ 2025\,\ 09_39_23\ PM.png") no-repeat center center/cover;
      text-align: center;
      padding: 120px 20px;
      color: #111;
      position: relative;
    }

    .cta-section h2 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .cta-section button {
      background: transparent;
      border: 1px solid #111;
      border-radius: 25px;
      padding: 12px 25px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta-section button:hover {
      background: #111;
      color: #fff;
    }
/* Buttons */

/* Footer */


/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .intro-content h2 {
        /* font-size: 2.5rem; */
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
}
/* footer */
  .footer {
      background-color: white;
      padding: 60px 80px 30px 80px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      
    }
   

    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-left {
      max-width: 280px;
    }

    .footer-left h2 {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
    }

    .footer-left .stock {
      margin: 10px 0;
      font-size: 14px;
      color: #f05b44;
      font-weight: 600;
    }

    .footer-left button {
      margin-top: 15px;
      background: transparent;
      border: 1px solid #fff;
      padding: 10px 20px;
      border-radius: 25px;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .footer-left button:hover {
      background: #fff;
      color: #000;
    }

    .footer-center {
      display: grid;
      grid-template-columns: repeat(4, auto);
      gap: 60px;
      flex: 1;
    }

    .footer-center ul {
      list-style: none;
      margin: 0;
      padding: 0;
     
    }

    .footer-center ul li {
      margin-bottom: 12px;
      font-size: 14px;
      color: black;
      cursor: pointer;
    }

    .footer-center ul li:hover {
      color: #fff;
    }

    .footer-center ul li.title {
      font-weight: 600;
      color: black;
      margin-bottom: 18px;
    }

    .footer-right img {
      width: 140px;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: #bbb;
    }

    .footer-bottom a {
      color: #bbb;
      text-decoration: none;
      margin-left: 15px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .socials a img {
      width: 20px;
      height: 20px;
      filter: invert(1);
    }
    .social-links {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background: #ff6600; /* DigiPower X orange theme */
  color: #fff;
}


    /* Responsive */
    @media (max-width: 900px) {
      .footer-center {
        grid-template-columns: repeat(2, auto);
        gap: 30px;
      }
    }

    @media (max-width: 600px) {
      .footer {
        padding: 40px 20px;
      }

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