/* Hamburger base styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 2002;
  padding: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #0074d9;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  nav {
    position: relative;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .logo-container {
    margin: 0 auto 10px auto;
    text-align: center;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0;
    margin: 0;
    z-index: 1000;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links li {
    display: inline-block;
    width: auto;
    margin: 0 0.5rem;
    padding: 0;
    flex: 0 0 auto;
  }
  .nav-links li a {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 30px;
    border: none;
    background: none;
    font-size: 1em;
    color: var(--dark);
    text-align: center;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-links li a:hover, .nav-links li a.active {
    background: var(--primary);
    color: #fff;
  }
  .dropdown-content {
    display: block !important;
    position: static;
    box-shadow: none;
    background: none;
    padding-left: 0;
    text-align: center;
    min-width: 0;
    border-radius: 0;
  }
  .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
    /* Disable hover/focus dropdown on mobile */
    display: block !important;
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    width: auto;
    top: unset;
    right: unset;
    z-index: auto;
  }
}
/* ===== Global Styles ===== */
:root {
    --primary: #0066cc;       /* Eastman Blue */
    --secondary: #ff6600;     /* Accent Orange */
    --dark: #222;
    --light: #f8f9fa;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Header & Navigation ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 60px; /* Adjust based on your logo */
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ===== Hero Section ===== */

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: #0055aa;
    transform: translateY(-3px);
}

/* ===== Products Section ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray);
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2rem;
}

.product-card {
    flex: 0 1 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 340px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-info .btn {
    margin-top: auto;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
/* Removed broken/duplicated @media (max-width: 768px) block. Mobile nav-links sizing handled in (max-width: 900px) above. */
/* Additional CSS for the video background */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    text-align: center;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 800px;
    width: 100%;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* Responsive hero content */
@media (max-width: 768px) {
    .hero-content {
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}
/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    outline: none;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
/* Additional styles for WhatsApp integration */
.contact-methods {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-icon {
    margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
    }
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #2a6496;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* For RTL languages */
.dropdown-content {
    text-align: right;
    right: auto;
    left: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        width: 100%;
    }
}
  .filter-buttons {
    text-align: center;
    margin: 20px 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .filter-btn {
    background: #f1f1f1;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 110px;
  }

  .filter-btn:hover {
    background: #ddd;
  }

  .filter-btn.active {
    background: #2a6496;
    color: white;
  }

@media (max-width: 600px) {
  .filter-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .filter-btn {
    width: 90%;
    min-width: unset;
    font-size: 1.1rem;
  }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: fadeIn 0.5s ease;
}