/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#f9ff6f70;
color:#000001;
font-family:Arial, sans-serif;
}

h1,h2,h3,h4,h5,h6{
font-family:"Glyphonic", serif;
font-weight:bold;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:#F5C518;
padding:10px 10px;
color:white;
}

.nav-links{
display:flex;
list-style:none;
}

.nav-links li{
margin-right:20px;
}

.nav-links a{
color:#000000;
text-decoration:none;

}
.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
color:white;
margin-left:auto;
}

.nav-logo {
height:50px;
width:auto;
margin-right:20px;
display:block;

filter: drop-shadow(0 0 10px rgba(0,0,0,0.6));
}

/* HERO LOGO (homepage big one) */
.hero-logo {
max-width:200px;
width:120%;
margin-bottom:15px;
}
/* HERO */

h2{
margin-bottom:10px;
}

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,0.25),rgba(0,0,0,0.45)), url("more/frontpagebg.jpg");
background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-text{
background:rgba(0,0,0,0.78);
padding:40px;
border-radius:10px;
margin:0 190px 50px 190px;
}

.hero-logo {
   display: block;
   margin: 0 auto 15px auto;
   max-width: 150px; /* adjust size */
   margin-bottom: 10px;
}

.hero-content {
   text-align: center;
}


/* BUTTONS */

.quote-btn,
.cta-btn{
color:#000001;
margin-top:15px;
padding:12px 25px;
border:none;
background:#F5C518;
font-size:16px;
cursor:pointer;
transition:all .3s ease;
position:relative;
overflow:hidden;
border-radius:6px;
display:inline-block;
text-decoration:none;
}

/* Hover effect */

.quote-btn:hover,
.cta-btn:hover{
transform:translateY(-5px);
box-shadow:0 8px 15px rgba(0,0,0,0.3);
}


/* =========================
   COMET BORDER
========================= */

.quote-btn{
position:relative;
z-index:1;
}

/* spinning comet */

.quote-btn::before{
content:"";
position:absolute;
top:-100%;
left:-100%;
width:300%;
height:300%;

background:conic-gradient(
transparent 0deg,
transparent 320deg,
#fff8df 340deg,
transparent 360deg
);

animation:spin 4s linear infinite;
filter:blur(6px);
z-index:-2;
}

/* button fill */

.quote-btn::after{
content:"";
position:absolute;
inset:2px;
background:#F5C518;
border-radius:inherit;
z-index:-1;
}


/* spin animation */

@keyframes spin{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}



/* SERVICES */

h3{
margin-bottom:20px;
}

.section-title{
background:#F5C518;
padding:20px;
text-align:center;
height:70px;
}

.service-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.service-card{
display:block;
text-decoration:none;
color:inherit;
text-align:center;
margin-bottom:40px;
}

.service-card img{
width:89%;
height:300px;
object-fit:cover;
margin-bottom:20px;
border-radius:6px;
  box-shadow:0 15px 40px rgba(0,0,0,.45);
  transition:transform 0.3s ease;
background:white;
}
.service-card img:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,.65);
}
  


/* HOME PAGE GALLERY (CAROUSEL) */

.gallery{
padding:20px 30px;
text-align:center;
background:#F5C518;
}

.carousel-wrapper{
position:relative;
overflow:hidden;
margin-top:20px;
}

.gallery-grid{
display:flex;
gap:15px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px;
}

.gallery-grid::-webkit-scrollbar{
display:none;
}

.gallery-item{
min-width:280px;
position:relative;
border-radius:6px;
overflow:hidden;
}

.gallery-item img{
width:100%;
height:300px;
object-fit:cover;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,.45);
}


/* OVERLAY */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
opacity:0;
transition:.3s;
padding:20px;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}


/* CAROUSEL BUTTONS */

.carousel-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.6);
color:white;
border:none;
font-size:30px;
cursor:pointer;
padding:10px 15px;
z-index:10;
}

.carousel-btn.left{ left:0; }
.carousel-btn.right{ right:0; }


/* CTA */

.cta{
padding:60px;
text-align:center;
background:#c7bf814f;
color:#000001;
}


/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#F5C518;
color:#000001;
}


/* QUOTE PAGE */

.quote-hero{
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("more/heathrow.jpg");
background-size:cover;
background-position:center;
min-height:90vh;

display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.quote-section{
max-width:1000px;   /* change this to widen the entire box */
width:90%;
margin:0 auto;
transform:translateY(60px);
padding:40px;
background:rgba(255,255,255,.95);
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,.25);
text-align:center;
   margin-bottom:75px;
}

.quote-form{
display:flex;
flex-direction:column;
gap:15px;
max-width:600px;
margin:auto;
}

.quote-form input,
.quote-form textarea{
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:5px;
width:100%;        /* makes fields full width */
}

.quote-form textarea{
width:100%;
min-height:140px;
}
.quote-form button{
background:#F5C518;
color:white;
border:none;
padding:14px;
font-size:16px;
border-radius:5px;
cursor:pointer;
transition:.3s;
width:200px;
margin:10px auto 0;
}

.quote-form button:hover{
background:#F5C518;
}
.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-bottom:15px;
}


/* DIRECT CONTACT */

.direct-contact{
text-align:center;
padding:60px 20px;
background:#c7bf814f;
}

.direct-contact h3{
margin-bottom:15px;
font-size:28px;
}

.direct-contact p{
font-size:18px;
margin-bottom:10px;
}

.phone{
font-size:24px;
font-weight:bold;
color:#FFD84D;
}


/* GALLERY PAGE GRID */

.gallery h1{
margin-bottom:40px;
}

.gallery .gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}

.gallery .gallery-item{
position:relative;
overflow:hidden;
border-radius:8px;
}

.gallery .gallery-item img{
width:100%;
height:280px;
object-fit:cover;
display:block;
transition:.3s;
}

.gallery .gallery-item:hover img{
transform:scale(1.08);
}


/* ABOUT PAGE */

.about-hero{
background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url("more/frontpagebg.jpg");
background-size:cover;
background-position:center;
height:60vh;

display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.about-hero-text{
background:rgba(0,0,0,.6);
padding:40px;
border-radius:10px;
max-width:700px;
width:90%;
}

.about-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:60px 40px;
max-width:1100px;
margin:auto;
}

.about-content p{
margin-bottom:15px;
line-height:1.6;
}

.map-container {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.about-services ul{
list-style:none;
}

.about-services li{
margin-bottom:10px;
font-size:18px;
}

.about-local{
text-align:center;
padding:60px 30px;
background:#c7bf814f;
}

.about-local p{
max-width:700px;
margin:auto;
margin-bottom:15px;
line-height:1.6;
}
.about-story{
border-right:2px solid #F5C518;
padding-right:40px;
}

.about-services{
padding-left:40px;
}

/* Service Page */

.services-page{
width:90%;
max-width:1100px;
margin:auto;
padding:30px 0;
}

.services-title{
text-align:center;
margin-bottom:10px;
}

.services-intro{
text-align:center;
margin-bottom:60px;
}

.service-row{
display:flex;
align-items:center;
gap:40px;
margin-bottom:20px;
}

.service-row img{
width:30%;
border-radius:8px;
  box-shadow:0 15px 40px rgba(0,0,0,.45);
  transition:transform 0.3s ease;
}

.service-row img:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,.65);

}

.service-text{
width:65%;
}

.service-text h2{
margin-bottom:10px;
color:#000000;
}

.service-text p{
line-height:1.6;
}

.reverse{
flex-direction:row-reverse;
}



/* MOBILE */

@media(max-width:768px){

.service-row{
flex-direction:column;
}

.reverse{
flex-direction:column;
}

.service-row img,
.service-text{
width:100%;
}
  
  .menu-toggle{
display:block;
}

.navbar{
flex-wrap:wrap;
}

.nav-links{
display:none;
width:100%;
flex-direction:column;
text-align:center;
margin-top:10px;
}

.nav-links li{
margin:10px 0;
}

.nav-links.active{
display:flex;
}

  
  .form-grid{
grid-template-columns:1fr;
}

   .map-container {
    grid-column: 1;
    grid-row: auto;
    min-height: 300px;
  }

.about-story{
border-right:none;
padding-right:0;
}

.about-services{
padding-left:0;
}
  
.about-content{
grid-template-columns:1fr;
}

.about-hero{
height:50vh;
}

.hero-text{
width:95%;          /* wider */
margin:0 auto 30px; /* centers it properly */
padding:20px;       /* slightly tighter padding */
}

.hero-text h1{
font-size:32px;
}

.hero-text p{
font-size:16px;
}

.hero-text button{
font-size:18px;
padding:14px 26px;
}

}






































