body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}

.navbar {
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.5em;
    font-style: italic;
    color: #ff69b4;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff69b4;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 4px;
    width: 30px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

header {
    position: relative;
    margin-top: 70px;
    text-align: center;
}

.banner-video {
    width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
}

h1 {
    color: #fff;
    text-align: center;
    margin-top: 20px; /* Space after video */
}

h2 {
    color: #fff;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.services-table th, .services-table td {
    border: 1px solid #333;
    padding: 8px;
    text-align: center;
}

.services-table th {
    background-color: #222;
}

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.profile-card {
    background: #000;
    border: none;
    border-radius: 8px;
    text-align: center;
    padding: 0;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.watermark {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d32f2f;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
}

.profile-card h3 {
    color: #fff;
    margin: 10px 0 5px;
}

.stars {
    color: #ffd700;
    margin: 0;
    font-size: 1.2em;
}

.contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
	 justify-content: center;
    gap: 10px;
    background-color: #000; /* Match theme */
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

.btn {
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.call { background-color: #4caf50; }
.whatsapp { background-color: #25d366; }


footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for fixed buttons */
    border-top: 1px solid #333;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .profiles {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: row; /* Keep row if space allows, or column if needed */
        gap: 5px;
        padding: 5px;
    }

    .btn {
        padding: 8px 15px; /* Smaller on mobile */
    }

    h1 {
        font-size: 1.5em;
    }
}
/* ... previous styles ... */

.models-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.models-table th {
    background-color: #d32f2f; /* Red header */
    color: white;
    padding: 10px;
    text-align: left;
}

.models-table td {
    background-color: #000;
    padding: 10px;
    border-bottom: 1px solid #333; /* Subtle row separator */
    text-align: left;
}
/* ... previous styles ... */

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.faq-item h3 {
    color: #ff69b4;
    cursor: pointer; /* For potential accordion */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.testimonial-card {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card h4 {
    margin: 10px 0;
    color: #fff;
}

.testimonial-card .stars {
    color: #ffd700;
}
/* ... previous styles ... */

footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 10px 70px; /* Space for buttons */
    border-top: 1px solid #333;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.locations-grid a {
    color: #ffeb3b; /* Goldish */
    text-decoration: none;
    font-weight: bold;
    background-color: #111; /* Darker bg for each cell */
    padding: 10px;
    border-radius: 4px;
    display: block;
}

.locations-grid a:hover {
    background-color: #222;
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}