/* Dukens Enterprise - Custom Styles */

/* CSS Variables */
:root {
  --navy-blue: #011F4B;
  --navy-dark: #001533;
  --red: #FF0000;
  --red-dark: #CC0000;
  --red-light: #FF3333;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --gray: #6B7280;
  --dark-gray: #374151;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-blue);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(1, 31, 75, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(1, 31, 75, 0.15);
}

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

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-accent {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy-blue);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-links a:hover {
  color: var(--red);
}

.nav-links a.active {
  color: var(--red);
  font-weight: 700;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

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

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(1, 31, 75, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-dark) 50%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--red-light);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-blue);
}

.btn-navy {
  background: var(--navy-blue);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(1, 31, 75, 0.4);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(1, 31, 75, 0.5);
}

/* Sections */
.section {
  padding: 6rem 2rem;
}

.section-light {
  background: var(--light-gray);
}

.section-navy {
  background: var(--navy-blue);
  color: var(--white);
}

.section-navy h2 {
  color: var(--white);
}

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

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(1, 31, 75, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(1, 31, 75, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(1, 31, 75, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy-blue), var(--red));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 35px;
  height: 35px;
  color: var(--white);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Explore Cards */
.explore-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 500px) {
  .explore-cards {
    grid-template-columns: 1fr;
  }
}

.explore-card {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
  border-radius: 24px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.explore-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.explore-card:hover {
  transform: scale(1.02);
}

.explore-card:hover::before {
  transform: translate(-20%, 20%);
}

.explore-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.explore-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.explore-card .btn {
  position: relative;
  z-index: 1;
}

/* Page Hero */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Logistics Page */
.logistics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .logistics-content {
    grid-template-columns: 1fr;
  }
}

.logistics-text h2 {
  margin-bottom: 1.5rem;
}

.logistics-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.logistics-list {
  list-style: none;
  margin-bottom: 2rem;
}

.logistics-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-gray);
}

.logistics-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

.logistics-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1, 31, 75, 0.2);
}

.logistics-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Partner Highlight */
.partner-highlight {
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark));
  border-radius: 24px;
  padding: 4rem;
  color: var(--white);
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.partner-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 50%);
}

.partner-highlight h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.partner-highlight p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.partner-highlight .brand-name {
  color: var(--red-light);
  font-weight: 700;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--navy-blue));
}

.timeline-item:last-child::after {
  display: none;
}

@media (max-width: 900px) {
  .timeline-item:nth-child(2)::after,
  .timeline-item:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 500px) {
  .timeline-item::after {
    display: none;
  }
}

.timeline-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), var(--navy-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

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

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(1, 31, 75, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy-blue);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(1, 31, 75, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.error-message {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.success-message {
  background: #10B981;
  color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy-blue), var(--red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.info-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-content p {
  color: var(--gray);
}

.map-placeholder {
  margin-top: 2rem;
  background: var(--light-gray);
  border-radius: 16px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

/* Products Coming Soon */
.coming-soon {
  text-align: center;
  padding: 4rem;
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--red), var(--navy-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse 2s infinite;
}

.coming-soon-icon svg {
  width: 60px;
  height: 60px;
  color: var(--white);
}

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

.product-placeholder {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px dashed rgba(1, 31, 75, 0.2);
}

.product-placeholder-icon {
  width: 80px;
  height: 80px;
  background: rgba(1, 31, 75, 0.1);
  border-radius: 16px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-placeholder h4 {
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--red);
}

.footer-description {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px 10px rgba(255, 0, 0, 0.2);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy-blue); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

