/* ===== FONT & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0a1e40;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.header h1 {
    font-size: 1.4rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00bfff;
}

/* ===== HERO ===== */
.hero {
    background-image: url('image/hero3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hero-content small {
    display: block;
    margin-bottom: 20px;
}

.btn {
    background: #00bfff;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #008fcc;
}

/* ==== ABOUT =====*/
.about p {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.about-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* ===== WHY CHOOSE US ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ===== SERVICES ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.service-card h3 {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
}

/* ===== PORTFOLIO ===== */
.portfolio-locations h3 {
    margin-top: 30px;
    color: #0a1e40;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* ===== FAQ ===== */
.accordion-item {
    margin-bottom: 10px;
}

.accordion-item button {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: #0a1e40;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.accordion-item .content {
    display: none;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 0 0 5px 5px;
}

/* ===== OPEN HOURS ===== */
.hours table {
    width: 100%;
    border-collapse: collapse;
}

.hours th, .hours td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.hours th {
    background: #0a1e40;
    color: white;
}

/* ===== CONTACT US ===== */
.contact-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    vertical-align: middle;
}

.contact-table td a {
    color: #0a1e40;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-table td a:hover {
    color: #00bfff;
}

.contact-table .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-table td {
        display: block;
        width: 100%;
        text-align: center;
    }

    .contact-table tr {
        display: block;
        margin-bottom: 15px;
    }

    .contact-table .icon {
        margin-bottom: 8px;
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  border-radius: 50%;
}

.whatsapp img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp img:hover {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
footer {
    background: #0a1e40;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        background: #0a1e40;
        position: absolute;
        top: 60px;
        right: 0;
        display: none;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul.show {
        display: flex;
    }
}