/* === SKYWAVE RESTRUCTURED HOMEPAGE STYLES === */
/* Accent and utility colors to match your theme */
:root { 
    --accent: var(--blue);
    --dark: #0e1622;
    --light: var(--light-bg);
    --blue: #1f4d8f; --dark-blue: #163b6c; 
    --light-bg: #f8f9fb; 
    --muted: #5f6c7b; 
    --shadow: 0 4px 18px rgba(0, 0, 0, 0.06); 
    --radius: 12px; font-family: "Poppins", sans-serif; 
} 

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

body { 
    background: var(--light-bg); 
    color: #0e1622; 
    line-height: 1.6;
}

/* GLOBAL BUTTONS */
.btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.alt {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--dark-blue);
}

.btn.alt:hover {
    background: var(--blue);
    color: white;
}

.btn.primary {
    background: var(--blue);
    color: white;
}

/* NAVBAR */ 

header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 18px 5%; transition: all 0.3s ease; } 

.logo {
  width: 60px;
  height: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
}

header.transparent { background: transparent; color: white; } 

header.solid { background: white; color: #0e1622; box-shadow: var(--shadow); } 

.logo { font-weight: 700; font-size: 1.3rem; } nav { display: flex; align-items: center; gap: 25px; } 

nav a { text-decoration: none; color: inherit; font-weight: 500; transition: 0.2s; } 

nav a:hover { color: #5f6c7b; } 

.contact-btn { background: var(--dark-blue); color: white; border: none; padding: 10px 18px; border-radius: 8px; font-weight: 600; cursor: pointer; } 

.hamburger { display: none; font-size: 1.5rem; background: none; border: none; color: inherit; } 

@media (max-width: 850px) { nav { display: none; flex-direction: column; position: absolute; top: 70px; right: 5%; background: white; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow); color: var(--dark-blue); } nav.show { display: flex; } .hamburger { display: block; } }

/* Hero */
.hero { display:flex; align-items:center; justify-content:center; height:80vh;
  background: linear-gradient(to right, var(--dark-blue), #1f4d8f);
  color: white;
  overflow:hidden; text-align:center;
}
.hero-content { position:relative; z-index:1; max-width:800px; animation: fadeInUp 1s ease forwards; }
.hero h1 { font-size:3rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; }
.hero-btn { display:inline-block; padding:.75rem 1.5rem; background:var(--accent-color); color:#fff; text-decoration:none; font-weight:bold; border-radius:5px; transition: background 0.3s ease; }
.hero-btn:hover { background: var(--blue); }

/* Service Grid */
.service-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap:2rem; padding:2rem; }
.service-card { border:1px solid #ddd; padding:1rem; text-align:center; transition: transform 0.3s ease, box-shadow 0.3s ease; opacity:0; transform:translateY(20px);}
.service-card:hover { transform:translateY(-5px); box-shadow:0 8px 15px rgba(0,0,0,0.2); }

/* Book Appointment Button */
.book-btn { display:inline-block; margin-top:10px; padding:.5rem 1rem; background:var(--accent-color); color:#5f6c7b; text-decoration:none; border-radius:4px; transition: background 0.3s ease; }
.book-btn:hover { background: var(--blue); color: #fff;}

/* Booking Form */
.booking { padding:3rem 2rem; text-align:center; background:#f5f5f5; }
.booking form { max-width:500px; margin:0 auto; display:flex; flex-direction:column; gap:1rem; }
.booking input, .booking textarea { padding:.75rem; border:1px solid #ccc; border-radius:5px; }
.booking button { padding:.75rem; background:var(--accent-color); border:none; color:#5f6c7b; font-weight:bold; cursor:pointer; border-radius:5px; }
.booking button:hover { background: var(--blue); color: #fff; }

/* Animations */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

/* FOOTER */ 
footer { 
    background: white; 
    padding: 30px 5%;
    border-top: 1px solid #e5e7eb; 
    margin-top: 60px; 
} 
    
.footer-grid { 
    max-width: 1100px; 
    margin: auto; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: 
    space-between; 
    align-items: center; 
    gap: 20px; 
    
} 

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; } 

.footer-links a { text-decoration: none; color: #3d4652; font-weight: 500; } 

.footer-right { color: #6b7280; font-size: 14px; } 

/* MOBILE ADJUSTMENTS */ 
@media(max-width:768px){ .hero h1{font-size:2rem;} .hero p{font-size:1rem;} }