:root {
  --primary: #017A6D;     /* Deep Jade */
  --accent: #FFC857;      /* Light Amber */
  --contrast: #A36FE2;    /* Cool Lavender */
  --heading: #222222;     /* Dark Charcoal */
  --text: #F4F4F4;        /* Milky Gray */
  --gradient-start: #FFC857;
  --gradient-end: #017A6D;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  color: var(--heading);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--contrast);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: var(--heading);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px var(--shadow-color);
  color: var(--heading);
}

/* Header */
header {
  padding: 20px 0;
  background-color: rgba(1, 122, 109, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 150px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text);
  font-weight: 600;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../img/GYICHl.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text);
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  color: var(--text);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 3px;
  background: var(--accent);
  bottom: 0;
  left: 15%;
}

/* Tea Info Cards */
.tea-info {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.tea-info:hover {
  transform: translateY(-10px);
}

.tea-info-img {
  height: 200px;
  overflow: hidden;
}

.tea-info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tea-info:hover .tea-info-img img {
  transform: scale(1.1);
}

.tea-info-content {
  padding: 20px;
}

.tea-info-content h3 {
  color: var(--accent);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--text);
}

.service-price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
  margin: 15px 0;
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  max-width: 350px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent);
}

/* Form Styles */
.form-container {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 30px var(--shadow-color);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

/* Fix for select dropdown options color */
.form-select option {
  background-color: var(--primary);
  color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 200, 87, 0.2);
}

.form-checkbox {
  margin-right: 10px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group label {
  font-size: 0.9rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 700;
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-answer {
  padding: 0 20px 15px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: var(--accent);
  font-size: 1.2rem;
}

.map-container {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgba(1, 122, 109, 0.95);
  color: var(--text);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  z-index: 1000;
  max-width: 400px;
}

.cookie-popup p {
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-company-info p {
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 20px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  nav ul li {
    margin: 10px 0;
    text-align: center;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .form-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 0;
  }
  
  .hero-content {
    text-align: center;
  }
} 