/* Browser style reset */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body {
  width:100%;
  overflow-x:hidden;
  font-family: Arial, sans-serif;
}

.contact-owner-section {
  margin-top: 30px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.contact-owner-section h2 {
  margin-bottom: 15px;
}

.contact-owner-form .form-group {
  margin-bottom: 15px;
}

.contact-owner-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-owner-form input,
.contact-owner-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-owner-form button {
  background: #1e3a5f;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.contact-owner-form button:hover {
  background: #16314f;
}

#contactOwnerStatus {
  margin-top: 12px;
  font-size: 14px;
  color: #1e3a5f;
}

/* SOCIAL ICON LINKS */

.social-icons{
  display:flex;
  gap:12px;
  align-items:center;
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f4f6f9;
  border:1px solid #ddd;
  transition:all 0.2s ease;
}

.social-icons a:hover{
  transform:scale(1.08);
  background:#e8edf3;
}

.social-icons img{
  width:18px;
  height:18px;
  object-fit:contain;
}
/* SOCIAL ICON LINKS */

.social-icons{
  display:flex;
  gap:12px;
  align-items:center;
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f4f6f9;
  border:1px solid #ddd;
  transition:all 0.2s ease;
}

.social-icons a:hover{
  transform:scale(1.08);
  background:#e8edf3;
}

.social-icons img{
  width:18px;
  height:18px;
  object-fit:contain;
}
/* SOCIAL ICON LINKS */

.social-icons{
  display:flex;
  gap:12px;
  align-items:center;
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#f4f6f9;
  border:1px solid #ddd;
  transition:all 0.2s ease;
}

.social-icons a:hover{
  transform:scale(1.08);
  background:#e8edf3;
}

.social-icons img{
  width:18px;
  height:18px;
  object-fit:contain;
}

/* FLOATING CONTACT BUTTON */

.floating-contact{
position:fixed;
bottom:25px;
right:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-contact a{
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 3px 10px rgba(0,0,0,0.25);
transition:all 0.2s ease;
}

.floating-contact a:hover{
transform:scale(1.1);
}

.floating-contact img{
width:24px;
height:24px;
}
.site-header{
background:#1e3a5f;
color:white;
padding:14px 20px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:52px;
height:52px;
border-radius:10px;
background:white;
padding:4px;
}

.logo-area h1{
margin:0;
font-size:26px;
}

.logo-area span{
font-size:13px;
color:#cfe1ff;
}

.main-nav{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.main-nav a,
.main-nav button{
text-decoration:none;
color:white;
background:rgba(255,255,255,0.12);
padding:8px 12px;
border-radius:8px;
border:none;
font-size:14px;
cursor:pointer;
}

.main-nav a:hover,
.main-nav button:hover{
background:rgba(255,255,255,0.22);
}