/* ==========================
          RESET / BASE
========================== */

        
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
    body { background-color: #f5f5f5; color: #333; }
    a { text-decoration: none; color: inherit; }

/* ==========================
           HEADER
========================== */
.header-menu{
    display:flex;
    gap:25px;
    justify-content:flex-end;
    margin-top:10px;
}

.header-menu a{
    color:#333;
    text-decoration:none;
    font-weight:700;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
}

.header-menu a:hover{
    color:#ff9900;
}

.top-header{
  background:white;
  border-bottom:3px solid #ff9900;
  position:sticky;
  top:0;
  z-index:1000;
}

.header-container{
  max-width:1200px;
  margin:0 auto;
  padding:8px 40px 12px;
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:start;
  column-gap:20px;
}

/* LEFT - LOGO */
.header-left{
  justify-self:start;
}

.header-left img{
  height:105px;
  width:auto;
  display:block;
  cursor:pointer;
}

/* HIDE OLD CENTER TEXT */
.header-center{
  display:none;
}

/* RIGHT SIDE */
.header-right{
  justify-self:end;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}

.header-phone{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
	margin-top:18px;  
    margin-bottom:18px;
}

.header-phone i{
    color:#ff9900;
    font-size:18px;
}

.header-phone:hover{
    color:#ff9900;
}

.header-tagline{
  font-size:15px;
  color:#ff9900;
  font-weight:600;
  font-family:"Century Gothic", Arial, sans-serif;
  text-align:right;
  letter-spacing:0.5px;
}

@media (max-width:768px){

    .header-container{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .header-left img{
        height:44px;
    }

    .header-phone{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        font-size:18px;
    }

    .header-menu{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:20px;
    }
}

/* ==========================
           HERO
========================== */

 .hero {
    position: relative;
    background-image: url('images/index_hero.webp');
    background-position: center 90%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
	padding: 80px 20px;
	flex-direction: column;
	border-bottom:3px solid #ff9900;
    }

        .hero::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:rgba(255,255,255,0.45);
        }

.hero > div {
    position: relative;     /* make the button container positioned */
    z-index: 2;             /* ensure button is above overlay */
}

.hero h1{
    position:relative;
    z-index:2;
	color:#333;
    font-size:2.2rem;
    font-weight:bold;
    margin-bottom:15px;
    padding:20px;
    border-radius:10px;
    font-style:normal;
}

.hero h2{
	position:relative;
    z-index:2;
    font-size:20px;
    font-weight:500;
    color:#444;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:25px;
}
		
/* ==========================
          CALL BUTTON
========================== */

		.call-btn-big {
			padding: 20px 40px;        
			font-size: 22px;           
			font-weight: bold;
			background-color: #ff9900;
			color: #000;
			border: none;
			cursor: pointer;
			box-shadow: 0 6px 12px rgba(0,0,0,0.3);
			transition: background 0.3s, transform 0.2s;
			display: inline-block;
		}

		.call-btn-big:hover {
			background-color: #e68a00;
			transform: translateY(-2px);
		}

		#phoneNumber {
			color: #ff9900;
			font-weight: bold;
			font-size: 22px;
			margin-top: 15px;
		}

/* ==========================
        CONTACT FORM
========================== */
.commercial-bg{
    background:
        linear-gradient(
            rgba(255,255,255,0.60),
            rgba(255,255,255,0.50)
        ),
        url('images/ChesterHillAfterCopy.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
	padding-bottom:120px;
}

.contact-form-section{
    background:none;
}

.bg-image-section{
    background:none;
}

.contact-form-section{
    background:none;
    padding:80px 20px;
}

.contact-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.contact-form{
    width:100%;
    max-width:none;
    margin:0;
    background:#f5f5f5;
    padding:35px;
    border-radius:12px;
    border:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    text-align:center;
    height:100%;
}

.contact-form h2{
    font-size:30px;
    color:#1a1a1a;
    margin-bottom:30px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-form .form-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.contact-form .form-row input{
    flex:1 1 45%;
    min-width:120px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:14px;
    font-size:15px;
    border:1px solid #ddd;
    border-radius:8px;
    box-sizing:border-box;
}

.contact-form textarea{
    min-height:160px;
}

.contact-form button{
    padding:15px 30px;
    font-size:16px;
    font-weight:bold;
    background:#ff9900;
    color:#000;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:all 0.3s ease;
}

.contact-form button:hover{
    background:#e68a00;
    transform:translateY(-2px);
}

.tick{
    color:#ff9900;
    margin-right:10px;
    font-size:20px;
    font-weight:bold;
}

.contact-info{
    background:transparent;
    color:#1a1a1a;
    padding:15px 10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-info h2{
    font-size:32px;
    text-align:center;
    margin-bottom:30px;
}

.contact-info ul{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-info li{
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,0.15);
    font-size:18px;
    font-weight:500;
}

.contact-info li:last-child{
    border-bottom:none;
}

.licence-box{
    background:rgba(255,255,255,0.45);
backdrop-filter:blur(5px);
-webkit-backdrop-filter:blur(5px);

    border:3px solid #ff9900;
    border-radius:12px;
    padding:25px 30px;
    max-width:500px;
    margin:25px auto;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.licence-box ul{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}

.licence-box li{
    padding:14px 0;
    border-bottom:1px solid #ddd;
    font-size:17px;
    font-weight:600;
}

.licence-box li:last-child{
    border-bottom:none;
}

/* MOBILE */

@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:25px;
    }

    .contact-form{
        padding:30px 20px;
    }

    .contact-info{
        padding:30px 25px;
    }

    .contact-info h2{
        font-size:28px;
    }

    .contact-info li{
        font-size:16px;
    }

    .contact-form .form-row{
        flex-direction:column;
    }

    .contact-form .form-row input{
        width:100%;
    }
}

/* ==========================
       SERVICES SECTION
========================== */

.services-title{
    text-align:center;
    padding:80px 20px 40px;
}

.services-title h2{
    font-size:48px;
    color:#1a1a1a;
    margin-bottom:15px;
    position:relative;
}

.services-title h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#ff9900;
    margin:12px auto 0;
}

.services-title p{
    font-size:18px;
    color:#555;
    max-width:700px;
    margin:0 auto;
}

/* SERVICE CARDS */

.commercial-services{
    max-width:1200px;
    margin:0 auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.service-card{
    background:rgba(255,153,0,0.55);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
	
    color:#000;
    padding:35px 25px;
    border-radius:12px;
    text-align:center;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:all 0.3s ease;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card{
    opacity:0;
    animation:slideInRight 0.8s ease forwards;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.25);
}

.service-card:nth-child(1){
    animation-delay:0.1s;
}

.service-card:nth-child(2){
    animation-delay:0.3s;
}

.service-card:nth-child(3){
    animation-delay:0.5s;
}

.service-card:nth-child(4){
    animation-delay:0.7s;
}

.service-card:nth-child(5){
    animation-delay:0.9s;
}

.service-card h3{
    font-size:32px;
    margin-bottom:15px;
    line-height:1.2;
}

.service-card p{
    font-size:16px;
    line-height:1.6;
    margin:0;
}

/* TABLET */

@media(max-width:1024px){

    .commercial-services{
        grid-template-columns:repeat(2,1fr);
    }

    .services-title h2{
        font-size:40px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .services-title{
        padding:60px 20px 30px;
    }

    .services-title h2{
        font-size:32px;
    }

    .services-title p{
        font-size:16px;
    }

    .commercial-services{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card h3{
        font-size:28px;
    }
}

/* ==========================
       AREAS WE SERVICE
========================== */

.areas-section{
    background:#fff;
    padding:90px 20px;
}

.areas-container{
    max-width:1200px;
    margin:0 auto;
    text-align:center;
}

.areas-container h2{
    font-size:48px;
    margin-bottom:20px;
    color:#1a1a1a;
}

.areas-container h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#ff9900;
    margin:12px auto 0;
}

.areas-container p{
    max-width:800px;
    margin:0 auto 50px;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.area-card{
    background:#f5f5f5;
    padding:25px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.area-card:hover{
    transform:translateY(-5px);

    background:rgba(255,153,0,0.55);
    border:1px solid rgba(255,153,0,0.70);

    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

@media(max-width:768px){

    .areas-container h2{
        font-size:32px;
    }

    .areas-grid{
        grid-template-columns:1fr;
    }

    .areas-container p{
        font-size:16px;
    }
}

/* ==========================
         GALLERY
========================== */

.photo-slider{
    padding:80px 20px;
    background:#f5f5f5;
    text-align:center;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* center the image horizontally */
    align-items: center;
}

.slider-image {
    display: none;
    width: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#ff9900;
    border:none;
    color:#fff;
    font-size:30px;
    padding:12px 18px;
    cursor:pointer;
    border-radius:8px;
    transition:all 0.3s ease;
    z-index:10;
}

.slider-btn:hover{
    background:#e68a00;
}

.slider-btn.prev {
    left: 20px;               /* stick to left edge of image */
    transform: translate(-2%, -50%); /* nudge it slightly inside */
}

.slider-btn.next {
    right: 20px;              /* stick to right edge of image */
    transform: translate(2%, -50%); /* nudge it slightly inside */
}

.slider-title{
    text-align:center;
    font-size:42px;
    color:#1a1a1a;
    margin-bottom:15px;
}

.slider-title::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:10px auto 0;
}

.slider-subtitle{
    text-align:center;
    font-size:18px;
    color:#666;
    margin-bottom:40px;
}

/* Mobile */
@media (max-width: 600px) {
    .slider-image { max-height: 250px; }
    .slider-btn { font-size: 24px; padding: 8px 12px; }
}

/* ==========================
          FAQ SECTION
========================== */

.faq{
    max-width:none;
    margin:0;
    padding:80px 20px;
    text-align:left;

    background:
        linear-gradient(
            rgba(255,255,255,0.82),
            rgba(255,255,255,0.82)
        ),
        url('images/Services_Metal.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.faq h2{
    font-size:42px;
    color:#1a1a1a;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
}

.faq h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:10px auto 0;
}

.faq-btn{
    display:inline-block;
    background:#ff9900;
    color:#000;
    font-weight:700;
    text-decoration:none;

    padding:14px 30px;
    font-size:16px;

    border-radius:4px;
    transition:0.3s ease;
}

.faq-btn:hover{
    transform:translateY(-2px);
}

.faq-item{
    max-width:900px;
    margin:0 auto 20px;
    border-radius:10px;
    background:rgba(255,255,255,0.90);
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    overflow:hidden;
}

.faq-question{
    width:100%;
    text-align:left;
    padding:20px;
    font-size:17px;
    font-weight:600;
    color:#1a1a1a;
    background:transparent;
    border:none;
    outline:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question:hover{
    background:rgba(255,153,0,0.18);
}

.faq-symbol{
    margin-left:10px;
    font-weight:bold;
    color:#ff9900;
    font-size:22px;
}

.faq-answer{
    display:none;
    padding:15px 20px;
    font-size:16px;
    color:#1a1a1a;
    background:rgba(255,255,255,0.75);
    line-height:1.6;
}

	/* Show answer when active */
		.faq-item.active .faq-answer {
			display: block;
		}

/* ==========================
          BRANDS
========================== */

.brands-strip{
    overflow:hidden;
    background:#f5f5f5;
    padding:40px 0;
}

.brands-track{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;
    animation:scrollBrands 25s linear infinite;
}

.brands-track img{
    height:55px;
    width:auto;
    opacity:0.9;
    transition:.3s;
}

.brands-track img:hover{
    opacity:1;
    transform:scale(1.05);
}

@keyframes scrollBrands{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:600px){
    .brands-strip{
        padding:30px 0;
    }

    .brands-track{
        gap:40px;
        animation-duration:18s;
    }

    .brands-track img{
        height:42px;
    }
}

/* ==========================
          FOOTER
========================== */

.site-footer{
    background:#d9d9d9;
    border-top:3px solid #ff9900;
    color:#333;
}

.footer-content{
    max-width:1200px;
    margin:0 auto;
    padding:35px 20px 15px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;                 /* was 50px */
}

.footer-column h3,
.footer-column h4{
    color:#ff9900;
    font-size:15px;           /* add this */
    margin-bottom:15px;
}

.footer-column p,
.footer-column li,
.footer-column a{
    font-size:13px;           /* add this */
    line-height:1.7;
}

.footer-column p{
    margin-bottom:12px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:10px;
}

.footer-column a{
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#ff9900;
}

.footer-logo-footer{
    text-align:center;
    padding:5px 0 15px;
}

.footer-logo-footer img{
    height:70px;
    width:auto;
    opacity:.95;
}

.footer-bottom{
    text-align:center;
    padding:12px;
    background:#cfcfcf;
    font-size:13px;           
    border-top:1px solid rgba(0,0,0,.08);
}

/* MOBILE */

@media(max-width:768px){

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

}


        @media(max-width: 600px){ .hero h1 { font-size: 32px; } }

/* ==========================
      SERVICES PAGE HERO
========================== */

.services-hero{
    background:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url('images/services_hero.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:120px 20px;
    text-align:center;
    border-bottom:3px solid #ff9900;
}

.services-hero-content{
    max-width:900px;
    margin:0 auto;
}

.services-hero h1{
    font-size:52px;
    color:#333;
    margin-bottom:20px;
}

.services-hero p{
    font-size:20px;
    color:#444;
    line-height:1.7;
}

/* ==========================
    SERVICES PAGE INTRO 
========================== */

.services-intro{
    background:#fff;
    padding:80px 20px;
    text-align:center;
}

.services-intro .container{
    max-width:900px;
    margin:0 auto;
}

.services-intro h2{
    font-size:42px;
    margin-bottom:20px;
}

.services-intro h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:12px auto 0;
}

.services-intro p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* ==========================
     SERVICES PAGE ROWS
========================== */

.service-row{
    max-width:1200px;
    margin:0 auto;
    padding:80px 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.service-row.reverse .service-image{
    order:2;
}

.service-row.reverse .service-content{
    order:1;
}

.service-image{
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.service-content h2{
    font-size:40px;
    color:#1a1a1a;
    margin-bottom:20px;
}

.service-content h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#ff9900;
    margin-top:10px;
}

.service-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.service-content ul{
    list-style:none;
    padding:0;
}

.service-content li{
    position:relative;
    padding:12px 0 12px 30px;
    border-bottom:1px solid #e5e5e5;
    font-size:17px;
}

.service-content li::before{
    content:"▲";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    color:#ff9900;
    font-size:12px;
}

.service-content li:last-child{
    border-bottom:none;
}

/* ==========================
     SERVICES PAGE CTA 
========================== */

.services-cta{
    background:#ff9900;
    text-align:center;
    padding:80px 20px;
}

.services-cta h2{
    font-size:42px;
    margin-bottom:20px;
    color:#000;
}

.services-cta p{
    font-size:18px;
    margin-bottom:30px;
    color:#222;
}

.services-cta .call-btn-big{
    background:#222;
    color:#fff;
    border:none;
}

.services-cta .call-btn-big:hover{
    background:#000;
    color:#fff;
}

/* ==========================
    SERVICES PAGE MOBILE
========================== */

@media(max-width:768px){

    .services-hero{
        padding:80px 20px;
    }

    .services-hero h1{
        font-size:34px;
    }

    .services-hero p{
        font-size:16px;
    }

    .services-intro h2{
        font-size:30px;
    }

    .service-row{
        grid-template-columns:1fr;
        gap:30px;
        padding:60px 20px;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-content{
        order:unset;
    }

    .service-content h2{
        font-size:30px;
    }

    .service-content p{
        font-size:16px;
    }

    .service-content li{
        font-size:15px;
    }

    .services-cta h2{
        font-size:30px;
    }
	
	.service-image{
        height:260px;
    }
}

/* ==========================
         FAQ PAGE HERO
========================== */

.faq-hero{
    background:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url('images/faq_hero.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:120px 20px;
    text-align:center;
    border-bottom:3px solid #ff9900;
}

.faq-hero-content{
    max-width:900px;
    margin:0 auto;
}

.faq-hero h1{
    font-size:52px;
    color:#333;
    margin-bottom:20px;
}

.faq-hero p{
    font-size:20px;
    color:#444;
    line-height:1.7;
}

/* ==========================
        FAQ PAGE INTRO
========================== */
.faq-page-bg{
    background:
        linear-gradient(
            rgba(255,255,255,0.70),
            rgba(255,255,255,0.70)
        ),
        url('images/Services_Metal.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding-bottom:80px;
}

.faq-intro{
    background:transparent;
    padding:80px 20px 60px;
    text-align:center;
}

.faq-intro .container{
    max-width:900px;
    margin:0 auto;
}

.faq-intro h2{
    font-size:42px;
    margin-bottom:20px;
    color:#1a1a1a;
}

.faq-intro h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:12px auto 0;
}

.faq-intro p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* ==========================
        FAQ PAGE
========================== */

.faq-page{
    padding:40px 20px 80px;
    background:transparent;
}

.faq-page h2{
    font-size:42px;
    color:#1a1a1a;
    font-weight:bold;
    text-align:center;
    margin-bottom:50px;
}

.faq-page h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:10px auto 0;
}

.faq-page .faq-item{
    max-width:1000px;
    margin:0 auto 12px;
    border-radius:10px;
    background:rgba(255,255,255,0.95);
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    overflow:hidden;
}

.faq-page .faq-question{
    width:100%;
    text-align:left;
    padding:16px 22px;
    font-size:16px;
    font-weight:600;
    color:#1a1a1a;
    background:transparent;
    border:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-page .faq-question:hover{
    background:rgba(255,153,0,0.15);
}

.faq-page .faq-symbol{
    color:#ff9900;
    font-size:18px;
    font-weight:bold;
}

.faq-page .faq-answer{
    display:none;
    padding:20px 25px;
    background:#fff;
}

.faq-page .faq-answer p{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ==========================
        FAQ PAGE CTA
========================== */

.faq-cta{
    background:#ff9900;
    text-align:center;
    padding:80px 20px;
}

.faq-cta h2{
    font-size:42px;
    color:#000;
    margin-bottom:20px;
}

.faq-cta p{
    font-size:18px;
    color:#222;
    margin-bottom:30px;
}

/* ==========================
          MOBILE
========================== */

@media(max-width:768px){

    .faq-hero{
        padding:80px 20px;
    }

    .faq-hero h1{
        font-size:34px;
    }

    .faq-hero p{
        font-size:16px;
    }

    .faq-intro{
        padding:60px 20px;
    }

    .faq-intro h2{
        font-size:30px;
    }

    .faq-intro p{
        font-size:16px;
    }

    .faq-page{
        padding:60px 15px;
    }

    .faq-page .faq-question{
        font-size:16px;
        padding:18px;
    }

    .faq-page .faq-answer p{
        font-size:15px;
    }

    .faq-cta h2{
        font-size:30px;
    }

    .faq-cta p{
        font-size:16px;
    }
}

/* ==========================
      CONTACT PAGE HERO
========================== */

.contact-hero{
    background:
        linear-gradient(
            rgba(255,255,255,0.55),
            rgba(255,255,255,0.55)
        ),
        url('images/contact_hero.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:120px 20px;
    text-align:center;
    border-bottom:3px solid #ff9900;
}

.contact-hero-content{
    max-width:900px;
    margin:0 auto;
}

.contact-hero h1{
    font-size:52px;
    color:#333;
    margin-bottom:20px;
}

.contact-hero p{
    font-size:20px;
    color:#444;
    line-height:1.7;
}

/* ==========================
   CONTACT PAGE BACKGROUND
========================== */

.contact-commercial-bg{
    background:
        linear-gradient(
            rgba(255,255,255,0.80),
            rgba(255,255,255,0.80)
        ),
        url('images/ChesterHillAfterCopy.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ==========================
     CONTACT PAGE INTRO
========================== */

.contact-intro{
    background:transparent;
    padding:100px 20px 60px;
    text-align:center;
}

.contact-intro .container{
    max-width:900px;
    margin:0 auto;
}

.contact-intro h2{
    font-size:42px;
    margin-bottom:20px;
    color:#1a1a1a;
}

.contact-intro h2::after{
    content:"";
    display:block;
    width:80px;
    height:4px;
    background:#ff9900;
    margin:12px auto 0;
}

.contact-intro p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.contact-info-block{
    margin-top:35px;
}

.contact-info-block h3{
    color:#ff9900;
    font-size:22px;
    margin-bottom:15px;
}

.contact-info-block p{
    margin-bottom:10px;
    line-height:1.3;
}


/* ==========================
      CONTACT PAGE FORM
========================== */

.contact-page-section{
    background:transparent;
    padding:60px 20px 90px;
}

.contact-page-section .contact-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.contact-page-info{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 40px;
}

.contact-page-info h2{
    font-size:32px;
    margin-bottom:45px;
    color:#1a1a1a;
    text-align:center;
}

.contact-page-info .contact-info-block{
    width:100%;
    max-width:420px;
    text-align:center;
    margin:0 auto 35px;
}


.contact-info-block{
    width:100%;
    max-width:420px;
    text-align:left;
}

/* ==========================
      CONTACT PAGE MOBILE
========================== */

@media(max-width:768px){

    .contact-intro{
        padding:70px 20px 40px;
    }

    .contact-intro h2{
        font-size:30px;
    }

    .contact-intro p{
        font-size:16px;
    }

    .contact-page-section{
        padding:40px 20px 60px;
    }

    .contact-page-section .contact-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }
}