/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f7fb;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: linear-gradient(90deg,#007bff,#0056b3);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 24px;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-left: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  opacity: .8;
}

/* HERO */
.hero {
  background: linear-gradient(135deg,#007bff,#0046a0);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero button {
  background: white;
  color: #007bff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.hero button:hover {
  background: #f2f2f2;
}

/* Services */
#services {
  padding: 70px 0;
}

#services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #007bff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.service {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: .3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service h3 {
  color: #007bff;
  margin-bottom: 15px;
}

/* About */
#about {
  background: white;
  padding: 70px 0;
  text-align: center;
}

#about p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
}

/* CTA */
.cta {
  background: #007bff;
  color: white;
  text-align: center;
  padding: 60px 0;
}

.cta button {
  background: white;
  color: #007bff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* CONTACT PAGE */

#contact{
padding:70px 0;
background:#f5f7fb;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:50px;
margin-top:40px;
}

/* CONTACT INFO */

.contact-info{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.contact-info h3{
margin-bottom:25px;
color:#007bff;
}

.info-box{
margin-bottom:25px;
}

.info-box h4{
margin-bottom:5px;
font-size:16px;
}

.response{
margin-top:20px;
color:#666;
font-size:14px;
}

/* CONTACT FORM */

.contact-form-box{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.contact-form-box h3{
margin-bottom:20px;
color:#007bff;
}

.form-row{
display:flex;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
flex:1;
margin-bottom:15px;
}

.form-group label{
font-weight:600;
margin-bottom:6px;
}

.form-group input,
.form-group textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.form-group textarea{
height:150px;
resize:none;
}

.form-group input:focus,
.form-group textarea:focus{
border-color:#007bff;
outline:none;
}

.contact-form-box button{
background:#007bff;
color:white;
border:none;
padding:12px;
border-radius:6px;
cursor:pointer;
font-size:16px;
width:200px;
}

.contact-form-box button:hover{
background:#0056b3;
}

/* GOOGLE MAP */

.map iframe{
width:100%;
height:350px;
border:0;
}

/* MOBILE */

@media(max-width:900px){

.contact-wrapper{
grid-template-columns:1fr;
}

.form-row{
flex-direction:column;
}

}

/* MAP SECTION */

.location-section{
padding:80px 0;
background:white;
}

.map-title{
text-align:center;
font-size:32px;
margin-bottom:10px;
color:#007bff;
}

.map-subtitle{
text-align:center;
color:#666;
margin-bottom:40px;
}

.map-container{
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.map-container iframe{
width:100%;
height:420px;
border:0;
}

/* CTA BUTTONS */

.cta-buttons{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* Primary Button */

.btn-primary{
background:white;
color:#007bff;
padding:12px 28px;
border-radius:25px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#f2f2f2;
}

/* Secondary Button */

.btn-secondary{
border:2px solid white;
color:white;
padding:10px 26px;
border-radius:25px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-secondary:hover{
background:white;
color:#007bff;
}

/* TERMS PAGE */

.terms-section{
padding:80px 0;
background:#f5f7fb;
}

.terms-container{
background:white;
padding:50px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
max-width:900px;
margin:auto;
}

.terms-container h3{
margin-top:30px;
margin-bottom:10px;
color:#222;
}

.terms-container p{
margin-bottom:15px;
line-height:1.7;
text-align:left;
}

.terms-container ul{
margin-left:20px;
margin-bottom:20px;
}

.terms-container li{
margin-bottom:8px;
}
