/* ======= TEA SCHOOL MODERN THEME ======= */
/* TEA Color Palette: Teal, Emerald, Aqua */
/* Professional and visually appealing design for basic schools */

:root {
  /* TEA Primary Colors */
  --tea-primary: #008080;
  --tea-secondary: #20B2AA;
  --tea-accent: #00CED1;
  --tea-light: #E0F2F1;
  --tea-dark: #004D40;
  --tea-gold: #FFD700;
  
  /* Extended TEA Palette */
  --tea-teal: #008080;
  --tea-emerald: #50C878;
  --tea-aqua: #00FFFF;
  --tea-cyan: #40E0D0;
  --tea-mint: #98FF98;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #F1F3F4;
  --medium-gray: #9AA0A6;
  --dark-gray: #202124;
  --black: #000000;
  
  /* Gradients */
  --tea-gradient: linear-gradient(135deg, var(--tea-primary) 0%, var(--tea-secondary) 50%, var(--tea-accent) 100%);
  --tea-gradient-light: linear-gradient(135deg, var(--tea-light) 0%, var(--white) 100%);
  --tea-gradient-dark: linear-gradient(135deg, var(--tea-dark) 0%, var(--tea-primary) 100%);
  --tea-gradient-gold: linear-gradient(135deg, var(--tea-gold) 0%, #FFA500 100%);
  
  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(0, 128, 128, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 128, 128, 0.15);
  --shadow-strong: 0 8px 32px rgba(0, 128, 128, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 206, 209, 0.3);
  
  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-accent: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======= GLOBAL STYLES ======= */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--dark-gray);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  overflow-x: hidden;
  font-size: 16px;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--tea-dark);
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--tea-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--tea-gradient);
  border-radius: 2px;
}

h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--medium-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ======= MODERN NAVBAR ======= */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-normal);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--tea-primary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tea-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.navbar-brand:hover::after {
  transform: scaleX(1);
}

.main-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.main-menu li {
  position: relative;
}

.main-menu li a {
  color: var(--dark-gray) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: var(--space-sm) var(--space-md) !important;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.main-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tea-primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.main-menu li a:hover {
  color: var(--tea-primary) !important;
  background: rgba(0, 128, 128, 0.05);
}

.main-menu li a:hover::before {
  width: 80%;
}

/* ======= HERO SECTION ======= */
.slider-area {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.single-slide {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.85) 0%, rgba(32, 178, 170, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption {
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: var(--space-2xl);
  position: relative;
}

.caption h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
  color: var(--white);
}

.caption h2 span {
  color: var(--tea-gold);
  position: relative;
  display: inline-block;
}

.caption h2 span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tea-gold);
  border-radius: 2px;
  animation: expandWidth 1.5s ease-out 0.5s both;
}

.caption p {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-2xl);
  animation: slideInUp 1s ease-out 0.3s both;
  opacity: 0;
  font-weight: 300;
  line-height: 1.6;
}

/* ======= SECTION STYLES ======= */
.area-padding {
  padding: var(--space-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--tea-dark);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--tea-gradient);
  border-radius: 3px;
}

.section-title .star {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--tea-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  margin: 0 8px;
  animation: twinkle 3s infinite;
}

.section-title .star:nth-child(2) {
  animation-delay: 0.8s;
}

.section-title .star:nth-child(3) {
  animation-delay: 1.6s;
}

/* ======= MODERN CARDS ======= */
.feature-box {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(0, 128, 128, 0.1);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--tea-gradient);
}

.feature-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--tea-gradient);
  opacity: 0.05;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.feature-box:hover::after {
  transform: scale(1.5);
}

.feature-box i {
  font-size: 3.5rem;
  color: var(--tea-primary);
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
}

.feature-box:hover i {
  transform: scale(1.2) rotate(5deg);
  color: var(--tea-accent);
}

.feature-box h3 {
  color: var(--tea-dark);
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.feature-box p {
  color: var(--medium-gray);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

/* ======= MODERN FORMS ======= */
.form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
  font-family: var(--font-primary);
}

.form-control:focus {
  border-color: var(--tea-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
  outline: none;
}

.btn {
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
  font-size: 0.95rem;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-normal);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--tea-gradient);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-danger {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, var(--tea-emerald) 0%, var(--tea-mint) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(80, 200, 120, 0.3);
}

/* ======= ADMISSION FORM STYLING ======= */
.register {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  padding: var(--space-3xl);
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 128, 128, 0.1);
}

.register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--tea-gradient);
}

.register-left {
  background: var(--tea-gradient);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.register-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.register-left img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid var(--white);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 2;
}

.register-left h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
  font-size: 2rem;
}

.register-left p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

.register-right {
  padding: var(--space-2xl);
}

.register-heading {
  color: var(--tea-primary);
  font-size: 2.2rem;
  margin-bottom: var(--space-2xl);
  text-align: center;
  position: relative;
  font-weight: 700;
}

.register-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--tea-gradient);
  border-radius: 2px;
}

/* ======= CONTACT SECTION ======= */
.our-contact-us-area {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  border: 1px solid rgba(0, 128, 128, 0.1);
}

.information-box {
  padding: var(--space-2xl);
  background: var(--tea-gradient);
  color: var(--white);
  border-radius: var(--radius-xl);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.information-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
  opacity: 0.3;
}

.company-info {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-icon i {
  font-size: 1.8rem;
  color: var(--tea-gold);
}

.info-text p {
  color: var(--white);
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
}

.send-message {
  padding: var(--space-2xl);
}

.message-field input,
.message-field textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: var(--transition-normal);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.message-field input:focus,
.message-field textarea:focus {
  border-color: var(--tea-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
  outline: none;
}

.send-btn {
  background: var(--tea-gradient);
  color: var(--white);
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-soft);
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ======= BREADCRUMB STYLING ======= */
.bradcam-area {
  background: var(--tea-gradient);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.bradcam-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="breadcrumb-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23breadcrumb-pattern)"/></svg>');
  opacity: 0.4;
}

.bradcam-title h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.bradcam-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 2;
}

.bradcam-item {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-normal);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.bradcam-item:hover {
  color: var(--tea-gold);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.bradcam-item.active {
  color: var(--tea-gold);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
}

.brd-separetor {
  color: var(--tea-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ======= ANIMATIONS ======= */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3) rotate(180deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 768px) {
  .caption h2 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .register {
    padding: var(--space-lg);
  }
  
  .register-left,
  .register-right {
    padding: var(--space-lg);
  }
  
  .main-menu {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .feature-box {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .caption h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .section-title h2 {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
  }
  
  .register {
    padding: var(--space-md);
  }
  
  .feature-box {
    padding: var(--space-md);
  }
  
  .area-padding {
    padding: var(--space-2xl) 0;
  }
}

/* ======= UTILITY CLASSES ======= */
.text-tea-primary { color: var(--tea-primary) !important; }
.text-tea-secondary { color: var(--tea-secondary) !important; }
.text-tea-accent { color: var(--tea-accent) !important; }
.text-tea-gold { color: var(--tea-gold) !important; }

.bg-tea-primary { background-color: var(--tea-primary) !important; }
.bg-tea-secondary { background-color: var(--tea-secondary) !important; }
.bg-tea-accent { background-color: var(--tea-accent) !important; }
.bg-tea-light { background-color: var(--tea-light) !important; }

.border-tea-primary { border-color: var(--tea-primary) !important; }
.border-tea-secondary { border-color: var(--tea-secondary) !important; }
.border-tea-accent { border-color: var(--tea-accent) !important; }

.shadow-tea { box-shadow: var(--shadow-glow) !important; }
.rounded-tea { border-radius: var(--radius-xl) !important; }

/* ======= LOADING ANIMATIONS ======= */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 206, 209, 0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ======= ENHANCED ELEMENTS ======= */
.about-content {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 128, 128, 0.1);
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-lg);
  border-left: 5px solid var(--tea-primary);
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--tea-gradient);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.mission-icon,
.vision-icon {
  width: 60px;
  height: 60px;
  background: var(--tea-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.mission-icon i,
.vision-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.mission-card h3,
.vision-card h3 {
  color: var(--tea-primary);
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}

.mission-card p,
.vision-card p {
  color: var(--medium-gray);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-normal);
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

/* ======= WHY CHOOSE US SECTION ======= */
.why-choose-area {
  background: var(--tea-light);
  position: relative;
}

.why-choose-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="why-choose-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23008080" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23why-choose-pattern)"/></svg>');
  opacity: 0.3;
}

.why-choose-area .container {
  position: relative;
  z-index: 2;
}

/* ======= CONTACT SECTION ======= */
.contact-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(0, 128, 128, 0.1);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tea-gradient);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--tea-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--white);
}

.contact-card h3 {
  color: var(--tea-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.4rem;
}

.contact-card p {
  color: var(--medium-gray);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.contact-form-card,
.map-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 128, 128, 0.1);
  height: 100%;
}

.contact-form-card h3,
.map-card h3 {
  color: var(--tea-primary);
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
  font-family: var(--font-primary);
}

.contact-form .form-control:focus {
  border-color: var(--tea-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.map-container {
  height: 300px;
  background: var(--tea-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--tea-primary);
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: var(--tea-primary);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.map-placeholder p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin: 0;
}

/* ======= FEATURE LIST STYLING ======= */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.feature-list li {
  padding: var(--space-sm) 0;
  color: var(--medium-gray);
  font-size: 1.1rem;
  position: relative;
  padding-left: var(--space-lg);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tea-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ======= RESPONSIVE ADJUSTMENTS ======= */
@media (max-width: 768px) {
  .mission-card,
  .vision-card {
    padding: var(--space-lg);
  }
  
  .contact-card {
    padding: var(--space-lg);
  }
  
  .contact-form-card,
  .map-card {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  
  .mission-icon,
  .vision-icon {
    width: 50px;
    height: 50px;
  }
  
  .mission-icon i,
  .vision-icon i {
    font-size: 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: var(--space-lg);
  }
  
  .mission-card,
  .vision-card {
    padding: var(--space-md);
  }
  
  .contact-card {
    padding: var(--space-md);
  }
  
  .contact-form-card,
  .map-card {
    padding: var(--space-md);
  }
} 