:root {
    --primary: #d97706;
    --primary-dark: #b45309;
    --text: #1f2933;
    --text-light: #4b5563;
    --bg: #f9fafb;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(31, 41, 51, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.d-flex {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand {
    display: flex;
    flex-direction: column;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}
img.logo-image {
    width: 240px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-size: 10px;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.contact-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.contact-link {
    color: var(--primary-dark);
    font-weight: 500;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary);
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #22c55e;
    color: var(--white);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.6));
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    max-width: 720px;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.25);
}

.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin: 0 auto 2.5rem;
    max-width: 640px;
    font-size: 1rem;
        background-color: #3adbdbc4;
    border-radius: 10px;
    padding: 6px;
}

.product-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.highlights {
    background-color: var(--white);
    background-image: var(--highlights-bg, url('media/highlights-bg.jpg'));
    background-size: cover;
    background-position: center;
}

.rate-card {
    background-color: var(--white);
}

.rate-card-wrapper {
    margin: 0 auto;
    max-width: 100%;
    overflow-x: auto;
    background: rgba(249, 250, 251, 0.85);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.rate-card-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.rate-card-table th,
.rate-card-table td {
    border: 1px solid rgba(31, 41, 51, 0.12);
    padding: 0.75rem 0.85rem;
    text-align: center;
    font-size: 0.95rem;
}

.rate-card-table thead th {
    background-color: #d1fae5;
    color: var(--text);
    font-weight: 600;
}

.rate-card-table thead tr:first-child th {
    background-color: #fde68a;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rate-card-table tbody th {
    text-align: left;
    background-color: rgba(209, 250, 229, 0.4);
    font-weight: 600;
}

.rate-card-total td {
    background-color: rgba(156, 163, 175, 0.15);
    font-weight: 600;
}

.rate-card-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.highlights .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.highlight {
    background-color: var(--bg);
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(31, 41, 51, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.contact {
    background-color: #0f172a;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    background-image: url('media/contact-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(217, 119, 6, 0.3), transparent 55%);
}

.contact .container {
    position: relative;
}

.contact-form {
    margin: 0 auto;
    max-width: 520px;
    display: grid;
    gap: 1.25rem;
        background-color: #000000c4;
    border-radius: 10px;
    padding: 12px;
}

.form-status {
    min-height: 1.25rem;
    font-size: 0.95rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(217, 119, 6, 0.6);
}

.site-footer {
    background-color: #030712;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.footer-content a {
    color: rgba(217, 119, 6, 0.9);
    text-decoration: none;
}

.footer-content a:hover {
    color: rgba(217, 119, 6, 1);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .contact-links {
        justify-content: flex-start;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 2.5rem 0;
    }
}
