
/* Block 1 */
.hero-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 79, 0.85) 0%, rgba(26, 26, 26, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 0;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #e76f51 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 162, 97, 0.5);
  color: #fff;
  background: linear-gradient(135deg, #e76f51 0%, var(--accent-color) 100%);
}

.hero-cta-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hero-banner {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.smart-storage-solutions {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.storage-content {
  padding: 2rem 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), #e76f51);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.storage-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.storage-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.storage-features {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.2);
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

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

.storage-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.storage-btn.primary {
  background: var(--primary-color);
  color: #fff;
}

.storage-btn.primary:hover {
  background: #234a3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 79, 0.3);
  color: #fff;
}

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

.storage-btn.secondary:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.storage-visual {
  position: relative;
  padding: 2rem 1rem;
}

.image-stack {
  position: relative;
  margin-bottom: 2rem;
}

.main-storage-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.primary-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.image-overlay {
  background: linear-gradient(45deg, rgba(44, 95, 79, 0.9), rgba(138, 184, 153, 0.8));
  border-radius: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-storage-image:hover .image-overlay {
  opacity: 1;
}

.overlay-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.floating-storage-cards {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.storage-card {
  position: relative;
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.storage-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-label {
  background: rgba(44, 95, 79, 0.95);
  color: #fff;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.storage-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #dee2e6;
  margin: 0 1rem;
}

@media (max-width: 991px) {
  .storage-title {
    font-size: 2.2rem;
  }
  
  .storage-cta {
    justify-content: center;
  }
  
  .storage-visual {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .smart-storage-solutions {
    padding: 3rem 0;
  }
  
  .storage-title {
    font-size: 1.8rem;
  }
  
  .storage-cta {
    flex-direction: column;
  }
  
  .storage-btn {
    justify-content: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .floating-storage-cards {
    flex-direction: column;
  }
  
  .storage-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    width: 80%;
    height: 1px;
    margin: 0;
  }
}

/* Block 3 */
.digital-organization-hub {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  overflow: hidden;
}

.hub-header {
  margin-bottom: 4rem;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), #e76f51);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.hub-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hub-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hub-main-content {
  margin-bottom: 4rem;
}

.tech-showcase {
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

.tech-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.primary-tech {
  grid-row: 1 / 3;
}

.secondary-tech {
  grid-column: 2;
  grid-row: 1;
}

.tertiary-tech {
  grid-column: 2;
  grid-row: 2;
}

.tech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tech-item:hover .tech-image {
  transform: scale(1.05);
}

.tech-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
  transform: translateY(70%);
  transition: transform 0.4s ease;
}

.tech-item:hover .tech-overlay {
  transform: translateY(0);
}

.tech-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-info p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.tech-metrics {
  display: flex;
  gap: 1rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.tech-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(44, 95, 79, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.floating-indicators {
  position: absolute;
  top: -1rem;
  right: -2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  background: white;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
  transform: translateX(50px);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.indicator.active {
  transform: translateX(0);
  opacity: 1;
  box-shadow: 0 12px 35px rgba(44, 95, 79, 0.2);
}

.indicator:hover {
  transform: translateX(-5px);
}

.indicator-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-text {
  display: flex;
  flex-direction: column;
}

.indicator-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.indicator-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

.integration-features {
  padding-left: 2rem;
}

.feature-group {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-header p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feature-list {
  margin-bottom: 2.5rem;
}

.integration-feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.integration-feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent-color), #e76f51);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(44, 95, 79, 0.1);
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.integration-actions {
  display: flex;
  gap: 1rem;
}

.integration-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 95, 79, 0.3);
  color: white;
}

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

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

.technology-stats {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #e76f51);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

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

.stat-description {
  color: #6c757d;
  font-weight: 500;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .hub-title {
    font-size: 2.5rem;
  }
  
  .integration-features {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .showcase-grid {
    height: 400px;
  }
  
  .floating-indicators {
    position: relative;
    top: 2rem;
    right: 0;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .indicator {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .digital-organization-hub {
    padding: 3rem 0;
  }
  
  .hub-title {
    font-size: 2rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  
  .primary-tech,
  .secondary-tech,
  .tertiary-tech {
    grid-column: 1;
    grid-row: auto;
    height: 250px;
  }
  
  .integration-actions {
    flex-direction: column;
  }
  
  .tech-showcase {
    margin-bottom: 2rem;
  }
  
  .feature-group {
    padding: 1.5rem;
  }
  
  .integration-feature {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .floating-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .indicator {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hub-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .hub-title {
    font-size: 1.8rem;
  }
  
  .hub-subtitle {
    font-size: 1.1rem;
  }
  
  .technology-stats {
    padding: 2rem 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 0.5rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

/* Block 4 */
.consultation-booking {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.consultation-booking::before {
    content: '';
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23dee2e6" opacity="0.3"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.booking-wrapper {
    position: relative;
    z-index: 2;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), #e76f51);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.booking-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.booking-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(44, 95, 79, 0.2);
}

.benefit-text h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.consultation-highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.highlight-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.highlight-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.booking-form-container {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.form-header p {
    color: #6c757d;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-bottom-color: var(--accent-color);
}

.form-input:focus + .input-underline {
    width: 100%;
}

.input-underline {
    background: var(--accent-color);
    height: 2px;
    width: 0;
    transition: width 0.3s ease;
    margin-top: -2px;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 79, 0.4);
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.security-notice i {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .booking-title {
        font-size: 2.2rem;
    }
    
    .consultation-booking {
        padding: 3rem 0;
    }
    
    .booking-form-container {
        margin-top: 3rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-title {
        font-size: 1.8rem;
    }
    
    .consultation-highlights {
        justify-content: center;
    }
    
    .highlight-card {
        min-width: 100px;
    }
    
    .benefit-item {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .consultation-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
}
