/* Press Brake UAE - Improved Professional Design */

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

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary: #10b981;
  --accent: #f59e0b;
  --text: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-tagline {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

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

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.938rem;
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Trust Bar */
.trust-bar {
  background: var(--bg-lighter);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

/* Hero Section - Improved */
.hero-improved {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.1;
}

.hero-highlight {
  color: var(--primary);
  display: inline-block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.063rem;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-white-large {
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.063rem;
}

.btn-white-large:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-stats-new {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-new {
  display: flex;
  flex-direction: column;
}

.stat-new strong {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

.stat-new span {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
}

.machine-showcase {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-title-left {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  text-align: left;
}

.section-description {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Products Section - Enhanced */
.products-enhanced {
  padding: 5rem 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.product-card-enhanced {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-badge.popular {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.product-icon-large {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card-enhanced h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.product-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.specs-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.specs-list li {
  padding: 0.625rem 0;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.938rem;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-lighter);
  color: var(--text);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.813rem;
  font-weight: 500;
}

/* Industries Section */
.industries {
  padding: 5rem 0;
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.industry-card svg {
  margin-bottom: 1rem;
}

.industry-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.industry-card p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  opacity: 0.2;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card:hover .service-number {
  color: white;
  opacity: 0.3;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card:hover h4,
.service-card:hover p {
  color: white;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 5rem 0;
  background: var(--bg-lighter);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-list li strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 1.063rem;
}

.why-list li span {
  color: var(--text-light);
  font-size: 0.938rem;
}

.stats-box {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-large {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box {
  background: transparent;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content {
  margin-bottom: 2rem;
}

.cta-content h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Section - Enhanced */
.contact-enhanced {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

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

.contact-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: white;
  border-color: var(--primary-light);
}

.contact-card svg {
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-form-enhanced {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
  font-size: 0.938rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* Footer - Enhanced */
.footer-enhanced {
  background: var(--text);
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-about p {
  color: #94a3b8;
  line-height: 1.7;
}

.footer-col h5 {
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.063rem;
  font-weight: 600;
}

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

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

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.938rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

  .section-title {
    font-size: 2rem;
  }

  .hero-stats-new {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .trust-items {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .products-grid,
  .industries-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========================================
   QUOTE PAGE STYLES
   ======================================== */

.quote-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-top: 0;
}

.quote-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.quote-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.quote-description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.quote-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.quote-form-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.quote-form-wrapper {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.quote-form-enhanced .form-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--bg-lighter);
}

.quote-form-enhanced .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9375rem;
}

.checkbox-label:hover {
  border-color: var(--primary-light);
  background: rgba(37, 99, 235, 0.03);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--primary);
}

/* Quote Sidebar */
.quote-sidebar {
  position: sticky;
  top: 100px;
}

.quote-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.quote-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-step {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-content strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.quote-contact {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
}

.quote-contact h4,
.quote-contact p,
.quote-contact strong {
  color: white;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-quick strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-quick p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.quote-trust {
  border: 2px solid var(--primary);
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path d="M7 10l2 2 4-4"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Button Styles */
.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-sidebar {
    position: static;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  
  .quote-title {
    font-size: 2.25rem;
  }
  
  .quote-features {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .quote-hero {
    padding: 3rem 0 2rem;
  }
  
  .quote-title {
    font-size: 1.875rem;
  }
  
  .quote-description {
    font-size: 1rem;
  }
  
  .quote-form-wrapper {
    padding: 1.5rem;
  }
  
  .quote-card {
    padding: 1.5rem;
  }
}


/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

.resources-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 4rem 0 3rem;
  margin-top: 0;
}

.resources-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.resources-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.resources-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.resources-description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.calculators-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.calculator-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.calculator-header {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.calculator-header svg {
  margin-bottom: 1rem;
}

.calculator-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.calculator-header p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.calculator-body {
  padding: 2rem;
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-input-group label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.calc-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.calc-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.calc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.calc-button:active {
  transform: translateY(0);
}

.calc-result {
  margin-top: 1.5rem;
  min-height: 60px;
}

.result-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid var(--secondary);
  border-radius: 12px;
  padding: 1.5rem;
}

.result-error {
  background: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: 12px;
  padding: 1.5rem;
  color: #dc2626;
  font-weight: 600;
  text-align: center;
}

.result-main {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.result-main strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.result-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.result-recommendation {
  font-size: 1.0625rem;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed var(--border);
}

.result-recommendation strong {
  color: var(--text);
  font-size: 1.125rem;
}

/* Technical Info Section */
.technical-info-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 3rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.formula {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  border: 2px solid var(--primary);
  font-family: 'Courier New', monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.formula-legend {
  list-style: none;
  padding: 0;
  font-size: 0.9375rem;
}

.formula-legend li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.formula-legend li:last-child {
  border-bottom: none;
}

.formula-legend strong {
  display: inline-block;
  min-width: 30px;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Courier New', monospace;
  margin-right: 0.5rem;
}

/* Resources CTA */
.resources-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-xl);
}

.resources-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.resources-cta p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.btn-secondary:hover {
  background: transparent;
  color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
  .calculators-grid {
    grid-template-columns: 1fr;
  }

  .resources-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

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

@media (max-width: 640px) {
  .resources-hero {
    padding: 3rem 0 2rem;
  }

  .resources-title {
    font-size: 1.875rem;
  }

  .resources-description {
    font-size: 1rem;
  }

  .calculator-header {
    padding: 1.5rem;
  }

  .calculator-body {
    padding: 1.5rem;
  }

  .technical-info-section {
    padding: 2rem 1.5rem;
  }

  .resources-cta {
    padding: 2rem 1.5rem;
  }

  .resources-cta h3 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Navigation Active State */
.nav-menu a.active {
  color: var(--primary);
  font-weight: 600;
}


/* ========================================
   PRODUCT PAGES STYLES
   ======================================== */

.product-hero {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: white;
  padding: 2rem 0 4rem;
  margin-top: 0;
}

.breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.product-hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.product-hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.product-hero-ctas {
  display: flex;
  gap: 1rem;
}

.product-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Product Features Section */
.product-features-section {
  padding: 4rem 0;
  background: white;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Models Section */
.models-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-top: -1.5rem;
  margin-bottom: 3rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.model-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.model-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
}

.model-header {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.model-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.model-tonnage {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.model-specs {
  padding: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.spec-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.model-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Applications Section */
.applications-section {
  padding: 4rem 0;
  background: white;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.application-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.application-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
  border-left-color: var(--secondary);
}

.application-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.application-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Product CTA Section */
.product-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
}

.product-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.product-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-cta-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.product-cta-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.trust-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-hero-image {
    order: -1;
  }

  .product-hero-image svg {
    max-width: 100%;
    height: auto;
  }

  .product-hero-title {
    font-size: 2.5rem;
  }

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

  .product-hero-ctas {
    flex-direction: column;
  }

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

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

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

  .cta-trust {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .product-hero {
    padding: 1.5rem 0 3rem;
  }

  .product-hero-title {
    font-size: 2rem;
  }

  .product-hero-description {
    font-size: 1rem;
  }

  .product-cta-content h2 {
    font-size: 1.875rem;
  }

  .product-cta-content .cta-buttons {
    flex-direction: column;
  }

  .trust-item strong {
    font-size: 2rem;
  }
}


/* ========================================
   NAVIGATION DROPDOWN STYLES
   ======================================== */

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Mobile dropdown toggle */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    background: var(--bg-light);
    border-radius: 0;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

