/* Business Asset Finance - Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --navy-blue: #1B3A6B;
  --navy-dark: #142d54;
  --charcoal: #1a1a1a;
  --light-grey: #f5f5f7;
  --mid-grey: #e8e8ea;
  --white: #ffffff;
  --text-base: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--navy-blue);
}

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

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-blue);
}

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

.nav-menu a {
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.3s;
  font-size: 17px;
}

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

.nav-item {
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 45, 84, 0.88) 0%, rgba(27, 58, 107, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 22px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: #14325a;
}

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

.btn-secondary:hover {
  background: var(--light-grey);
}

/* Section Styles */
section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--navy-blue);
  margin: 14px auto 0;
  opacity: 0.4;
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--charcoal);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

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

/* Cards */
.card {
  background: var(--white);
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--navy-blue);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--navy-blue);
}

.card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
}

.card-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--navy-blue);
  font-weight: 600;
  font-size: 16px;
}

.card-link:hover {
  text-decoration: underline;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

.service-card-content {
  padding: 30px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy-blue);
}

.service-card p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Content Sections */
.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.content-section h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--navy-blue);
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.content-section ul li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.content-section ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--navy-blue);
  font-weight: 700;
  font-size: 22px;
}

/* Contact Form */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background: var(--light-grey);
  padding: 35px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.contact-info p {
  font-size: 19px;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--navy-blue);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-blue);
}

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

.form-group button {
  width: 100%;
  margin-top: 10px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #111827;
  color: var(--white);
  padding: 60px 0 0;
  border-top: 4px solid var(--navy-blue);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  font-size: 16px;
  color: var(--white);
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--light-grey);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #2d3748;
  font-size: 14px;
  color: #9ca3af;
}
.footer-bottom a {
  color: #9ca3af;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--white);
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--white);
    width: 100%;
    text-align: center;
    transition: left 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    padding: 15px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 10px;
    padding: 10px 0;
    background: var(--light-grey);
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 19px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .logo {
    font-size: 18px;
  }
}
