@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a2540;
  --teal: #1a8f70;
  --teal-light: #e1f5ee;
  --teal-mid: #0f6e56;
  --warm: #f7f4f0;
  --accent: #f0a500;
  --text: #1a1a1a;
  --muted: #5a6272;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;

}

/* SECTIONS */
.section { display: none; }
.section.active { display: block; }

/* HOME */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--teal-mid));
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 2.5rem;
}
.hero-inner { max-width: 700px; }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--white);
}
.hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

/* STRIP */
.tagline-strip {
  background: var(--teal-light);
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* VALUES */
.values-section {
  padding: 4rem 2.5rem;
  background: var(--warm);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.val-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
}

/* ABOUT */
.about-hero {
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-vision {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 16px;
}

/* SERVICES */
.services-hero {
  padding: 4rem 2.5rem;
  background: var(--nav9y);
  color: var(--white);
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.svc-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}
.svc-header {
  background: var(--teal-light);
  padding: 1rem;
}
.svc-body {
  padding: 1rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--teal-mid), var(--navy));
  padding: 4rem;
  text-align: center;
  color: var(--white);
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 2rem;
  color: white;
  text-align: center;
}
/* ===== CONTACT PAGE ===== */

.header {
    background: #111;
    color: #fff;
    padding: 15px 30px;
}

/* NAVBAR */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* LOGO */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box img {
    width: 55px;
}

.logo-box h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #28a745;
}

.nav-menu a.active {
    border-bottom: 2px solid #28a745;
}

/* CONTACT SECTION */
.contact-section {
    padding: 50px 20px;
    background: #f4f4f4;
}

.container {
    display: flex;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
}

/* FORM */
.contact-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-box button {
    background: #28a745;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-box button:hover {
    background: #218838;
}

/* BOOK BUTTON */
.book-btn {
    background: #28a745;
    padding: 8px 15px;
    color: white;
    border-radius: 5px;
}

/* FOOTER */
.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}
.contact-box {
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-5px);
}