:root {
  --primary: #102a42;
  --secondary: #1d3b58;
  --accent: #9a8866;
  --accent-light: #c7b99c;
  --light: #f8f9fa;
  --dark: #0a1929;
  --gray: #6c757d;
  --light-gray: #f0f2f5;
  --off-white: #f7f7f7;
  --shadow: rgba(0, 0, 0, 0.05);
  --premium-shadow: rgba(10, 25, 41, 0.1);
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #fff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--primary);
}

p {
  margin-bottom: 15px;
  color: var(--secondary);
  font-weight: 300;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.divider {
  width: 70px;
  height: 3px;
  background-color: var(--accent);
  margin: 20px auto 30px;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
}

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

.btn.primary:hover {
  background-color: var(--dark);
  border-color: var(--dark);
}

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

.btn.secondary:hover {
  background-color: rgba(10, 25, 41, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
  letter-spacing: 1px;
  line-height: 1;
}

.logo .tagline {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

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

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 200px 0 150px;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 41, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero .btn.secondary {
  color: white;
  border-color: white;
}

.hero .btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--premium-shadow);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
  border-radius: 4px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text .btn {
  margin-top: 20px;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}

.service-card {
  background-color: white;
  padding: 50px 40px;
  border-radius: 4px;
  transition: all 0.4s ease;
  text-align: left;
  box-shadow: 0 5px 15px var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent);
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px var(--premium-shadow);
}

.service-card:hover::before {
  height: 100%;
}

.service-card .icon {
  margin-bottom: 30px;
  font-size: 40px;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  position: relative;
}

.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* Expertise Section */
.expertise {
  padding: 120px 0;
  background-color: white;
}

.expertise-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.expertise-item {
  padding: 40px 30px;
  border: 1px solid rgba(202, 202, 202, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  background-color: var(--light);
}

.expertise-item:hover {
  box-shadow: 0 10px 25px var(--premium-shadow);
  transform: translateY(-5px);
  border-color: transparent;
}

.expertise-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.expertise-item p {
  color: var(--gray);
  font-size: 15px;
}

/* Stats Section */
.stats {
  padding: 100px 0;
  background-color: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-light);
}

.stat-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonial Section */
.testimonial-section {
  padding: 120px 0;
  background-color: var(--off-white);
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.quote-icon {
  font-size: 60px;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 30px;
}

.testimonial-text p {
  font-size: 24px;
  line-height: 1.6;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 40px;
  font-style: italic;
}

.author-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--primary);
}

.author-position {
  color: var(--accent);
  font-size: 15px;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: var(--secondary);
}

.contact-item i {
  margin-right: 15px;
  font-size: 18px;
  color: var(--accent);
  margin-top: 3px;
}

.office-hours {
  padding: 25px;
  background-color: var(--light);
  border-left: 3px solid var(--accent);
}

.office-hours h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary);
}

.office-hours p {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--gray);
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: var(--light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(154, 136, 102, 0.1);
}

.form-disclosure {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.contact-form button {
  width: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-content {
  display: flex;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}

.footer-logo p {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.footer-links {
  margin-left: 160px;
  display: flex;
  gap: 60px;
}

.link-column h3 {
  font-size: 16px;
  margin-bottom: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-column ul li {
  margin-bottom: 15px;
}

.link-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.link-column ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 10px;
  max-width: 700px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent);
}

/* Media Queries */
@media (max-width: 992px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: -1;
  }

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

  .about-image::after {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  .nav-links,
  .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 150px 0 100px;
  }

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

  .hero-content p {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

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

  .testimonial-text p {
    font-size: 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .services-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }
}
