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

:root {
  --primary-black: #000000;
  --charcoal: #1a1a1a;
  --slate: #333333;
  --light-gray: #f8f9fa;
  --medium-gray: #6b7280;
  --dark-gray: #4b5563;
  --accent-gold: #f59e0b;
  --pure-white: #ffffff;
  
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  
  color: var(--charcoal);
  background-color: var(--pure-white);
  
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--primary-black);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

h2 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  font-size: 1.15rem;
  color: var(--medium-gray);
  line-height: 1.8;
  font-weight: 400;
}

.large-text {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
}

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

.section {
  padding: 8rem 0;
}

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

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

.btn-primary {
  background: var(--primary-black);
  color: var(--pure-white);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 6px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: var(--charcoal);
}

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

.btn-secondary:hover {
  background: var(--primary-black);
  color: var(--pure-white);
  transform: translateY(-1px);
}

/* Cards */
.card {
  background: var(--pure-white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-black), var(--medium-gray));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.card:hover::before {
  transform: translateX(0);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 80px;
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
}

.logo {
  width: 40px;
  height: 40px;
  background: var(--primary-black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name {
  color: var(--primary-black);
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--medium-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-black);
}

.cta-button {
  margin-left: 1rem;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-black) 100%);
  color: var(--pure-white);
  padding: 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-decoration-1 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-decoration-2 {
  position: absolute;
  bottom: 20%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.01) 49%, rgba(255,255,255,0.01) 51%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.01) 49%, rgba(255,255,255,0.01) 51%, transparent 51%);
  background-size: 60px 60px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hero-title {
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--pure-white) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-title-accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.hero-description {
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  font-size: 1.2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--accent-gold);
  color: var(--primary-black);
  font-weight: 600;
  padding: 1.3rem 3rem;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--pure-white);
  padding: 1.3rem 3rem;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--pure-white), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-quote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(10px);
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.quote-author {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0,0,0,0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0,0,0,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--primary-black);
  color: var(--pure-white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  color: var(--primary-black);
  margin-bottom: 2rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--medium-gray);
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  position: relative;
  overflow: hidden;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:nth-child(even) {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-black), var(--medium-gray));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.15),
    0 25px 80px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--primary-black);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  color: var(--primary-black);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-description {
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.service-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.arrow-line {
  width: 50px;
  height: 2px;
  background: var(--primary-black);
  position: relative;
  transition: all 0.3s ease;
}

.arrow-head {
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--primary-black);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Services CTA */
.services-cta {
  text-align: center;
  padding: 4rem;
  background: var(--primary-black);
  border-radius: 20px;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.services-cta-decoration-1 {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.services-cta-decoration-2 {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.services-cta-content {
  position: relative;
  z-index: 1;
}

.services-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--pure-white);
}

.services-cta-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-cta-primary {
  background: var(--accent-gold);
  color: var(--primary-black);
  font-weight: 600;
  padding: 1.3rem 3rem;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.services-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.services-cta-secondary {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.3rem 3rem;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.services-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  background: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.about-decoration {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.about-badge {
  background: linear-gradient(135deg, var(--primary-black), var(--charcoal));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--pure-white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(245, 158, 11, 0.6));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: translateX(0);
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  min-width: 60px;
  text-align: center;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.benefit-description {
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
  color: var(--medium-gray);
}

.about-cta {
  background: linear-gradient(135deg, var(--charcoal), var(--primary-black));
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--pure-white);
}

.about-cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--pure-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-button {
  background: var(--accent-gold);
  color: var(--primary-black);
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Contact Section */
.contact-section {
  background: var(--light-gray);
}

.contact-title {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--medium-gray);
}

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

.contact-info-title {
  color: var(--primary-black);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-black);
}

.contact-value {
  color: var(--medium-gray);
}

.contact-cta {
  background: linear-gradient(135deg, var(--charcoal), var(--primary-black));
  color: var(--pure-white);
  padding: 2rem;
  border-radius: 12px;
}

.contact-cta-title {
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.contact-cta-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-container {
  /* Card styles already applied */
}

.contact-form-title {
  color: var(--primary-black);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-form {
  /* Form styles */
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-black);
}

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

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

.form-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  color: var(--pure-white);
  margin: 0;
  font-size: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-link:hover {
  color: var(--accent-gold);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  color: rgba(255, 255, 255, 0.8);
}

.footer-hours-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.hours-block {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--accent-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
    max-width: 100%;
  }
  
  h1 {
    font-size: 3rem !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
  }
  
  h2 {
    font-size: 2rem !important;
    letter-spacing: -0.03em !important;
    line-height: 1.2 !important;
  }
  
  h3 {
    font-size: 1.5rem !important;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .large-text {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }
  
  p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
  
  /* Header mobile responsive */
  .header-nav {
    display: flex !important;
    gap: 1.5rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.5rem;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .header-nav::-webkit-scrollbar {
    display: none;
  }
  
  .header-container {
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
    flex-wrap: nowrap !important;
  }
  
  .nav-link {
    white-space: nowrap;
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
    flex-shrink: 0;
  }
  
  .cta-button {
    margin-left: 1rem !important;
    flex-shrink: 0;
    white-space: nowrap;
  }
  
  
  /* Hero mobile adjustments */
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    text-align: center;
    padding: 2rem 0 !important;
    min-height: 60vh !important;
  }
  
  .hero-section {
    margin-top: 120px !important;
  }
  
  .hero-content {
    padding-right: 0 !important;
  }
  
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .hero-visual {
    padding-left: 0 !important;
  }
  
  .hero-title {
    font-size: 3rem !important;
    letter-spacing: -0.04em !important;
    line-height: 1.1 !important;
  }
  
  .hero-subtitle {
    font-size: 1.3rem !important;
  }
  
  .hero-description {
    font-size: 1.1rem !important;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 1.2rem 2rem !important;
    font-size: 1rem !important;
  }
  
  /* Services mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-description {
    font-size: 1.1rem !important;
  }
  
  .services-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Benefits mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
    box-shadow: 
      0 1px 4px rgba(0, 0, 0, 0.06),
      0 4px 12px rgba(0, 0, 0, 0.04);
  }
  
  .benefit-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.1),
      0 8px 24px rgba(0, 0, 0, 0.06);
  }
  
  /* Contact mobile */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  
  h1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
  }
  
  h2 {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }
  
  h3 {
    font-size: 1.3rem !important;
  }
  
  p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .hero-container {
    gap: 2rem !important;
    min-height: 50vh !important;
  }
  
  .large-text {
    font-size: 1rem !important;
  }
  
  .hero-title {
    font-size: 2.2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.2rem !important;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .services-cta-buttons .btn,
  .about-cta-button,
  .form-submit {
    width: 100% !important;
  }
}