/* =========================================================
   GLOBAL STYLES
   ========================================================= */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.1rem; /* ~18px */
    line-height: 1.7;  /* improves readability */
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}
a:hover {
    opacity: 0.8;
}

/* Generic container */
.container-section {
    max-width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 2rem 3rem;
    text-align: center;
    /* margin-bottom: 2rem; */
}
.text-heading { color: #7C3AED; }
.list-left { text-align: left; margin-left: 2rem; }

/* Buttons */
button {
    background-color: #0D9488;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
button:hover { background-color: #0B766C; }


/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

header {
    background-color: #0D9488;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
}
.logo-link span { margin-left: 0.5rem; }

/* Navigation menu */
header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
header nav a {
    color: white;
    display: flex;
    align-items: center;
    font-weight: 600;
}
header nav a i { margin-right: 0.5rem; }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropbtn {
    color: white;
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}
.arrow {
    margin-left: 5px;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #4B5563;
    min-width: 200px;
    z-index: 1000;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.dropdown-content a {
    color: white;
    padding: 0.5rem 1rem;
    display: block;
    transition: background 0.2s ease;
}
.dropdown-content a:hover { background-color: #0D9488; }
.dropdown:hover .dropdown-content { display: flex; }
.dropdown:hover .arrow { transform: rotate(180deg); }


/* =========================================================
   PAGE WRAPPER / CONTENT BOXES
   ========================================================= */

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    margin: 0;
    max-width: none;
}
.content-box {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    width: 100%;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    padding: 60px 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}
.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: none;
    margin: 0;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.service-card .icon { font-size: 48px; margin-bottom: 20px; }
.service-card h3 {
    color: #7C3AED;
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.service-card p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.6;
}
.service-link { display: block; }


/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.service-detail {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 0;
    /* box-shadow: 0 6px 18px rgba(0,0,0,0.1); */
}
.service-hero {
    text-align: center;
    margin-bottom: 40px;
}
.service-hero .icon { font-size: 60px; margin-bottom: 20px; }
.service-hero h1 {
    font-size: 2.2rem;
    color: #7C3AED;
    margin-bottom: 10px;
}
.service-hero .tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}
.service-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4B5563;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Hero with overlay image */
.service-hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}
.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-hero-image .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    text-align: center;
}
.service-hero-image .hero-overlay h1 { font-size: 2rem; margin: 0; }
.service-hero-image .hero-overlay .tagline {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Split hero layout */
.service-hero-split {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.service-hero-split .hero-text {
    flex: 1; min-width: 300px;
}
.service-hero-split .hero-text h1 {
    color: #7C3AED;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.service-hero-split .hero-text .tagline {
    color: #4B5563;
    font-size: 1.2rem;
    font-style: italic;
}
.service-hero-split .hero-image {
    flex: 1; min-width: 300px;
}
.service-hero-split .hero-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}


/* =========================================================
   HERO SPLIT (INDEX PAGE)
   ========================================================= */

.hero-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 2rem;
}
.hero-split .hero-text {
    flex: 1; min-width: 280px;
}
.hero-split .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7C3AED;
}
.hero-split .hero-text .tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: #4B5563;
}
.hero-split .hero-image {
    flex: 1; min-width: 280px; text-align: center;
}
.hero-split .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}


/* =========================================================
   OTHER PAGE ELEMENTS
   ========================================================= */

.intro-image-section img.intro-image {
    max-width: 80%;
    height: auto;
    max-height: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.about-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Map Styling */
.map-container { margin-top: 20px; height: 350px; }
.map-container iframe {
    width: 100%; height: 100%; border: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

/* Top lighter teal block */
.footer-top {
    width: 100%;
    background: #14B8A6;
    color: #fff;
}
.footer-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}
.footer-top-left p { margin: 0 0 6px; line-height: 1.6; }
.footer-top-right .footer-nav {
    list-style: none; margin: 0; padding: 0;
}
.footer-top-right .footer-nav li + li { margin-top: 8px; }
.footer-top-right .footer-nav a {
    color: #fff;
    font-weight: 600;
    opacity: 0.95;
}
.footer-top-right .footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Main footer */
footer {
    background-color: #0D9488;
    color: white;
    padding: 1.5rem 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left p { margin: 0; font-weight: 500; }
.footer-right a {
    color: white;
    margin-left: 1rem;
    font-size: 1.2rem;
}

/* service image, inside service pages, in beetween content */
.service-image {
  text-align: center;
  margin: 30px 0;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;  /* smooth rounded edges */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
}
