.site-header .main-navigation ul, .services #icons ul, .about #icons-about ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.templatemo_clear { clear: both; }
.img_left {	float: left; margin-right: 20px; margin-bottom: 15px; }
.img_right { float: right; margin-left: 20px; margin-bottom: 15px; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #eeeeee;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #777777;
  font-size: 14px;
  line-height: 1.75em;
}

a {
  color: #b10021;
}
a:active, a:visited, a:link {
  outline: 0;
  border: 0;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #2a2a2a;
}

input, textarea {
  padding: 10px;
  border: 1px solid #cfcfcf !important;
}

/* ============================================ */
/* FULL PAGE LAYOUT - ALL SECTIONS VISIBLE */
/* ============================================ */
.full-page-layout {
  display: block !important;
}

.section {
  display: block !important;
  width: 100%;
  padding: 60px 0;
}

.homepage,
.why-us-section,
.services-section,
.service-areas-section,
.contact-section {
  display: block !important;
  width: 100%;
}

/* ============================================ */
/* HERO SECTION - MODERN & TRENDY WITH BACKGROUND IMAGE */
/* ============================================ */
.hero-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: white;
  padding: 0;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: zoomIn 0.8s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(177, 0, 33, 0.85) 0%,
    rgba(139, 0, 21, 0.80) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-bottom: 100px;
  padding: 0 30px;
  max-width: 900px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 25px 0;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  animation: slideInDown 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease 0.4s both;
}

.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #b10021;
  padding: 16px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease 0.6s both;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  color: #950019;
}

.hero-cta-btn:hover::before {
  left: 100%;
}

.hero-services {
  background: white;
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 4;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-services .row {
  display: flex;
  flex-wrap: wrap;
}

.hero-services .col-md-4 {
  margin-bottom: 50px;
  display: flex;
}

.hero-service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f5f5f5;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.hero-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b10021 0%, #d42538 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hero-service-card:hover::before {
  transform: scaleX(1);
}

.hero-service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 40px rgba(177, 0, 33, 0.2);
  border-color: #b10021;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.hero-service-card i {
  font-size: 52px;
  color: #b10021;
  margin-bottom: 20px;
  display: block;
  transition: all 0.3s ease;
}

.hero-service-card:hover i {
  color: #950019;
  transform: scale(1.15) rotate(-5deg);
}

.hero-service-card h3 {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.hero-service-card:hover h3 {
  color: #b10021;
}

/* Animations */
@keyframes zoomIn {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================ */
/* WHY US SECTION */
/* ============================================ */
.why-us-section {
  background-color: #f9f9f9;
}

.section-title {
  color: #b10021;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-intro {
  color: #777;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-us-item {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  height: 100%;
}

.why-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(177, 0, 33, 0.15);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #b10021;
}

.why-us-item h3 {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-us-item p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.panel {
  background-color: transparent;
  box-shadow: none;
}

.site-header .main-navigation {
  display: block;
  background-color: #b10021;
  padding: 0;
}
.site-header .main-navigation .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.site-header .main-navigation .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-logo {
  margin: 0;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 0;
}
.site-header .main-navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.site-header .main-navigation ul li {
  display: inline-block;
  margin-right: 30px;
}
.site-header .main-navigation ul li:last-child {
  margin-right: 0px !important;
}
.site-header .main-navigation ul li a {
  padding: 10px 20px;
  display: inline-block;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.site-header .main-navigation ul li a:hover {
  color: #eeeeee;
  text-decoration: underline;
}
.site-header .main-navigation ul li a.active {
  background-color: #ffffff;
  color: #b10021;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-weight: 600;
}
.site-header .templatemo_logo {
  margin-top: 60px;
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
}

/* Logo Text Styling */
.logo-text {
  margin-top: 60px;
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #b10021;
  letter-spacing: 1px;
}

a.menu-toggle-btn {
  padding: 15px 0;
  display: block;
  color: white;
  font-size: 28px;
}

.responsive-menu {
  display: none;
}

.responsive_menu {
  display: none;
  background-color: #2a2a2a;
}
.responsive_menu ul li {
  display: block !important;
  margin: 0 !important;
  border-bottom: 1px solid #444444;
}
.responsive_menu ul li a {
  padding: 20px 0 !important;
  display: block !important;
}

/*------------------------------------------------------
	Gallery Styles 
--------------------------------------------------------*/
.gallery-item {
  background-color: white;
  padding: 10px;
  -webkit-box-shadow: inset 0 0 1px #666;
  -moz-box-shadow: inset 0 0 1px #666;
  box-shadow: inset 0 0 1px #666;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gallery-item .content-gallery {
  text-align: center;
}
.gallery-item .content-gallery h3 {
  color: #b10021;
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
}
.gallery-item img {
  width: 100%;
}
.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  background-color: rgba(177, 0, 33, 0.9);
  display: block;
  -webkit-transition: all 50ms ease-in-out;
  -moz-transition: all 50ms ease-in-out;
  -ms-transition: all 50ms ease-in-out;
  -o-transition: all 50ms ease-in-out;
  transition: all 50ms ease-in-out;
}
.gallery-item .overlay a {
  color: #2a2a2a;
  width: 32px;
  height: 32px;
  background-color: white;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  line-height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
}

/*------------------------------------------------------
	Products Styles (Why Choose Us Section)
--------------------------------------------------------*/
.products {
  background-color: #f9f9f9;
  padding: 60px 0 !important;
  display: block !important;
}

.products .row:first-child {
  margin-bottom: 50px;
}

.products .col-md-12 h2 {
  color: #b10021;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.5px;
}

.products .col-md-12 > p {
  color: #777;
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.products .row:last-child {
  display: flex;
  flex-wrap: wrap;
}

.products .col-md-4 {
  display: flex;
  margin-bottom: 30px;
}

.product-item {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  height: 100%;
  width: 100%;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(177, 0, 33, 0.15);
}

.product-item > div:first-child {
  background: #f5f5f5 !important;
  padding: 30px 20px !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
}

.product-item > div:first-child i {
  font-size: 36px !important;
  color: #b10021 !important;
}

.product-item img {
  width: 100%;
}

.product-item a.product-title {
  margin: 15px 0;
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-item a.product-title:hover {
  color: #b10021;
}

.product-item p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/*------------------------------------------------------
	Services Styles 
--------------------------------------------------------*/
.services p {
  margin-top: 30px;
}
.services ul {
  margin-top: 30px;
}
.services ul li {
  margin-left: 20px;
}
.services ul li:before {
  content: "+";
  margin-right: 10px;
  color: #919191;
}
.services #icons {
  overflow: hidden;
}
.services #icons ul li {
  margin: 0;
}
.services #icons ul li:before {
  content: '';
  margin: 0;
}
.services #icons .icon-item {
  display: block;
  padding: 30px 25px;
  margin-bottom: 30px;
  background-color: #999999;
  cursor: pointer;
  text-align: center;
}
.services #icons .icon-item i {
  font-size: 24px;
  color: white;
}
.services #icons .icon-item span {
  margin-top: 25px;
  display: block;
  font-size: 18px;
  color: white;
  font-weight: 600;
}
.services #icons .active {
  background-color: #b10021;
}

/*------------------------------------------------------
	About Styles 
--------------------------------------------------------*/
.about p {
  margin-top: 30px;
}
.about ul {
  margin-top: 30px;
}
.about ul li {
  margin-left: 20px;
}
.about ul li:before {
  content: "+";
  margin-right: 10px;
  color: #919191;
}
.about #icons-about ul li {
  margin: 0;
}
.about #icons-about ul li:before {
  content: '';
  margin: 0;
}
.about #icons-about .icon-item {
  display: block;
  padding: 30px 25px;
  margin-bottom: 30px;
  background-color: #999999;
  cursor: pointer;
  text-align: center;
}
.about #icons-about .icon-item i {
  font-size: 24px;
  color: white;
}
.about #icons-about .icon-item span {
  margin-top: 25px;
  display: block;
  font-size: 18px;
  color: white;
  font-weight: 600;
}
.about #icons-about .active {
  background-color: #b10021;
}

/*------------------------------------------------------
	Contact Styles 
--------------------------------------------------------*/
.contact .widget-content {
  margin-bottom: 30px;
}

.contact-form {
  margin-top: 30px;
}
.contact-form input, .contact-form textarea {
  border: 0;
  outline: 0;
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
.contact-form input.button {
  width: auto;
  border: 0 !important;
  background-color: #b10021;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  margin-bottom: 0;
}
.contact-form textarea {
  min-height: 140px;
}

.contact-information {
  margin-top: 30px;
}

#templatemo_map {
    width: 100%;
    height: 330px;
  	margin-top: 30px;
	margin-bottom: 10px;
}

#templatemo_footer {
  margin-top: 60px;
  border-top: 3px solid #b10021;
  padding: 20px 0;
  position: relative;
}

/* ============================================ */
/* MODERN SERVICES SECTION STYLING (2x3 GRID) */
/* ============================================ */
.services-header {
  background: linear-gradient(135deg, #b10021 0%, #8b0015 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  display: none;
}

.services-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
}

.services-subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.services-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 50%, rgba(177, 0, 33, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* MODERN SERVICES SECTION HEADER */
.services-section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.services-section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #2a2a2a;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
  line-height: 1.2;
}

.services-section-header h2 span {
  color: #b10021;
}

.services-section-header p {
  font-size: 18px;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-section .row {
  display: flex;
  flex-wrap: wrap;
}

.services-section .row.services-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
  position: relative;
  z-index: 2;
}

.services-section .services-grid .col-md-4 {
  flex: 0 0 33.333333% !important;
  max-width: 33.333333% !important;
  padding: 0 20px !important;
  margin-bottom: 40px !important;
  display: flex !important;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b10021 0%, #d42538 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(177, 0, 33, 0.2);
  border-color: #b10021;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.service-icon {
  font-size: 64px;
  color: #b10021;
  margin-bottom: 30px;
  line-height: 1;
  animation: fadeInDown 0.6s ease;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  color: #950019;
  transform: scale(1.15) rotate(-5deg);
}

.service-card h3 {
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.service-card:hover h3 {
  color: #b10021;
}

.service-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
  font-weight: 400;
}

.service-features {
  list-style: none;
  padding: 25px 0 0 0;
  margin: 0;
  border-top: 2px solid #f0f0f0;
  text-align: left;
}

.service-features li {
  color: #555;
  font-size: 15px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features i {
  color: #b10021;
  margin-right: 12px;
  font-size: 16px;
  font-weight: bold;
  width: 20px;
  text-align: center;
}

.services-cta {
  background: linear-gradient(135deg, #f5f5f5 0%, #f9f9f9 50%, #ffffff 100%);
  padding: 70px 0;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(177, 0, 33, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.services-cta .container {
  position: relative;
  z-index: 2;
}

.services-cta h3 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #2a2a2a;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.services-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #b10021 0%, #d42538 100%);
  color: white;
  padding: 16px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(177, 0, 33, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #b10021;
}

.services-cta .cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 45px rgba(177, 0, 33, 0.4);
  background: linear-gradient(135deg, #d42538 0%, #b10021 100%);
  border-color: #950019;
}

.cta-button {
  display: inline-block;
  background-color: #b10021;
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(177, 0, 33, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(177, 0, 33, 0.4);
  background-color: #950019;
}

/* ============================================ */
/* CONTACT SECTION - MODERN STYLE */
/* ============================================ */
.contact-section {
  background-color: #ffffff;
  padding: 0;
  position: relative;
}

.contact-header {
  background: linear-gradient(135deg, #b10021 0%, #8b0015 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
}

.contact-header p {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.contact-container {
  padding: 60px 0;
}

.contact-info-col {
  padding: 0 30px 0 0;
}

.contact-map-col {
  padding: 0 0 0 30px;
}

.contact-content {
  background: white;
}

.contact-subtitle {
  color: #b10021;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}

.contact-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #b10021 0%, #d42538 100%);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid #b10021;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(177, 0, 33, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #b10021 0%, #d42538 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 20px;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.contact-text p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-phone a {
  color: #b10021;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-phone a:hover {
  color: #950019;
  text-decoration: underline;
}

.tagline-box {
  background: linear-gradient(135deg, rgba(177, 0, 33, 0.1) 0%, rgba(212, 37, 56, 0.05) 100%);
  border-left-color: #b10021;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.tagline-box p {
  color: #b10021;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tagline-box i {
  font-size: 20px;
}

.contact-map-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 25px;
  background: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.map-header h3 {
  margin: 0;
  color: #b10021;
  font-size: 24px;
  font-weight: 700;
}

.contact-iframe {
  width: 100%;
  height: 500px;
  border: none;
  flex: 1;
  min-height: 500px;
}

.cta-button {
  display: inline-block;
  background-color: #b10021;
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(177, 0, 33, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(177, 0, 33, 0.4);
  background-color: #950019;
}

/* ============================================ */
/* SERVICE AREAS SECTION */
/* ============================================ */
.service-areas-section {
  background-color: white;
}

.areas-header {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 60px;
}

.areas-title {
  color: #b10021;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.areas-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
}

.areas-description {
  font-size: 14px;
  color: #999;
}

.service-areas-section .row {
  display: flex;
  flex-wrap: wrap;
}

.service-areas-section .col-md-4 {
  margin-bottom: 30px;
}

.area-item {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  height: 100%;
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(177, 0, 33, 0.15);
  border-left-color: #b10021;
}

.area-item h4 {
  color: #2a2a2a;
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.area-item:hover h4 {
  color: #b10021;
}

.area-item p {
  font-size: 12px;
  color: #999;
  margin: 8px 0 0 0;
}

.areas-cta {
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
  padding: 60px 0;
  margin-top: 60px;
  text-align: center;
}

.areas-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2a2a2a;
  font-weight: 700;
}

.areas-cta p {
  font-size: 15px;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation-duration: 0.6s;
}

/* ============================================ */
/* IMPROVED OVERALL PAGE LAYOUT */
/* ============================================ */
body {
  background-color: #ffffff;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #777777;
  font-size: 14px;
  line-height: 1.75em;
  scroll-behavior: smooth;
}

.site-header {
  position: relative;
  z-index: 100;
}

#menu-container {
  position: relative;
  z-index: 50;
}

/* ============================================ */
/* RESPONSIVE DESIGN FOR MOBILE & TABLET */
/* ============================================ */
@media only screen and (max-width: 1000px) {
  .site-header .main-navigation {
    padding: 0;
  }
  .site-header .main-navigation .container {
    width: 100%;
  }
  
  .navbar-logo {
    font-size: 20px;
  }
  
  .main_menu ul {
    margin: 0;
    padding: 0;
  }
  
  .main_menu ul li {
    margin-right: 20px;
  }

  .responsive-menu {
    display: block;
  }

  .main_menu {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .services-title {
    font-size: 32px;
  }

  .areas-title {
    font-size: 32px;
  }
  
  .services-section .col-md-4 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

@media only screen and (max-width: 768px) {
  .contact-header h2 {
    font-size: 32px;
  }
  
  .contact-header p {
    font-size: 14px;
  }
  
  .contact-info-col {
    padding: 0 0 30px 0;
    margin-bottom: 30px;
  }
  
  .contact-map-col {
    padding: 0;
  }
  
  .contact-subtitle {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .contact-item {
    margin-bottom: 20px;
    padding: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin-right: 15px;
    font-size: 18px;
  }
  
  .contact-text h4 {
    font-size: 16px;
  }
  
  .contact-text p {
    font-size: 13px;
  }
  
  .contact-iframe {
    height: 400px;
  }
  
  .contact-container {
    padding: 40px 0;
  }
  .navbar-logo {
    font-size: 18px;
  }
  
  .main_menu ul li {
    margin-right: 15px;
  }
  
  .site-header .main-navigation ul li a {
    font-size: 14px;
    padding: 8px 15px;
  }
  
  .hero-section {
    min-height: 600px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta-btn {
    padding: 13px 35px;
    font-size: 14px;
  }

  .hero-content {
    margin-bottom: 60px;
  }

  .hero-services {
    padding: 50px 0 40px 0;
  }

  .hero-services .col-md-4 {
    margin-bottom: 30px;
  }

  .hero-service-card {
    padding: 30px 20px;
  }

  .hero-service-card i {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .hero-service-card h3 {
    font-size: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .why-us-item {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .why-us-item h3 {
    font-size: 16px;
  }

  .why-us-item p {
    font-size: 13px;
  }
  
  .services-section {
    padding: 60px 0;
  }
  
  .services-section-header {
    margin-bottom: 50px;
  }
  
  .services-section-header h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  
  .services-section-header p {
    font-size: 15px;
  }

  
  .services-section .services-grid .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin-bottom: 30px !important;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    font-size: 20px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .service-features li {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .services-cta {
    padding: 40px 0;
    margin-top: 40px;
  }
  
  .services-cta h3 {
    font-size: 24px;
  }
  
  .services-cta p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .services-cta .cta-button {
    padding: 14px 35px;
    font-size: 14px;
  }
  
  .services-header {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .services-subtitle {
    font-size: 14px;
  }

  .services-cta {
    padding: 40px 0;
    margin-top: 30px;
  }

  .services-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .services-cta p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .areas-header {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .areas-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .areas-subtitle {
    font-size: 14px;
  }

  .area-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .area-item h4 {
    font-size: 16px;
  }

  .areas-cta {
    padding: 40px 0;
    margin-top: 40px;
  }

  .areas-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .contact-content,
  .contact-map {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-container {
    padding: 40px 0;
  }
}

/* END OF MEDIA QUERY */

/* ============================================ */
/* DETAILED SERVICES SECTION */
/* ============================================ */
.detailed-services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  padding: 80px 0;
  position: relative;
}

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

.section-header-detailed h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2a2a2a;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.section-header-detailed h2 span {
  color: #b10021;
  position: relative;
}

.section-header-detailed p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.detailed-services-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.detailed-services-row .col-md-6 {
  padding: 0 15px;
  margin-bottom: 40px;
}

.detailed-service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detailed-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(177, 0, 33, 0.2);
}

.detailed-service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #b10021 0%, #d42538 100%);
}

.detailed-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detailed-service-card:hover .detailed-service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #b10021 0%, #d42538 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(177, 0, 33, 0.4);
  z-index: 10;
}

.service-badge.business {
  background: linear-gradient(135deg, #2a2a2a 0%, #444444 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.detailed-service-content {
  padding: 35px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.detailed-service-content h3 {
  color: #2a2a2a;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detailed-service-content h3 i {
  color: #b10021;
  font-size: 28px;
}

.detailed-service-content > p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 3px solid #b10021;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: #f5f5f5;
  transform: translateX(5px);
}

.highlight-item i {
  color: #b10021;
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-item strong {
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.highlight-item p {
  color: #777;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================ */
/* CTA INLINE SECTION */
/* ============================================ */
.cta-section-inline {
  background: linear-gradient(135deg, #b10021 0%, #8b0015 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inline-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  color: white;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.cta-action {
  flex-shrink: 0;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #b10021;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button-large:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #f5f5f5;
  color: #950019;
}

.cta-button-large i {
  font-size: 20px;
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ============================================ */
/* SPECIALIZED SERVICES SECTION */
/* ============================================ */
.specialized-services-section {
  background: white;
  padding: 80px 0;
}

.specialty-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  background: white;
  border-color: #b10021;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(177, 0, 33, 0.15);
}

.specialty-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #b10021 0%, #d42538 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(177, 0, 33, 0.3);
}

.specialty-icon i {
  color: white;
  font-size: 40px;
}

.specialty-card h4 {
  color: #2a2a2a;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.3;
}

.specialty-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.specialty-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  text-align: left;
  border-top: 2px solid #e5e5e5;
  padding-top: 20px;
}

.specialty-list li {
  color: #555;
  font-size: 14px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.specialty-list li:hover {
  color: #b10021;
  padding-left: 10px;
}

.specialty-list li i {
  color: #b10021;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================ */
/* CTA BANNER SECTION */
/* ============================================ */
.cta-section-banner {
  background: linear-gradient(135deg, #2a2a2a 0%, #444444 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(177, 0, 33, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 80px;
  color: #b10021;
  flex-shrink: 0;
  animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-banner-text {
  flex: 1;
}

.cta-banner-text h3 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.cta-button-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #b10021;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.cta-button-white:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #f5f5f5;
  color: #950019;
}

/* ============================================ */
/* RESPONSIVE STYLES FOR NEW SECTIONS */
/* ============================================ */
@media only screen and (max-width: 1000px) {
  .cta-inline-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h3 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 15px;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-icon {
    font-size: 60px;
  }

  .cta-banner-text h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .detailed-services-section {
    padding: 60px 0;
  }

  .section-header-detailed {
    margin-bottom: 40px;
  }

  .section-header-detailed h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-header-detailed p {
    font-size: 15px;
  }

  .detailed-service-image {
    height: 220px;
  }

  .detailed-service-content {
    padding: 25px 20px;
  }

  .detailed-service-content h3 {
    font-size: 20px;
  }

  .detailed-service-content > p {
    font-size: 14px;
  }

  .highlight-item {
    padding: 12px;
  }

  .highlight-item i {
    font-size: 20px;
  }

  .highlight-item strong {
    font-size: 14px;
  }

  .highlight-item p {
    font-size: 12px;
  }

  .cta-section-inline {
    padding: 40px 0;
  }

  .cta-text h3 {
    font-size: 22px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-button-large {
    padding: 15px 35px;
    font-size: 14px;
  }

  .specialized-services-section {
    padding: 60px 0;
  }

  .specialty-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .specialty-icon {
    width: 70px;
    height: 70px;
  }

  .specialty-icon i {
    font-size: 32px;
  }

  .specialty-card h4 {
    font-size: 19px;
  }

  .specialty-card p {
    font-size: 14px;
  }

  .specialty-list li {
    font-size: 13px;
    padding: 8px 0;
  }

  .cta-section-banner {
    padding: 40px 0;
  }

  .cta-icon {
    font-size: 50px;
  }

  .cta-banner-text h3 {
    font-size: 20px;
  }

  .cta-banner-text p {
    font-size: 14px;
  }

  .cta-button-white {
    padding: 14px 30px;
    font-size: 14px;
  }
}