body
{
	background: #000000;
	color: #999;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

/* start all section */
#home,
#home .fp-slide,
#home .fp-tableCell,

#work,
#work .fp-slide,
#work .fp-tableCell,

#about,
#about .fp-slide,
#about .fp-tableCell,

#contact,
#contact .fp-slide,
#contact .fp-tableCell,

#portfolio,
#portfolio .fp-slide,
#portfolio .fp-tableCell,

footer,
footer .fp-slide,
footer .fp-tableCell
{
    height: auto !important;
}

/* end all section */

/* start all heading */
h1,h2,h3,h4,h5
    {
        color: #ffffff;
        font-weight: bold;
    }
/* end all heading */

/* start all section */
#work, #about, #portfolio, #contact
    {
        padding-top: 100px;
        padding-bottom: 120px;
    }
/* end all section */

/* start simpletextrotator */
.rotating {
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
  -moz-transform: rotateX(0) rotateY(0) rotateZ(0);
  -ms-transform: rotateX(0) rotateY(0) rotateZ(0);
  -o-transform: rotateX(0) rotateY(0) rotateZ(0);
  transform: rotateX(0) rotateY(0) rotateZ(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin-x: 50%;
}

.rotating.flip {
  position: relative;
}

.rotating .front, .rotating .back {
  left: 0;
  top: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.rotating .front {
  position: absolute;
  display: inline-block;
  -webkit-transform: translate3d(0,0,1px);
  -moz-transform: translate3d(0,0,1px);
  -ms-transform: translate3d(0,0,1px);
  -o-transform: translate3d(0,0,1px);
  transform: translate3d(0,0,1px);
}

.rotating.flip .front {
  z-index: 1;
}

.rotating .back {
  display: block;
  opacity: 0;
}

.rotating.spin {
  -webkit-transform: rotate(360deg) scale(0);
  -moz-transform: rotate(360deg) scale(0);
  -ms-transform: rotate(360deg) scale(0);
  -o-transform: rotate(360deg) scale(0);
  transform: rotate(360deg) scale(0);
}

.rotating.flip .back {
  z-index: 2;
  display: block;
  opacity: 1;
  
  -webkit-transform: rotateY(180deg) translate3d(0,0,0);
  -moz-transform: rotateY(180deg) translate3d(0,0,0);
  -ms-transform: rotateY(180deg) translate3d(0,0,0);
  -o-transform: rotateY(180deg) translate3d(0,0,0);
  transform: rotateY(180deg) translate3d(0,0,0);
}

.rotating.flip.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,0);
  -moz-transform: rotateX(180deg) translate3d(0,0,0);
  -ms-transform: rotateX(180deg) translate3d(0,0,0);
  -o-transform: rotateX(180deg) translate3d(0,0,0);
  transform: rotateX(180deg) translate3d(0,0,0);
}

.rotating.flip.cube .front {
  -webkit-transform: translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: translate3d(0,0,100px) scale(0.85,0.85);
  transform: translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube .back {
  -webkit-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}
/* end simpletextrotator */

/* start home */       
#home
	{
        background: url('../images/home-bg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding-top: 120px;
        padding-bottom: 140px;
        text-align: center;
        position: relative;
        z-index: 1;
	}
#home::before
	{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: -1;
	}
.logo-text
	{
		font-size: 48px;
		font-weight: bold;
		letter-spacing: 2px;
		color: #ffffff;
		display: inline-block;
		padding: 25px 35px;
		margin: 30px 0;
		border: 2px solid #D43F52;
		text-align: center;
	}
#home h1
    {
        color: #D43F52;
        display: inline-block;
        letter-spacing: 6px;
        padding: 25px 35px;
        margin: 30px 0;
    }
#home h2
    {
        padding-bottom: 10px;
    }
#home .btn
    {
        background: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
        width: 180px;
        height: 60px;
        margin-top: 40px;
        padding-top: 18px;
        transition: all 0.4s ease-in-out;
    }
#home .btn:hover
    {
        background: #D43F52;
        border-color: transparent;
    }
/* end home */

/* start modern about us section */
#about-us
	{
		padding-top: 100px;
		padding-bottom: 100px;
		background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
	}
#about-us h2
	{
		text-align: center;
		margin-bottom: 15px;
		font-size: 32px;
		color: #ffffff;
	}
.about-tagline
	{
		text-align: center;
		color: #D43F52;
		font-size: 16px;
		font-weight: 600;
		margin-bottom: 60px;
	}
.about-content-row
	{
		align-items: center;
	}
.about-image-block
	{
		margin-bottom: 30px;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 10px 35px rgba(212, 63, 82, 0.35);
		position: relative;
	}
.about-image-block::before
	{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(212, 63, 82, 0.1) 0%, transparent 50%);
		z-index: 1;
		pointer-events: none;
	}
.about-image
	{
		width: 100%;
		height: auto;
		display: block;
		transition: all 0.6s ease;
	}
.about-image-block:hover .about-image
	{
		transform: scale(1.08);
	}
.about-text-block h3
	{
		color: #ffffff;
		font-size: 28px;
		margin-bottom: 20px;
		font-weight: 700;
	}
.about-text-block p
	{
		color: #999;
		line-height: 1.9;
		margin-bottom: 25px;
		font-size: 15px;
	}
.about-highlights
	{
		margin: 35px 0;
	}
.highlight-item
	{
		display: flex;
		align-items: flex-start;
		margin-bottom: 30px;
		padding: 20px;
		background: rgba(212, 63, 82, 0.08);
		border-left: 4px solid #D43F52;
		border-radius: 4px;
		transition: all 0.3s ease;
	}
.highlight-item:hover
	{
		background: rgba(212, 63, 82, 0.15);
		transform: translateX(10px);
	}
.highlight-icon
	{
		min-width: 50px;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: linear-gradient(135deg, #D43F52 0%, #c0324a 100%);
		border-radius: 50%;
		margin-right: 20px;
		color: #ffffff;
		font-size: 22px;
		flex-shrink: 0;
	}
.highlight-text h4
	{
		color: #D43F52;
		font-size: 16px;
		font-weight: 700;
		margin: 0 0 8px 0;
	}
.highlight-text p
	{
		color: #999;
		margin: 0;
		font-size: 14px;
		line-height: 1.6;
	}
.about-closing
	{
		font-style: italic;
		color: #D43F52;
		font-weight: 600;
		border-top: 2px solid rgba(212, 63, 82, 0.3);
		padding-top: 20px;
		margin-top: 30px !important;
	}
/* end modern about us section */

/* start work */
#work
    {
        background: #1a1a1a;
    }
#work h2
    {
        text-align: center;
    }
.services-header-image
    {
    	margin-top: 30px;
    	border-radius: 8px;
    	overflow: hidden;
    	box-shadow: 0 8px 25px rgba(212, 63, 82, 0.25);
    	max-width: 600px;
    	margin-left: auto;
    	margin-right: auto;
    }
.services-header-image img
    {
    	width: 100%;
    	height: auto;
    	display: block;
    	transition: all 0.5s ease;
    }
.services-header-image:hover img
    {
    	transform: scale(1.03);
    }

#work .media
    {
      margin-top: 30px;
    }
	
#work .media .fa
    {
        border: 2px solid #ffffff;
        border-radius: 50%;
        color: #D43F52;
        font-size: 24px;
        margin-right: 24px;
        width: 60px;
        height: 60px;
        line-height: 55px;
        text-align: center;
        vertical-align: middle;
        transition: all 0.4s ease-in;
    }
#work .media .fa:hover
    {
        background: #ffffff;
        cursor: pointer;
    }
#work .media .media-heading
    {
        font-weight: 600;
        font-size: 20px;
        padding-bottom: 10px;
    }
/* end work */

/* start detailed services section */
#services-detail
	{
		padding-top: 80px;
		padding-bottom: 80px;
		background: #0f0f0f;
		display: block;
		position: relative;
	}
#services-detail h2
	{
		text-align: center;
		margin-bottom: 20px;
		font-size: 32px;
	}
.section-intro
	{
		text-align: center;
		color: #D43F52;
		font-size: 16px;
		font-weight: 600;
		margin-bottom: 50px;
	}
.detailed-service
	{
		padding: 60px 0;
		border-bottom: 1px solid #333;
	}
.detailed-service h3
	{
		color: #ffffff;
		font-size: 28px;
		margin-bottom: 25px;
		font-weight: 700;
	}
.detailed-service p
	{
		color: #999;
		line-height: 1.9;
		margin-bottom: 20px;
		font-size: 15px;
	}
.service-image
	{
		margin-top: 15px;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 8px 25px rgba(212, 63, 82, 0.3);
	}
.service-image img
	{
		width: 100%;
		height: auto;
		display: block;
		transition: all 0.5s ease;
	}
.service-image:hover img
	{
		transform: scale(1.05);
	}
.service-benefits
	{
		list-style: none;
		padding: 0;
		margin: 30px 0 0 0;
	}
.service-benefits li
	{
		color: #999;
		margin-bottom: 15px;
		padding-left: 30px;
		position: relative;
		line-height: 1.6;
		font-size: 14px;
	}
.service-benefits li i
	{
		color: #D43F52;
		font-size: 16px;
		position: absolute;
		left: 0;
		top: 2px;
	}
/* end detailed services section */

/* start CTA sections */
.cta-section
	{
		padding: 50px 0;
		background: linear-gradient(135deg, rgba(212, 63, 82, 0.15) 0%, rgba(212, 63, 82, 0.08) 100%);
		border-left: 4px solid #D43F52;
		border-right: 4px solid #D43F52;
	}
.cta-section h3
	{
		color: #ffffff;
		font-size: 24px;
		text-align: center;
		margin-bottom: 15px;
	}
.cta-section p
	{
		color: #D43F52;
		text-align: center;
		font-size: 15px;
		margin-bottom: 25px;
		font-weight: 600;
	}
.btn-cta
	{
		display: inline-block;
		width: 100%;
		text-align: center;
		padding: 16px 40px;
		background: linear-gradient(135deg, #D43F52 0%, #c0324a 100%);
		color: #ffffff !important;
		border: none;
		border-radius: 4px;
		font-size: 16px;
		font-weight: bold;
		text-decoration: none;
		transition: all 0.4s ease;
		cursor: pointer;
		box-shadow: 0 4px 15px rgba(212, 63, 82, 0.3);
	}
.btn-cta:hover
	{
		background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
		color: #D43F52 !important;
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(212, 63, 82, 0.5);
	}
/* end CTA sections */

/* start about */
#about h4
    {
        padding: 15px 0;
		color: #D43F52;
    }
#about .progress
    {
        border-radius: 4px;
        background: #ffffff;
        height: 4px;
    }
#about .progress .progress-bar-danger
    {
        background: #D43F52;
    }
#about .text-top
    {
        padding-top: 50px;
    }
#about span
    {
        color: #ffffff;
        font-weight: bold;
        display: block;
        padding-bottom: 6px;
    }
#about small
    {
        font-weight: bold;
        float: right;
    }
/* end about */

/* start portfolio */
#portfolio
    {
        background: #1a1a1a;
        text-align: center;
    }
#portfolio h2
    {
        padding-bottom: 30px;
    }
#portfolio .portfolio-thumb
    {
        overflow: hidden;
        position: relative;
        margin-bottom: 30px;
    }
#portfolio .portfolio-thumb .portfolio-overlay
    {
        background: #D43F52;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        padding-top: 60px;
        transition: all 0.4s ease-in-out;
    }
#portfolio .portfolio-thumb:hover .portfolio-overlay
    {
        cursor: pointer;
        opacity: 0.8;
        transform: scale(0.9);
    }
/* end portfolio */

/* start contact */

#contact address
    {
      padding-bottom: 18px;
    }
	
#contact .contact-title
    {
		font-size: 24px;
		font-weight: bold;
        padding-bottom: 20px;
		color: #ffffff;
    }
#contact .fa
    {
        border: 2px solid #ffffff;
        border-radius: 50%;
        color: #D43F52;
        width: 50px;
        height: 50px;
        line-height: 45px;
        text-align: center;
        margin-right: 20px;
    }
#contact .form-control
    {
        background: transparent;
        border: 2px solid #999;
        border-radius: 0;
        box-shadow: none;
        color: #ffffff;
        margin-bottom: 20px;
    }
#contact input
    {
        height: 50px;
    }
#contact input[type="submit"]
    {
        background: #D43F52;
        border: 2px solid transparent;
        color: #ffffff;
        font-weight: bold;
        transition: all 0.4s ease-in-out;
    }
#contact input[type="submit"]:hover
    {
        background: #ffffff;
        color: #D43F52;
    }
/* end contact */

/* start footer */
footer
    {
        border-top: 1px solid #090909;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 20px;
    }
footer hr
    {
        width: 100px;
    }
/* end footer */

/* start social icon */
.social-icon
    {
        position: relative;
        padding: 0;
        margin: 0;
    }
.social-icon li
    {
        display: inline-block;
        list-style: none;
    }
.social-icon li a
    {
        border-radius: 50%;
        color: #606060;
        text-decoration: none;
        transition: all 0.4s ease-in-out;
        text-align: center;
        margin-right: 10px;
    }
.social-icon li a:hover
    {
        color: #D43F52;
    }
/* end social icon */

/* start faq items */
.faq-item
    {
    	margin-bottom: 30px;
    	padding-bottom: 20px;
    	border-bottom: 1px solid #333;
    }
.faq-item h4
    {
    	color: #ffffff;
    	font-weight: bold;
    	margin-bottom: 12px;
    	font-size: 18px;
    }
.faq-item p
    {
    	color: #999;
    	line-height: 1.8;
    }
/* end faq items */

/* start service areas */
.service-areas-text
    {
    	text-align: center;
    }
.service-areas-text p
    {
    	line-height: 1.8;
    	margin-bottom: 15px;
    }
/* end service areas */

/* start modern navbar */
.navbar-custom
	{
		background: linear-gradient(to right, #1a1a1a 0%, #222 100%);
		border-bottom: 3px solid #D43F52;
		padding: 15px 0;
		margin-bottom: 0;
		position: relative;
		z-index: 1000;
		box-shadow: 0 2px 10px rgba(212, 63, 82, 0.3);
	}
.navbar-custom .navbar-brand
	{
		color: #D43F52 !important;
		font-size: 20px;
		font-weight: bold;
		letter-spacing: 1px;
		padding: 8px 0;
		transition: all 0.3s ease;
	}
.navbar-custom .navbar-brand:hover
	{
		color: #ffffff !important;
		text-shadow: 0 0 10px rgba(212, 63, 82, 0.6);
	}
.navbar-custom .nav > li > a
	{
		color: #ffffff !important;
		font-size: 14px;
		font-weight: 600;
		transition: all 0.3s ease;
		padding: 15px 18px;
	}
.navbar-custom .nav > li > a:hover
	{
		color: #D43F52 !important;
	}
.navbar-custom .nav > li.active > a,
.navbar-custom .nav > li.active > a:hover
	{
		color: #D43F52 !important;
		background: transparent;
	}
.navbar-custom .navbar-phone
	{
		background: #D43F52;
		color: #ffffff !important;
		border-radius: 4px;
		padding: 10px 15px !important;
		margin-left: 10px;
		transition: all 0.3s ease;
	}
.navbar-custom .navbar-phone:hover
	{
		background: #ffffff;
		color: #D43F52 !important;
	}
.navbar-custom .icon-bar
	{
		background-color: #D43F52;
	}
/* end modern navbar */

/* start enhanced service areas */
.service-areas
    {
    	text-align: center;
    }
.service-intro
    {
    	font-size: 16px;
    	color: #999;
    	margin-bottom: 40px;
    	line-height: 1.8;
    }
.service-cities
    {
    	padding: 30px 0;
    }
.cities-list
    {
    	list-style: none;
    	padding: 0;
    	margin: 0;
    	display: flex;
    	flex-wrap: wrap;
    	justify-content: center;
    	gap: 12px;
    }
.cities-list li
    {
    	display: inline-block;
    }
.city-badge
    {
    	display: inline-block;
    	background: linear-gradient(135deg, #D43F52 0%, #c0324a 100%);
    	color: #ffffff;
    	padding: 8px 18px;
    	border-radius: 25px;
    	font-size: 13px;
    	font-weight: 600;
    	white-space: nowrap;
    	transition: all 0.3s ease;
    	box-shadow: 0 4px 15px rgba(212, 63, 82, 0.25);
    }
.city-badge:hover
    {
    	transform: translateY(-3px);
    	box-shadow: 0 6px 20px rgba(212, 63, 82, 0.4);
    	background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    	color: #D43F52;
    }
/* end enhanced service areas */

/* start modern FAQ accordion */
.faq-accordion
    {
    	margin: 0 !important;
    	border: none !important;
    }
.panel-faq
    {
    	background: transparent;
    	border: none;
    	border-bottom: 1px solid #333;
    	margin-bottom: 0;
    	box-shadow: none;
    	transition: all 0.3s ease;
    }
.panel-faq:last-child
    {
    	border-bottom: none;
    }
.panel-faq:hover
    {
    	border-bottom-color: #D43F52;
    }
.panel-faq .panel-heading
    {
    	background: transparent;
    	border: none;
    	padding: 0;
    	margin: 0;
    }
.panel-faq .panel-title
    {
    	font-size: 16px;
    	font-weight: 600;
    	margin: 0;
    }
.panel-faq .panel-title a
    {
    	color: #ffffff;
    	display: block;
    	padding: 20px 15px;
    	transition: all 0.3s ease;
    	position: relative;
    }
.panel-faq .panel-title a::before
    {
    	content: '+';
    	position: absolute;
    	right: 15px;
    	font-size: 20px;
    	color: #D43F52;
    	transition: all 0.3s ease;
    	font-weight: bold;
    }
.panel-faq .panel-title a[aria-expanded="true"]::before
    {
    	content: '−';
    	color: #D43F52;
    }
.panel-faq .panel-title a:hover
    {
    	color: #D43F52;
    	padding-left: 25px;
    }
.panel-faq .panel-body
    {
    	background: rgba(212, 63, 82, 0.05);
    	border: none;
    	padding: 20px 15px 20px 40px;
    	color: #999;
    	line-height: 1.8;
    }
/* end modern FAQ accordion */

/* start modern contact section */
.contact-section
    {
    	background: linear-gradient(135deg, rgba(212, 63, 82, 0.1) 0%, rgba(212, 63, 82, 0.05) 100%);
    	border: 1px solid rgba(212, 63, 82, 0.2);
    	border-radius: 8px;
    	padding: 40px 30px;
    	text-align: center;
    }
.contact-section h3
    {
    	color: #ffffff;
    	margin-bottom: 30px;
    	font-size: 28px;
    }
.contact-content
    {
    	display: flex;
    	justify-content: center;
    	gap: 50px;
    	flex-wrap: wrap;
    }
.contact-item
    {
    	display: flex;
    	align-items: center;
    	gap: 20px;
    }
.contact-icon
    {
    	font-size: 32px;
    	color: #D43F52;
    	width: 60px;
    	height: 60px;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	background: rgba(212, 63, 82, 0.1);
    	border-radius: 50%;
    	transition: all 0.3s ease;
    }
.contact-item:hover .contact-icon
    {
    	background: #D43F52;
    	color: #ffffff;
    	transform: scale(1.1);
    }
.contact-label
    {
    	color: #D43F52;
    	font-weight: bold;
    	margin-bottom: 5px;
    }
.contact-info p
    {
    	margin: 0;
    	color: #999;
    }
.contact-info a
    {
    	color: #D43F52;
    	font-weight: bold;
    	text-decoration: none;
    	transition: all 0.3s ease;
    }
.contact-info a:hover
    {
    	color: #ffffff;
    }
/* end modern contact section */

/* start modern footer */
footer
    {
    	background: linear-gradient(to bottom, #1a1a1a 0%, #0f0f0f 100%);
    	border-top: 3px solid #D43F52;
    	padding: 50px 0 0;
    	margin-top: 60px;
    }
.footer-content
    {
    	display: flex;
    	justify-content: space-around;
    	flex-wrap: wrap;
    	gap: 40px;
    	margin-bottom: 30px;
    }
.footer-section
    {
    	flex: 1;
    	min-width: 250px;
    }
.footer-section h4
    {
    	color: #D43F52;
    	font-size: 20px;
    	margin-bottom: 15px;
    	text-transform: uppercase;
    	letter-spacing: 1px;
    }
.footer-section h5
    {
    	color: #ffffff;
    	font-size: 16px;
    	margin-bottom: 15px;
    	font-weight: 600;
    }
.footer-tagline
    {
    	color: #999;
    	font-size: 14px;
    	font-style: italic;
    }
.footer-contact-list,
.footer-links
    {
    	list-style: none;
    	padding: 0;
    	margin: 0;
    }
.footer-contact-list li,
.footer-links li
    {
    	margin-bottom: 12px;
    	color: #999;
    	transition: all 0.3s ease;
    }
.footer-contact-list li i
    {
    	color: #D43F52;
    	width: 20px;
    	text-align: center;
    	margin-right: 10px;
    }
.footer-contact-list li a,
.footer-links li a
    {
    	color: #999;
    	text-decoration: none;
    	transition: all 0.3s ease;
    }
.footer-contact-list li:hover,
.footer-links li:hover
    {
    	color: #D43F52;
    }
.footer-contact-list li:hover a,
.footer-links li:hover a
    {
    	color: #D43F52;
    }
.footer-divider
    {
    	border: none;
    	border-top: 1px solid #333;
    	margin: 30px 0;
    }
.footer-map
    {
    	margin: 30px 0;
    	border-radius: 8px;
    	overflow: hidden;
    	box-shadow: 0 4px 15px rgba(212, 63, 82, 0.2);
    }
.footer-bottom
    {
    	text-align: center;
    	padding: 25px 0 30px;
    }
.footer-website
    {
    	color: #999;
    	margin-bottom: 10px;
    }
.footer-website span
    {
    	color: #D43F52;
    	font-weight: bold;
    }
.footer-copyright
    {
    	color: #666;
    	font-size: 12px;
    	margin: 0;
    }
footer hr
    {
    	display: none;
    }
/* end modern footer */

/* start responsive adjustments */
@media (max-width: 768px)
    {
    	.navbar-custom .nav > li > a
    		{
    			padding: 10px 15px;
    		}
    	.navbar-custom .navbar-phone
    		{
    			margin-left: 0;
    			margin-top: 10px;
    			display: block;
    		}
    	.cities-list
    		{
    			justify-content: flex-start;
    		}
    	.contact-content
    		{
    			flex-direction: column;
    			gap: 20px;
    		}
    	.contact-item
    		{
    			justify-content: center;
    		}
    	.footer-content
    		{
    			flex-direction: column;
    			gap: 30px;
    		}
    	.footer-section
    		{
    			text-align: center;
    		}
    	.detailed-service h3
    		{
    			font-size: 22px;
    		}
    	.service-benefits li
    		{
    			font-size: 13px;
    			margin-bottom: 12px;
    		}
    	.cta-section h3
    		{
    			font-size: 20px;
    		}
    	.btn-cta
    		{
    			padding: 14px 30px;
    			font-size: 14px;
    		}
    	#about-us h2
    		{
    			font-size: 24px;
    		}
    	.about-text-block h3
    		{
    			font-size: 22px;
    		}
    	.about-image-block
    		{
    			margin-bottom: 20px;
    		}
    	.highlight-item
    		{
    			margin-bottom: 20px;
    			padding: 15px;
    		}
    	.highlight-icon
    		{
    			width: 40px;
    			height: 40px;
    			font-size: 18px;
    			min-width: 40px;
    		}
    }
/* end responsive adjustments */
