/* ============================
   GLOBAL STYLES
============================ */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: white;
}

.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

h2, h3 {
    margin: 0;
}

/* ============================
   HEADER + NAV
============================ */
.header-logo {
    text-align: center;
    padding: 30px 20px;
    background: #111;
    border-bottom: 3px solid #FFCC00;
}

.logo-img {
    max-width: 280px;
    height: auto;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    background: #0d0d0d;
    border-bottom: 2px solid #FFCC00;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #FFCC00;
}

/* ============================
   SECTION HEADINGS
============================ */
.services-title {
    color: #FFCC00;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

/* ============================
   SERVICE / PRICING / CONTACT CARDS
============================ */
.service-card,
.pricing-card,
.contact-card {
    background: #111;
    border: 2px solid #FFCC00;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.pricing-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px #FFCC00;
}

.service-btn {
    background: #FFCC00;
    color: black;
    border: none;
    padding: 10px 18px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.service-btn:hover {
    background: white;
    color: black;
}

.service-card p,
.pricing-card p,
.contact-card p,
.price-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: white;
}

.price {
    color: #FFCC00;
    font-weight: bold;
}

/* ============================
   GRID LAYOUTS
============================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    text-align: center;
    padding: 40px 20px;
}

.contact-card {
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    color: #FFCC00;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-top: 6px;
    padding: 10px;
    border: 2px solid #FFCC00;
    border-radius: 5px;
    background: black;
    color: white;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
}

.contact-form button {
    margin-top: 10px;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    border: 2px solid #FFCC00;
    background: #FFCC00;
    color: black;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-form button:hover {
    background: white;
    color: black;
}

/* Quick Contact Buttons BELOW Form */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    border: 2px solid #FFCC00;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-btn.whatsapp {
    background: #FFCC00;
    color: black;
}

.contact-btn.whatsapp:hover {
    background: black;
    color: #FFCC00;
}

.contact-btn.email {
    background: #111;
    color: #FFCC00;
}

.contact-btn.email:hover {
    background: #FFCC00;
    color: black;
}

/* ============================
   CAROUSEL / SCROLL ITEMS
============================ */
.horizontal-scroll {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.scroll-track {
    display: flex;
    gap: 30px;
    animation: scroll-horizontal 25s linear infinite;
}

.scroll-item {
    flex: 0 0 auto;
    min-width: 250px;
    background: #111;
    border: 2px solid #FFCC00;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px #FFCC00;
}

.scroll-item h3 {
    color: #FFCC00;
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
}

.service-carousel-icon {
    font-size: 3rem;
    color: #FFCC00;
    margin-bottom: 20px;
}

/* Animate carousel: full width of 6 items */
@keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive carousel */
@media (max-width: 900px) {
    .scroll-item {
        min-width: 200px;
        padding: 35px 15px;
    }
}

@media (max-width: 600px) {
    .scroll-item {
        min-width: 160px;
        padding: 30px 10px;
    }
}

/* ============================
   FOOTER
============================ */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 2px solid #FFCC00;
}

/* ============================
   PREVENT HORIZONTAL SCROLL
============================ */
* {
    box-sizing: border-box;
    overflow-x: hidden;
}

.scroll-track {
    display: flex;
    gap: 30px;
    width: max-content; /* track width = sum of all items */
    animation: scroll-horizontal 25s linear infinite;
}

@keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* scroll first 6 items */
}

.scroll-item {
    flex: 0 0 auto;
    min-width: 250px; /* or adjust for your design */
}