* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.menu li a:hover,
.menu li a.active {
    color: #f4a261;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 180px;
    border-top: 2px solid #f4a261;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 999;
}

.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 13px;
    color: #ccc;
    border-bottom: 1px solid #2a2a2a;
}

.dropdown-menu li a:hover {
    background-color: #f4a261;
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== SLIDER ===== */
.slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.slide-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.slide-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #f4a261;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #e76f51;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover { background: rgba(244,162,97,0.8); }
.prev { left: 20px; }
.next { right: 20px; }

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active { background: #f4a261; }

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 70px 5%;
    background: #f9f9f9;
    text-align: center;
}

.products-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-icon { font-size: 48px; margin-bottom: 14px; }

.product-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.5;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #f4a261;
    margin-bottom: 16px;
}

.btn-small {
    display: inline-block;
    padding: 9px 24px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    transition: background 0.3s;
}

.btn-small:hover { background: #f4a261; }

/* ===== WHY SECTION ===== */
.why-section {
    padding: 70px 5%;
    text-align: center;
    background: #fff;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 30px 20px;
    border-radius: 12px;
    background: #f9f9f9;
    transition: transform 0.3s;
}

.why-card:hover { transform: translateY(-4px); }

.why-card span { font-size: 40px; display: block; margin-bottom: 12px; }

.why-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.why-card p { font-size: 13px; color: #666; }

/* ===== PAGE HERO (Contact page) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-hero h1 { font-size: 44px; margin-bottom: 14px; }
.page-hero p  { font-size: 18px; opacity: 0.85; }

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 70px 5%;
    background: #f9f9f9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.info-card span { font-size: 36px; display: block; margin-bottom: 12px; }
.info-card h3   { font-size: 16px; margin-bottom: 8px; color: #1a1a1a; }
.info-card p    { font-size: 13px; color: #666; line-height: 1.6; }

/* Contact Form */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f4a261;
}

.form-group textarea { resize: vertical; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #f4a261;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #e76f51;
    transform: scale(1.02);
}

.form-success {
    margin-top: 20px;
    padding: 14px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-section h4 {
    color: #f4a261;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    color: #aaa;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-section ul li a:hover { color: #f4a261; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .slide-content h1 { font-size: 30px; }
    .slide-content p  { font-size: 15px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px 20px; }
    .navbar { flex-direction: column; height: auto; padding: 14px 5%; gap: 10px; }
    .menu { flex-wrap: wrap; justify-content: center; }
}
