/* ---------- Глобальные переменные (из дизайн-концепции) ---------- */
    :root {
      --papa-orange: #E67E22;    /* папин оранжевый (основной акцент) */
      --papa-honey: #F39C12;     /* папин мед */
      --papa-blue: #2C3E50;      /* папин синий (фон шапки, подвала) */
      --papa-darkblue: #1A252F;   /* темно-синий для градиентов */
      --light-bg: #F8F9FA;       /* утренний свет */
      --white: #FFFFFF;
      --text-dark: #333333;
      --text-gray: #666666;
      --success-green: #27AE60;
      --info-blue: #3498DB;
      --danger-red: #E74C3C;
      
      /* тени и скругления */
      --card-radius: 12px;
      --btn-radius: 8px;
      --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
      --shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
    }

html, body {
	min-height: 100%;
}

body {
      font-family: 'Open Sans', 'Segoe UI', Roboto, sans-serif;
      color: var(--text-dark);
      background-color: var(--white);
      line-height: 1.5;
      font-size: 16px;
    }
/*---------------------------------------
   Typorgraphy              
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat','Roboto', sans-serif;
	font-weight: 700; /* или 600, солидность */
}
h1, h2, h4 {
	font-weight: 500;
}
h1 {
	font-size: 2.5rem;
    letter-spacing: -0.02em;
}
h2 {
	color: #272727;
	font-size: 36px;
	line-height: 52px;
	margin: 0px;
}
h3 {
	font-size: 16px;
	line-height: 32px;
}
h4 {
	color: #454545;
	font-size: 18px;
	line-height: 26px;
}
h5 {
	letter-spacing: 0.5px;
}
p {
	color: #333;
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
}
ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
}
.animate {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

html {
	-webkit-font-smoothing: antialiased;
}
a {
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	color: #db3636;
	text-decoration: none !important;
}
a:hover, a:active, a:focus {
	color: #db3636;
	outline: none;
}

.navbar-brand {color: var(--papa-orange);}

.navbar-custom {
      background-color: var(--papa-blue);
      padding: 0.8rem 0;
    }
    
    .navbar-custom .nav-link {
      color: white !important;
      font-weight: 500;
      transition: 0.2s;
    }
    .navbar-custom .nav-link:hover {
      color: var(--papa-orange) !important;
    }
    .phone-number {
      color: white;
      font-weight: 700;
      font-size: 1.2rem;
      text-decoration: none;
    }
    .phone-number i {
      color: var(--papa-orange);
      margin-right: 6px;
    }
    
    /* Кнопки */
    .btn-primary-custom {
      background-color: var(--papa-orange);
      color: white;
      border: none;
      padding: 12px 32px;
      border-radius: var(--btn-radius);
      font-weight: 600;
      transition: all 0.2s ease;
      box-shadow: var(--shadow-sm);
      font-family: 'Montserrat', sans-serif;
    }
    .btn-primary-custom:hover {
      background-color: #d35400;
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
      color: white;
    }
    .btn-outline-custom {
      background: transparent;
      border: 2px solid white;
      color: white;
      padding: 10px 28px;
      border-radius: var(--btn-radius);
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-outline-custom:hover {
      background: white;
      color: var(--papa-blue);
      border-color: white;
    }
    .btn-secondary-outline {
      background: transparent;
      border: 2px solid var(--papa-orange);
      color: var(--papa-orange);
      padding: 8px 24px;
      border-radius: var(--btn-radius);
      font-weight: 600;
    }
    .btn-secondary-outline:hover {
      background: var(--papa-orange);
      color: white;
    }

section {padding-top: 70px;}

#home {
    color: var(--white);
    height: 100vh;
    background: linear-gradient(110deg, var(--papa-blue) 0%, var(--papa-darkblue) 100%);
}
/* #home {
    background: url(../images/home-bg.jpg) no-repeat top;
    background-size: cover;
    background-position: center center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    height: 100vh;
    position: relative;
    text-align: left;
} */

/*-- header  ---*/

.slide-text{margin-top:130px;}

.slide-text p {color: var(--white);}

/*header Form*/
.bformBox {
	background: #fff;
	padding: 30px;
	margin-top: 50px;
}
.bformBox h3 {
	color: #444;
	margin: 0 0 15px 0;
	text-align: center;
	font-size: 24px;
}
.bformBox .formrow {
	margin-bottom: 15px;
}
.bformBox .formrow .form-control {
	height: auto;
	border-radius: 0;
	padding: 10px 15px;
	font-size: 16px;
	border-color: #ddd;
	box-shadow: none
}
.bformBox .formrow textarea.form-control {
	height: 100px;
}
.bformBox .btn {
	background-color: var(--papa-orange);
	width: 100%;
	border-radius: 8px;
	color: #fff;
	font-weight: 700;
	padding: 16px 32px;
	font-size: 18px;
	text-transform: uppercase;
}
.bformBox .btn:hover {
	background: #333;
}
.bformBox.pg6 {
	margin: 0;
	background: #f6f6f6;
	padding: 30px 0;
}

.form-check-label {
	color: var(--text-dark);
}
section.breadcrumbs {
    padding-top: 20px;
}
ul.breadcrumb li {
    display: inline-block;
    padding: 0 0 0 10px 
}

.breadCrumb {
    height: 50px;
}

/* main-icon */

.main-icon {
    padding-top: 70px; 
    text-align: center;
    background: var(--papa-darkblue);
}

.main-icon-box {
    padding: 20px;
}

.main-icon-box-icon {
    font-size: 25px;
    margin-bottom: 15px;
    color: #fff;
}

.main-services {
    background: var(--light-bg);
}

.card {border-radius: 12px;}

.link-arrow {
    color: var(--papa-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--papa-orange);
    margin: 0.8rem auto 0;
    border-radius: 4px;
}
/*---------------------------------------
    Work section              
-----------------------------------------*/
.portfolio-grid {
	margin: 10px 0 0 0;
	list-style: none;
}

.portfolio-grid li {
	padding: 5px;
}

#work {
	padding: 60px 0;
}

#work .work-thumb {
	padding: 0;
	overflow: hidden;
	position: relative;
	top: 0;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}

#work .work-thumb:hover {
	background: #ffffff;
}

#work .work-thumb img {
	width: 100%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0.8;
}

#work .work-thumb:hover img {
	-ms-transform: scale(1.2) rotate(5deg);
	-moz-transform: scale(1.2) rotate(5deg);
	-webkit-transform: scale(1.2) rotate(5deg);
	-o-transform: scale(1.2) rotate(5deg);
	transform: scale(1.2) rotate(5deg);
	opacity: 1;
}

.portfolio-grid li .itemHover {
	position: absolute;
	top: 25px;
	left: 25px;
	right: 25px;
	bottom: 25px;
	background: rgba(255, 255, 255, 0.9);
	transform: scale(0);
	transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease
}

.portfolio-grid li:hover .itemHover {
	transform: scale(1)
}

.portfolio-grid li .infoItem {
	display: table;
	width: 100%;
	height: 100%;
	text-align: center
}

.portfolio-grid li .itemtitle {
	vertical-align: middle;
	padding: 0 15px 15px;
	position: relative;
	display: table-cell;
}

.portfolio-grid li .itemtitle h5 {
	color: #000;
	font-size: 24px;
	margin: 0 0 5px
}

.portfolio-grid li .itemtitle p {
	color: #000;
	font-size: 16px;
	line-height: 24px
}
/*---------------------------------------
    Team section              
-----------------------------------------*/
#team {
	background: #eee;
}

.thumb-image {
	margin-bottom: 15px;
	overflow: hidden;
}
.team-thumb:hover img{    -ms-transform: scale(1.2) rotate(5deg);
    -moz-transform: scale(1.2) rotate(5deg);
    -webkit-transform: scale(1.2) rotate(5deg);
    -o-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg);}

.team-thumb {
	text-align: center;
	margin-bottom:30px;
	background:#fff;
	padding-bottom:10px;
}
.team-thumb h4 {
	margin: 0 0 5px 0;
	color: #db3636;
	font-size: 24px;
}
.team-thumb p {
	padding: 0 15px;
}
.team-thumb h5 {
	color: #000;
	margin: 0 0 10px 0;
}
.team-thumb img {
	width: 100%;
}

/*---------------------------------------
    Testimonials section              
-----------------------------------------*/
#testimonials {
	color: #fff;
	padding: 50px 0;
	background: #555 url(../images/testimonial-bg.jpg) repeat;
}

#testimonials h2 {
	color: #555;
}

.testimonialsList {
	list-style: none;
}

.testimonialsList li {
	text-align: center;
	margin: 15px;
}

.testimonialsList li .clientname {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-top: 10px;
}

.testimonialsList li p {
	font-style: italic;
	line-height: 26px;
	color: #ccc;
	max-width: 770px;
	margin: 0 auto;
	font-size: 18px;
}

.testimonialsList li .clientinfo {
	font-weight: 600;
	color: #fff;
}

#testimonials .section-title p {
	font-size: 18px;
	color: #fff;
}

/* =======================
		Blog Grid
======================= */

#blog {
	padding: 60px 0 50px 0;
}

.blogGrid {
	list-style: none;
}

.blogGrid li {
	margin-bottom: 30px;
}

.blogGrid li .int {
	background: #fff;
	padding: 20px;
	border: 1px solid #e4e4e4;
}

.blogGrid li .postimg {
	position: relative;
	display: block;
	margin: 0 0 10px 0;
}

.blogGrid li .postimg img {
	width: 100%;
}

.postimg .date {
	font-weight: bold;
	font-size: 15px;
	color: #999;
	line-height: 20px;
}

.blogGrid li .int:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blogGrid li .post-header {
	margin-bottom: 15px;
}

.blogGrid li p {
	font-size: 14px;
}

.blogGrid .readmore {
	display: inline-block;
	margin-top: 15px;
	color: #fff;
	font-weight: 600;
	padding: 7px 15px;
	background: #db3636;
	border-radius: 4px;
}

.blogGrid .readmore:hover {
	text-decoration: none;
	background: #333
}

.postmeta {
	margin: 10px 0 0 0;
	line-height: 24px;
}

.postmeta span,
.postmeta a {
	color: #ccc;
}

/*---------------------------------------
    Contact section              
-----------------------------------------*/
#contact {
	position: relative;
}

.contact-form {
	z-index: 10;
	position: relative;
}

.contact-form h4 {
	text-align: left;
	color: #333;
	font-size: 36px;
	margin: 0 0 30px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}

.contact-form h4 span {
	color: #db3636;
	font-weight: 400;
}

.contact-form .form-control {
	border-color: transparent;
	border-radius: 4px;
	box-shadow: none;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}

.contact-form input {
	border: 2px solid #f0f0f0 !important;
	height: 55px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #db3636 !important;
}

.contact-form textarea {
	background: #fff;
	border: 2px solid #f0f0f0 !important;
}

.contact-form button#submit {
	background-color: #db3636;
	border: none;
	border-radius: 4px;
	color: #ffffff;
	padding: 10px 30px;
	height: auto;
	width: 100%;
	text-transform: uppercase;
}

.contact-form button#submit:hover {
	background: #555;
	color: #ffffff;
}

.contact {
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
	text-align: left;
}

.contact>span {
	color: #db3636;
	float: left;
	font-size: 30px;
	line-height: 55px;
	text-align: center;
	width: 60px;
	height: 60px;
	border: 1px solid #db3636;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 5px;
}

.inner-page .fa-home:before {
	content: "\f015";
}

.information {
	margin-top: 5px;
	padding-left: 80px;
}

.information>strong {
	color: #000;
	display: table;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.information>p {
	line-height: 22px;
	margin: 0;
}

#map {
	width: 100%;
	height: 300px;
	border: none;
	display: block;
	pointer-events: none;
}

.frmap {
	margin-top: 10px;
}

/*---------------------------------------
   Clients
-----------------------------------------*/
.our-clients {
	padding: 30px 0;
	background: #f7f7f7;
}

.our-clients .owl-controls {
	display: none !important;
}

.carousel-inner p {
    color: var(--white);
}

/** FAQ **/
.panel-title, .panel-body {
    color: #db3636;
    padding: 10px 55px 10px 15px
}
.panel-body {
    color: var(--text-dark);
}
.panel-group .panel {
    border-radius: 18px;
    margin-bottom: 28px;
    border:1px solid #ddd;
}

/** FOOTER **/

footer {
    background-color: var(--papa-blue);
    color: #ced4da;
}

