/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    padding-bottom: 50px;
    /* Space for fixed bottom bar */
}

a {
    color: #ff0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */

header {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: max-height 0.3s ease-in-out;
}

.nav-links a {
    color: #fff;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
}

/* Top Video */

.top-video {
    width: 100%;
    background: #000;
}

.top-video video {
    width: 100%;
    height: auto;
}

/* Hero Section */

.hero {
    position: relative;
    height: 60vh;
    background: url('https://via.placeholder.com/1200x600?text=Hero+Image') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
}

/* Sections */

section {
    padding: 60px 0;
}

h2 {
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

h1 {
    color: #ff0000;
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

h3 {
    color: #ff0000;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* Profile List */

.profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 20px;
    /* better spacing */
    margin: 40px 0;
}

.profile {
    background: #111;
    /* slightly darker for contrast */
    border: 1px solid #ff0000;
    border-radius: 8px;
    overflow: hidden;
    /* nice rounded corners */
    text-align: center;
    transition: transform 0.3s ease;
}

.profile:hover {
    transform: scale(1.05);
    /* hover zoom effect */
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3);
}

.profile img {
    width: 100%;
    height: 350px;
    /* fixed height for uniformity */
    object-fit: cover;
    display: block;
}

/* Responsive - break to fewer columns */

@media (max-width: 1024px) {
    .profiles {
        grid-template-columns: repeat(3, 1fr);
        /* 3 on tablets */
    }
}

@media (max-width: 768px) {
    .profiles {
        grid-template-columns: repeat(2, 1fr);
        /* 2 on mobile */
    }
}

@media (max-width: 480px) {
    .profiles {
        grid-template-columns: 1fr;
        /* 1 on very small screens */
    }
}

/* Categories & Areas */

.categories,
.areas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.categories span,
.areas span {
    background: #222;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Advantages */

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.advantage {
    background: #111;
    padding: 20px;
    border-radius: 8px;
}

/* FAQs */

.faq {
    margin-top: 40px;
}

.faq details {
    background: #111;
    margin-bottom: 10px;
    border-radius: 6px;
    padding: 10px;
}

summary {
    font-weight: bold;
    cursor: pointer;
}

/* Testimonials */

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* smooth on iOS */
    gap: 20px;
    padding: 0 10px;
}

.carousel-container .testimonial {
    flex: 0 0 100%;
    /* each takes full width → 1 at a time */
    min-width: 100%;
    scroll-snap-align: center;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #ff0000;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Hide scrollbar but keep functionality */

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Mobile - make arrows smaller */

@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* Footer */

.footer-bg {
    background: url('https://via.placeholder.com/1200x400?text=Footer+Image') center/cover no-repeat;
    padding: 40px 0;
    color: #fff;
    position: relative;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    margin: 0 10px;
}

.footer-column h3 {
    color: #ff0000;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li a {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.pinterest {
    display: block;
    color: #ff0000;
    font-size: 24px;
    margin-top: 10px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.footer-title {
    text-align: center;
    font-size: 32px;
    color: #fff;
    background: #000;
    padding: 10px 0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.phone {
    background-color: #00ffff;
    color: #000;
    padding: 10px;
    flex: 1;
    text-align: center;
}

.whatsapp {
    background-color: #00ced1;
    color: #000;
    padding: 10px;
    flex: 1;
    text-align: center;
}

/* Responsive */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ff0000;
        padding: 20px;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    h2 {
        font-size: 28px;
    }
    .profiles {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .footer-columns {
        flex-direction: column;
    }
    .bottom-bar {
        flex-direction: column;
    }
}

/* Rates & Categories Styling */

.rates-section,
.categories-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.rates-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

.rates-table {
    overflow-x: auto;
    margin: 0 auto 40px;
    max-width: 100%;
}

.rates-table table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border: 1px solid #ff0000;
    border-radius: 8px;
    overflow: hidden;
}

.rates-table th,
.rates-table td {
    padding: 15px 12px;
    text-align: center;
    border: 1px solid #333;
    color: #fff;
}

.rates-table th {
    background: #ff0000;
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.rates-table tr:nth-child(even) {
    background: #1a1a1a;
}

.rates-note ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

.rates-note li {
    margin-bottom: 12px;
    color: #ccc;
}

.rates-note li:before {
    content: "✔ ";
    color: #ff0000;
    font-weight: bold;
}

/* Categories Grid */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-card {
    background: #111;
    border: 2px solid #ff0000;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.25);
    border-color: #ff4444;
}

.category-card h3 {
    color: #ff0000;
    margin-bottom: 15px;
    font-size: 22px;
}

.category-card p {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background: #ff0000;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive */

@media (max-width: 768px) {
    .rates-table th,
    .rates-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    .category-card {
        padding: 20px 15px;
    }
}

/* Contact + Map Section */

.contact-map-section {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 equal columns on desktop */
    gap: 30px;
    align-items: stretch;
}

.map-column,
.form-column {
    background: #111;
    border: 1px solid #ff0000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
}

.map-wrapper {
    height: 450px;
    /* Adjust height as needed */
}

.map-wrapper iframe {
    border: none;
}

/* Form Styling */

.contact-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff0000;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.submit-btn {
    background: #ff0000;
    color: #000;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #ff4444;
    transform: translateY(-3px);
}

.form-note {
    padding: 0 30px 30px;
    color: #aaa;
    font-size: 15px;
}

/* Responsive - Stack on mobile */

@media (max-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
    .map-wrapper {
        height: 350px;
        /* Smaller map on mobile */
    }
    .contact-form {
        padding: 25px;
    }
}