:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --accent: #28a745;
  --background: #f8f9fa;
  --text: #2C3E50;
  --light-gray: #f8f9fa;
  --logo-coral: #FF5A5A;
  --light-blue: #87CEEB;
  --medium-grey: #5A5A5A;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  transition: all 0.3s ease;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--logo-coral);
  text-decoration: none;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li.dropdown-open > ul {
  display: block;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 0.5rem 0;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}

nav ul ul li a {
  padding: 0.75rem 1rem;
  display: block;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

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

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-open > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: #1E3A5F;
  color: #FFFFFF;
  text-align: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.mission p {
  font-size: 1.3rem;
}

.hero-cta-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 700px;
}

.hero-cta-box p {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Products Section */
.products {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: white;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.products h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.product-carousel-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.product-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
}

.product-slide {
  width: 100vw;
  flex-shrink: 0;
  padding: 0 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.product-card-large {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 800px;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.product-card-large:hover {
  transform: translateY(-10px);
}

.product-card-large img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  background: transparent;
}

.product-card-large img[src*="infinity-car"],
.product-card-large img[src*="stadium-kit"] {
  background: transparent;
  mix-blend-mode: multiply;
}

.product-card-large:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 180px;
}

.product-content h3 {
  color: var(--text);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--primary);
  opacity: 0.7;
}

.tag {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
}

.tag.available {
  background: #28a745;
}

.tag.large {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
}

.tag.large.available {
  background: #28a745;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.subcategory-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.subcategory-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.subcategory-card p {
  color: #666;
  font-size: 0.95rem;
}

.subcategory-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Custom Solutions Section */
.custom {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: white;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.custom h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.product-grid {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  width: 85vw;
  max-width: 600px;
  padding: 2rem;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.product-card p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Ideas Section */
.ideas {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: white;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.ideas h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ideas-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
  width: 100%;
}

.ideas-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.ideas-info h3:first-child {
  margin-top: 0;
}

.ideas-info p {
  font-size: 1rem;
  line-height: 1.5;
}

.ideas-info ul {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ideas-info ul li {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(40, 167, 69, 0.1));
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.ideas-info ul li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.ideas-form {
  background: var(--background);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
}

.ideas-form h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
  text-align: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.contact-item-inline {
  margin: 0.5rem 0;
  color: var(--text);
}

.contact-item-inline strong {
  color: var(--primary);
}

.product-card ul {
  list-style: none;
  margin: 1rem 0;
}

.product-card ul li {
  margin: 0.5rem 0;
  padding-left: 0;
}

.product-card .contact-methods {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* About Section */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: var(--light-gray);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
}

.founder-card {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  object-position: center top;
}

.founder-card .founder-bio {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Contact Section */
.contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background: white;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.contact-top-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-address {
  width: 100%;
  max-width: 300px;
}

.info-item {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  min-width: 280px;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-item p {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--text);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

/* Product Detail Page */
.product-detail {
  padding: 120px 0 60px;
}

.product-detail h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-content img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-info {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-info .tagline {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-info h2 {
  margin: 1.5rem 0 1rem;
}

.product-info ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-info ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-info ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.product-meta {
  margin: 2rem 0;
  padding: 1rem;
  background: var(--background);
  border-radius: 10px;
}

.tag.large {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

/* Products Dropdown */
.products-menu {
  position: relative;
  display: inline-block;
}

.products-menu:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 0.5rem 0;
  z-index: 1000;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .hero-cta-box p {
    font-size: 1.2rem;
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .product-carousel-container {
    min-height: 500px;
  }

  .product-slide {
    padding: 0 5%;
  }

  .product-card-large {
    max-width: 90%;
  }

  .product-card-large img {
    height: 250px;
  }

  .product-content {
    padding: 1.2rem;
    min-height: 150px;
  }

  .product-card {
    width: 90vw;
    padding: 1.5rem;
  }

  .product-content h3 {
    font-size: 1.3rem;
  }

  .product-content p {
    font-size: 1rem;
  }

  nav {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  nav ul ul {
    position: static;
    display: none;
    background: rgba(248, 249, 250, 0.9);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0.5rem;
    width: 90%;
  }

  nav ul li.dropdown-open > ul {
    display: block;
  }

  nav ul ul li a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

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

  .founders-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .founder-card {
    padding: 1.5rem;
  }

  .founder-card img {
    width: 100px;
    height: 100px;
  }

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

  .ideas-form {
    padding: 1.5rem;
  }

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

  .custom-form {
    padding: 1.5rem;
  }

  .contact-top-row {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-address {
    max-width: 100%;
  }
}