/* 
 * DuskFlare Justice - Stylesheet 
 * Moderne und professionelle Gestaltung für Rechtsanwaltskanzlei
 */

:root {
  --primary: #1D3557;   
  --primary-light: #457B9D;
  --primary-dark: #0D1B2A;
  --secondary: #E6B325;  
  --secondary-light: #F1C755;
  --secondary-dark: #C99A10;
  --accent: #A8DADC;    
  --accent-light: #C1E7E9;
  --accent-dark: #84CACB;
  --bg-light: #F1FAEE;  
  --bg-dark: #2C3E50;   
  --text: #2D3748;      
  --text-light: #718096;
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F7FAFC;
  --gray-200: #EDF2F7;
  --gray-300: #E2E8F0;
  --gray-400: #CBD5E0;
  --gray-500: #A0AEC0;
  --gray-600: #718096;
  --gray-700: #4A5568;
  --gray-800: #2D3748;
  --gray-900: #1A202C;
}


body {
  font-family: 'Tahoma', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--bg-light);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Verdana', serif;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

p {
  color: var(--text);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

.btn-light:hover {
  background-color: var(--gray-100);
  color: var(--primary-dark);
}

.btn-text {
  color: var(--primary);
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-text i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-text:hover {
  color: var(--secondary);
}

.btn-text:hover i {
  transform: translateX(5px);
}

.text-highlight {
  color: var(--secondary);
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-tag:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-tag:before {
  left: 50%;
  transform: translateX(-50%);
}


.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(var(--gray-300) 1px, transparent 1px),
    radial-gradient(var(--gray-300) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
  opacity: 0.3;
}


.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-container {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  padding: 0.7rem 1.2rem;
  color: var(--text);
  font-weight: 500;
  position: relative;
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0.5rem;
  left: 1.2rem;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active:after {
  width: calc(100% - 2.4rem);
}

.nav-contact {
  margin-left: 1rem;
}

.nav-contact-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-contact-link i {
  margin-right: 0.5rem;
}

.nav-contact-link:hover {
  background-color: var(--secondary);
  color: var(--text);
  transform: translateY(-2px);
}


.hero-section {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-item i {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-right: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--secondary);
  color: var(--text);
  border-radius: 5px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.experience-badge .number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  text-align: center;
}


.stats-section {
  padding: 2rem 0 4rem;
}

.stats-container {
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  text-align: center;
}

.stat-item {
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

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


.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
  margin-top: 2.5rem;
}

.about-feature-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.about-feature-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.about-feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}


.services-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.service-cards {
  margin-top: 3rem;
}

.service-item {
  background-color: var(--white);
  border-radius: 5px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.service-item p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.process-section {
  padding: 6rem 0;
}

.process-steps {
  margin-top: 3rem;
}

.process-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.process-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 76px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.process-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.process-item p {
  color: var(--text-light);
  margin-bottom: 0;
}


.testimonial-cta-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.testimonial-wrapper {
  margin-bottom: 5rem;
}

.testimonial-container {
  margin-top: 3rem;
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-item:before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 6rem;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--secondary-light);
  opacity: 0.3;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.testimonial-author p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-container {
  margin-top: 4rem;
}

.cta-wrapper {
  background-color: var(--primary);
  padding: 4rem 2rem;
  border-radius: 5px;
  color: var(--white);
}

.cta-wrapper h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-wrapper p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}


.page-header {
  padding: 6rem 0 4rem;
  background-color: var(--primary);
  color: var(--white);
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.services-overview {
  padding: 6rem 0;
}

.services-image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.services-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.highlight-item i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.detailed-services {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.services-detailed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.service-detailed-item {
  flex: 0 0 100%;
  max-width: 350px;
}

.service-card {
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

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

.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.service-header {
  margin-bottom: 1.5rem;
}

.service-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-body {
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

.feature-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
}

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

.feature-list li i {
  color: var(--secondary);
  margin-right: 0.8rem;
}

.service-footer {
  margin-top: auto;
}


.benefits-section {
  padding: 6rem 0;
}

.benefits-container {
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: 5px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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


.cta-section {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Стили для страницы контактов */

/* Заголовок страницы */
.contact-header {
  position: relative;
  padding: 6rem 0 8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.contact-header h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.contact-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

.wave-divider {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}


.company-message {
  padding: 5rem 0;
  background-color: var(--white);
}

.message-image {
  position: relative;
  padding: 1rem;
}



.experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.message-content {
  padding: 2rem;
}

.message-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.message-quote:before {
  content: "\"";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.signature {
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}

.signature p {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.signature span {
  color: var(--text-light);
  font-size: 0.9rem;
}


.contact-options {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.contact-tabs {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-tabs .nav-tabs {
  border-bottom: none;
  display: flex;
  justify-content: space-between;
}

.contact-tabs .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}

.contact-tabs .nav-link {
  border: none;
  border-radius: 0;
  font-size: 1.1rem;
  padding: 1rem;
  color: var(--text);
  position: relative;
}

.contact-tabs .nav-link i {
  margin-right: 0.5rem;
}

.contact-tabs .nav-link.active {
  color: var(--primary);
  background-color: transparent;
  font-weight: 600;
}

.contact-tabs .nav-link.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
}

.contact-method {
  display: flex;
  padding: 3rem;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-right: 2rem;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.contact-number, .contact-email, .contact-address {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-hours {
  color: var(--text-light);
  font-size: 0.9rem;
}


.our-approach {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.approach-timeline {
  position: relative;
  margin-top: 4rem;
}

.approach-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--primary-light);
}

.approach-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.approach-number {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.approach-content {
  flex: 1;
  margin-left: 2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.approach-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}


.contact-form-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.form-intro {
  padding-right: 3rem;
}

.form-intro h2 {
  margin-bottom: 1.5rem;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.privacy-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
}

.privacy-note p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.client-testimonial {
  margin-top: 3rem;
}

.testimonial-quote {
  position: relative;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.testimonial-quote i {
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 2.5rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.testimonial-quote p {
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author p {
  text-align: right;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form-container {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map {
  padding: 0;
  margin-top: 3rem;
}

.map-info {
  background: var(--primary);
  color: var(--white);
  padding: 3rem;
  height: 100%;
}

.map-info h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.office-item {
  display: flex;
  margin-bottom: 2rem;
}

.office-icon {
  font-size: 1.5rem;
  margin-right: 1.5rem;
  color: var(--accent);
}

.office-content h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.office-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.office-hours {
  color: rgba(255, 255, 255, 0.8);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-row .day {
  font-weight: 500;
}

.map-container {
  height: 100%;
  min-height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}


.thanks-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}


@media (max-width: 991.98px) {
  .contact-header {
    padding: 4rem 0 6rem;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
  }
  
  .message-image {
    margin-bottom: 2rem;
  }
  
  .form-intro {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .contact-method {
    flex-direction: column;
    padding: 2rem;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .approach-timeline:before {
    left: 24px;
  }
}

@media (max-width: 767.98px) {
  .contact-tabs .nav-tabs {
    flex-direction: column;
  }
  
  .contact-tabs .nav-link {
    border-radius: 0;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .contact-tabs .nav-link.active:after {
    display: none;
  }
  
  .map-info {
    padding: 2rem;
  }
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  margin-bottom: 0;
}

.info-content p span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.business-hours h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item .day {
  font-weight: 500;
}


.faq-section {
  padding: 6rem 0;
  background-color: var(--gray-100);
}

.faq-container {
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer p {
  margin-bottom: 0;
}


.thanks-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.modal-content {
  border-radius: 5px;
  overflow: hidden;
}


.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-contact ul {
  list-style: none;
  padding-left: 0;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact ul li i {
  color: var(--secondary);
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0;
}


.history-timeline {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.history-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--secondary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 3rem;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-badge {
  position: absolute;
  top: 0;
  right: -13px;
  width: 26px;
  height: 26px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  z-index: 1;
}

.timeline-item.right .timeline-badge {
  left: -13px;
  right: auto;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.timeline-content p {
  margin-bottom: 0;
}


@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .experience-badge {
    bottom: 10px;
    left: 10px;
    padding: 0.8rem;
    min-width: 100px;
  }
  
  .experience-badge .number {
    font-size: 1.5rem;
  }
  
  .history-timeline:before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  
  .timeline-badge {
    left: 7px;
    right: auto;
  }
  
  .timeline-item.right .timeline-badge {
    left: 7px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-section h2, .cta-wrapper h2 {
    font-size: 2rem;
  }
  
  .nav-contact {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .nav-contact-link {
    display: inline-block;
  }
  
  .services-detailed {
    flex-direction: column;
    align-items: center;
  }
}