/* VertiFibre One - Main Stylesheet */

/* Base Styles & Variables */
:root {
  --primary-color: #14151A;
  --secondary-color: #D4AF37;
  --accent-color: #9A7D0A;
  --bg-light: #F8F5E6;
  --bg-dark: #242736;
  --text-dark: #1A1A1A;
  --text-light: #F8F5E6;
  --error-color: #B71C1C;
  --success-color: #2E7D32;
  --border-color: rgba(212, 175, 55, 0.3);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

#reject-cookies, #manage-cookies {
  color: white;
}

a:hover, a:focus {
  color: var(--accent-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

.uk-button {
  font-weight: 500;
  text-transform: none;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

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

.uk-button-primary:hover, 
.uk-button-primary:focus {
  background-color: var(--accent-color);
  color: var(--bg-light);
  border-color: var(--accent-color);
}

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

.uk-button-secondary:hover, 
.uk-button-secondary:focus {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.uk-button-default {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.uk-button-default:hover, 
.uk-button-default:focus {
  background-color: var(--primary-color);
  color: var(--bg-light);
}

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

.uk-button-text:hover, 
.uk-button-text:focus {
  color: var(--accent-color);
}

.section-title {
  position: relative;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.uk-text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.required {
  color: var(--error-color);
}

/* Art Deco Patterns & Elements */
.art-deco-pattern {
  position: relative;
  overflow: hidden;
}

.art-deco-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%, transparent 75%, var(--secondary-color) 75%),
                    linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%, transparent 75%, var(--secondary-color) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.05;
  z-index: -1;
}

.art-deco-divider {
  position: relative;
  height: 30px;
  margin: 3rem 0;
  text-align: center;
}

.art-deco-divider::before,
.art-deco-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.art-deco-divider::before {
  left: 0;
}

.art-deco-divider::after {
  right: 0;
}

.art-deco-divider span {
  display: inline-block;
  position: relative;
  padding: 0 15px;
  background: var(--bg-light);
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Cookie Banner & Modal */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.cookie-buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Header & Navigation */
.site-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.uk-navbar-container.uk-navbar-transparent {
  background: transparent;
}

.uk-navbar-nav > li > a {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  min-height: 60px;
  text-transform: none;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--secondary-color);
}

.contact-phone {
  color: var(--secondary-color);
  font-weight: 500;
}

.contact-phone:hover,
.contact-phone:focus {
  color: var(--accent-color);
}

/* Mega Menu */
.mega-menu-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem 0;
  box-shadow: var(--shadow-lg);
  z-index: 990;
}

.uk-navbar-nav > li:hover .mega-menu-container {
  display: block;
}

.mega-menu-title {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.mega-menu-feature {
  margin-top: 1.5rem;
}

.mega-menu-feature img {
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.5rem;
}

.mega-menu-feature h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mega-menu-feature p {
  color: rgba(248, 245, 230, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.uk-nav-default > li > a {
  color: var(--text-light);
  padding: 8px 0;
}

.uk-nav-default > li > a:hover,
.uk-nav-default > li > a:focus {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, var(--secondary-color) 25%, transparent 25%),
                    linear-gradient(225deg, var(--secondary-color) 25%, transparent 25%),
                    linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%),
                    linear-gradient(315deg, var(--secondary-color) 25%, transparent 25%);
  background-position: 20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
  opacity: 0.03;
  z-index: 0;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(248, 245, 230, 0.9);
}

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

.hero-image {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-fact {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(20, 21, 26, 0.85);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--secondary-color);
}

.hero-fact span {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

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

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

/* For intl-tel-input */
.iti {
  width: 100%;
}

/* Value Proposition Section */
.value-proposition-section {
  padding: 5rem 0;
  background-color: white;
}

.value-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  transition: transform var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary-color);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.value-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.how-it-works-section .section-title {
  color: var(--text-light);
}

.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3rem 0;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
  font-size: 2rem;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.flow-step h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .flow-diagram {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
    justify-content: center;
  }
}

/* Services Summary Section */
.services-summary-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.service-block {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.service-block h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.service-block h3 i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

.service-block ul {
  margin-top: 1rem;
}

/* Single SLA Section */
.single-sla-section {
  padding: 5rem 0;
  background-color: white;
}

/* Pricing Teaser Section */
.pricing-teaser-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.pricing-teaser-section .section-title {
  color: var(--text-light);
}

.pricing-card {
  background-color: var(--bg-dark);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  text-align: center;
  border-bottom: 5px solid var(--secondary-color);
}

.pricing-header h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.pricing-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
}

.pricing-value span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  min-height: 300px;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(248, 245, 230, 0.9);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.pricing-features li strong {
  color: var(--secondary-color);
}

.pricing-footer {
  padding: 1.5rem;
  text-align: center;
  background-color: rgba(20, 21, 26, 0.3);
}

/* Troubleshooting Section */
.troubleshooting-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step .step-icon {
  background-color: var(--primary-color);
}

.process-step h3 {
  color: var(--primary-color);
  margin: 1rem 0 0.5rem;
}

/* Technical Highlights Section */
.technical-highlights-section {
  padding: 5rem 0;
  background-color: white;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.highlight-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.uk-accordion-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.uk-accordion-title:hover,
.uk-accordion-title:focus {
  color: var(--secondary-color);
  background-color: rgba(212, 175, 55, 0.05);
}

.uk-accordion-content {
  padding: 0 1.5rem 1.5rem;
  margin-top: 0;
  background-color: white;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  border-top: none;
}

/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  margin-top: 5px;
}

.site-footer h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

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

.site-footer .uk-list li {
  margin-bottom: 0.75rem;
}

.site-footer .uk-list a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.site-footer .uk-list a:hover,
.site-footer .uk-list a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 245, 230, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyright {
  color: rgba(248, 245, 230, 0.7);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(248, 245, 230, 0.7);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--secondary-color);
}

/* Success Modal */
.success-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero-section {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.about-hero-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-section {
  padding: 5rem 0;
  background-color: white;
}

.mission-text {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--primary-color);
  font-weight: 300;
}

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

.unique-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.unique-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.footprint-section {
  padding: 5rem 0;
  background-color: white;
}

.interconnect-card {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
}

.interconnect-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-model-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.service-table {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem;
  font-weight: 500;
}

.service-table td {
  padding: 1rem;
  vertical-align: middle;
}

.service-table tr:nth-child(even) {
  background-color: rgba(212, 175, 55, 0.05);
}

.compliance-section {
  padding: 5rem 0;
  background-color: white;
}

.compliance-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
}

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

.cta-section {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

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

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Pricing Page Styles */
.pricing-hero-section {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.pricing-hero-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-overview-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.pricing-note {
  background-color: rgba(212, 175, 55, 0.1);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--secondary-color);
}

.pricing-note i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

.calculator-section {
  padding: 5rem 0;
  background-color: white;
}

.calculator-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

.calculator-result {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin: 2rem 0;
  text-align: center;
}

.result-label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.result-note {
  font-size: 0.9rem;
  color: rgba(248, 245, 230, 0.7);
}

.calculator-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-transparency-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.included-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
}

.included-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.procurement-sla-section {
  padding: 5rem 0;
  background-color: white;
}

/* Contact Page Styles */
.contact-hero-section {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.contact-hero-image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.contact-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info .contact-item {
  margin-bottom: 0;
}

.contact-info .contact-item i {
  font-size: 1.5rem;
  width: 40px;
}

.contact-info .contact-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.department-contacts {
  margin-top: 3rem;
}

.department-card {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
}

.department-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.department-card p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.department-card i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
}

/* Thank You Page Styles */
.thank-you-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.next-steps {
  text-align: left;
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--secondary-color);
}

.next-steps h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.thank-you-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-content-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.legal-content h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-toc {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.legal-toc h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.legal-toc ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  columns: 2;
}

@media (max-width: 768px) {
  .legal-toc ul {
    columns: 1;
  }
}

.legal-toc ul li {
  margin-bottom: 0.5rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
}

.legal-section ul, .legal-section ol {
  margin-bottom: 1.5rem;
}

.legal-section table {
  margin: 1.5rem 0;
  border-collapse: collapse;
  width: 100%;
}

.legal-section table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem;
  text-align: left;
}

.legal-section table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section table tr:nth-child(even) {
  background-color: rgba(212, 175, 55, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 960px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .value-card {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 1rem;
  }
  
  .legal-content {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-cta, .cta-buttons, .thank-you-cta {
    flex-direction: column;
  }
  
  .contact-form, .calculator-form {
    padding: 1.5rem;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }