/*
Theme Name: Liberty Business Trust
Theme URI: https://libertybusinesstrust.com
Description: Luxury Banking Theme for Liberty Business Trust LLC
Version: 1.0
Author: Liberty Business Trust
Author URI: https://libertybusinesstrust.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-business-trust
Domain Path: /languages
*/

:root {
  --primary-navy: #0A1628;
  --primary-gold: #B8960C;
  --primary-white: #FAFAF7;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

html, body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-white);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }

/* Navigation */
.navbar {
  background-color: var(--primary-navy);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar-brand {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-menu a {
  color: var(--primary-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.lang-toggle {
  background-color: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background-color: var(--primary-gold);
  color: var(--primary-navy);
}

.cta-button {
  background-color: var(--primary-gold);
  color: var(--primary-navy);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d4a814;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 150, 12, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.5) 100%), url('https://d2xsxph8kpxj0f.cloudfront.net/310519663517969313/jy9TU2wUk4DRhxMPYRRLE3/hero-bg-J53rrrFCoC8EM5d43bcucG.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-white);
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-content h1 .gold-text {
  color: var(--primary-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-number {
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}

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

section.white-bg {
  background-color: var(--primary-white);
  color: var(--text-dark);
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary-gold);
  margin: 1.5rem auto;
}

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

.service-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--primary-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(184, 150, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-left: 4px solid var(--primary-gold);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.testimonial-info h4 {
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1);
}

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: var(--primary-white);
  padding: 3rem 2rem;
  margin-top: 5rem;
}

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

.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 150, 12, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Floating Contact Button */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 150, 12, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-contact:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(184, 150, 12, 0.6);
}

.floating-contact svg {
  width: 30px;
  height: 30px;
  color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .hero-buttons button {
    width: 100%;
    max-width: 300px;
  }

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

  section {
    padding: 3rem 1rem;
  }

  .floating-contact {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}

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

.animate-fade-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.py-5 { padding: 5rem 0; }
