/* Color Theme */
:root {
  --primary-light: #BACEC7;
  --secondary-light: #A0BBB1;
  --accent-1: #85A89B;
  --accent-2: #6A9585;
  --accent-3: #577A6D;
  --dark: #445F55;
  --white: #FFFFFF;
  --text-dark: #1A2623;
  --text-light: #F5F7F6;
  --border: #E8EEEB;
  --bg-light: #FAFBFA;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* Header & Navigation */
header {
  background: var(--white);
  color: var(--dark);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width:15%;
}
.logo{
  width:65%;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #445F55 0%, #5A8A7A 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: left;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.hero-content {
  max-width: 700px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero-subheadline {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: var(--accent-2);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(68, 95, 85, 0.25);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--accent-1);
  color: var(--white);
  border-color: var(--accent-1);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 5.5rem 2rem;
}

section.alt-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.page-section-title {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 50px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  border-radius: 2px;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}
.offer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3rem;
}

.grid-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.offer-grid-item{
  background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #bfbfbf;
    transition: all 0.35s ease;
}
.grid-item:hover {
  border-color: var(--accent-2);
  box-shadow: 0 12px 35px rgba(68, 95, 85, 0.12);
  transform: translateY(-8px);
}

.grid-item.no-border {
  border: none;
  background: transparent;
}

.grid-item h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.grid-item ul {
  list-style: none;
  padding: 0;
}

.grid-item li {
  padding: 0.65rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.8;
  color: var(--text-dark);
}

.grid-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Icon Styling */
.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: var(--accent-2);
}

.icon-small {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(106, 149, 133, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group.form-checkbox {
  display: flex;
  align-items: center;
}

.form-group.form-checkbox input {
  width: auto;
  margin-right: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

thead {
  background-color: var(--dark);
  color: var(--white);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

tbody tr:hover {
  background-color: #F9FAFA;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: var(--primary-light);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(186, 206, 199, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.75;
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Message Display */
.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid;
}

.alert-success {
  background-color: #D4EDDA;
  border-color: var(--accent-2);
  color: #155724;
}

.alert-error {
  background-color: #F8D7DA;
  border-color: #DC3545;
  color: #721C24;
}

.alert-info {
  background-color: #D1ECF1;
  border-color: #17A2B8;
  color: #0C5460;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero {
    padding: 2.5rem 2rem;
    min-height: 320px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  nav ul {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 1rem;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .logo {
    width: 75%;
        text-align: center;
  }

  .hero {
    min-height: 300px;
    padding: 2rem 1.5rem;
  }

  .hero-content > div {
    flex-direction: column !important;
  }

  .hero-content > div a {
    width: 100%;
  }

  .icon {
    width: 40px;
    height: 40px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.text-muted {
  opacity: 0.7;
}

.accent-color {
  color: var(--accent-2);
}

.dark-bg {
  background-color: var(--dark);
  color: var(--white);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 2rem;
  background-color: #F9FAFA;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-item {
  color: var(--accent-3);
}

.breadcrumb-item a {
  color: var(--accent-2);
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Loading & Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Product layout responsive */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 400px"] {
    grid-template-columns: 1fr !important;
  }
  .logo img{
    width:50%;
  }
}
