/* =============================================
   COMMON STYLES FOR ALL PAGES
   Modern Indian Style Design
   ============================================= */

/* Modern Indian Color Palette */
:root {
  /* Primary Colors - Sophisticated Indian Theme */
  --primary-teal: #00695C;
  --primary-orange: #FF6F00;
  --primary-purple: #6A1B9A;
  --primary-pink: #E91E63;
  --primary-green: #1B5E20;
  --secondary-blue: #1565C0;
  
  /* Secondary Colors */
  --accent-gold: #FFC107;
  --accent-indigo: #3F51B5;
  --accent-red: #D32F2F;
  --accent-green: #388E3C;
  
  /* Neutral Colors */
  --dark-grey: #263238;
  --medium-grey: #607D8B;
  --light-grey: #ECEFF1;
  --warm-white: #FAFAFA;
  --pure-white: #FFFFFF;
  --background-white: #FFFFFF;
  
  /* Text Colors */
  --text-primary: #212121;
  --text-secondary: #757575;
  --text-light: #9E9E9E;
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.16);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.6;
}

/* Remove underlines on hover for all links */
a:hover {
  text-decoration: none !important;
}

/* Top Bar - Modern Minimal Style */
.top-bar {
  background: var(--primary-teal);
  padding: 12px 0;
  color: var(--pure-white);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-info li {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.top-info li i {
  margin-right: 10px;
  font-size: 1rem;
  color: var(--accent-gold);
}

.top-info li a {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.top-info li a:hover {
  color: var(--accent-gold);
}

.top-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}

.top-social li {
  margin-left: 15px;
}

.top-social li a {
  color: var(--pure-white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.top-social li a:hover {
  color: var(--accent-gold);
}

.btn-top {
  background: var(--accent-gold);
  color: var(--dark-grey);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-left: 20px;
  border: 1px solid var(--accent-gold);
}

.btn-top:hover {
  background: var(--primary-orange);
  color: var(--pure-white);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* Header - Modern Clean Style */
.header-modern {
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  flex: 0 0 auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.logo-icon i {
  font-size: 1.8rem;
  color: var(--pure-white);
}

.logo-text h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Navigation */
.nav-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-primary);
  border: none;
  padding: 8px;
  font-size: 1.5rem;
  cursor: pointer;
}

.main-nav {
  display: block;
  width: 100%;
}

.navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
  flex-direction: row;
}

@media (min-width: 769px) {
  .main-nav {
    display: block !important;
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    margin: 0;
  }
  
  .navbar-nav {
    flex-direction: row;
  }
  
  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
  }
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  font-weight: 500;
  padding: 10px 16px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  display: block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
}

/* CTA Button */
.btn-primary {
  background: var(--primary-teal);
  color: var(--pure-white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-orange);
  box-shadow: var(--shadow-md);
  color: var(--pure-white);
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 0.125rem;
  content: "";
  border-top: 0.3rem solid;
  border-right: 0.3rem solid transparent;
  border-bottom: 0;
  border-left: 0.3rem solid transparent;
  transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after,
.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

.dropdown-toggle:hover {
  color: var(--primary-teal) !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 220px;
  padding: 8px 0;
  margin: 2px 0 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: left;
  list-style: none;
  background-color: var(--pure-white);
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 20px;
  clear: both;
  font-weight: 500;
  color: var(--text-primary);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary-teal);
  background-color: rgba(0, 105, 92, 0.05);
}

.dropdown-item.active {
  color: var(--primary-teal);
  background-color: rgba(0, 105, 92, 0.1);
  font-weight: 600;
}

.dropdown-item i {
  margin-right: 8px;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Enhanced dropdown hover effects */

/* Show dropdown on hover for desktop */
@media (min-width: 769px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-item.dropdown:hover .dropdown-toggle {
    color: var(--primary-teal) !important;
  }
  
  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Mobile dropdown behavior */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    display: none;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: rgba(0, 105, 92, 0.05);
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  .dropdown-item {
    padding: 10px 30px;
    border-left: 3px solid transparent;
  }
  
  .dropdown-item:hover,
  .dropdown-item.active {
    border-left-color: var(--primary-teal);
    background-color: rgba(0, 105, 92, 0.1);
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--light-grey);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-teal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-orange));
  margin: 1rem auto;
  border-radius: 2px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-orange), var(--primary-purple));
  border-radius: 2px;
  z-index: -1;
  opacity: 0.2;
}

/* Smaller divider for tag cards */
.tag-card .section-divider {
  width: 40px;
  height: 2px;
  margin: 0.75rem auto 1rem auto;
}

.tag-card .section-divider::before {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 1px;
  opacity: 0.15;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Cards - Modern Style */
.card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-content {
  padding: 30px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-overlay .card-icon {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.9);
}

.card-overlay .card-icon i {
  color: var(--primary-teal);
}

.card:hover .card-icon {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.card:hover .card-overlay .card-icon {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--pure-white);
  font-family: 'FontAwesome', 'LineIcons';
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Fallback for missing icons */
.card-icon i:empty::before {
  content: "⭐";
  font-family: system-ui, -apple-system, sans-serif;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  color: var(--primary-teal);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 12px;
  color: var(--primary-orange);
}

/* Feature List - Modern Style */
.feature-list-item {
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--pure-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.feature-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.feature-list-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: rgba(0, 105, 92, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.feature-list-icon i {
  font-size: 1.3rem;
  color: var(--primary-teal);
}

.feature-list-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Modern Related Tags Section Styles */
.related-tags-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
}

.related-tags-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  background-size: 100px 100px, 150px 150px;
}

.related-tags {
  position: relative;
  z-index: 2;
}

.tag-card {
  background: #ffffff;
  padding: 24px 20px;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tag-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tag-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #3b82f6;
  box-shadow: 
    0 10px 15px -3px rgba(59, 130, 246, 0.1),
    0 4px 6px -2px rgba(59, 130, 246, 0.05);
}

.tag-card.featured:hover {
  transform: translateY(-16px);
  box-shadow: 
    0 25px 50px -12px rgba(59, 130, 246, 0.25),
    0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* Removed tag-card-header, tag-icon, and tag-count styles */

.tag-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #1e293b;
  margin-bottom: 0px;
  text-align: center;
  margin-top: 0;
  line-height: 1.3;
}

.tag-card.featured h4 {
  color: #3b82f6;
  font-size: 1.4rem;
}

.tag-description {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 400;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tag-list li {
  margin: 0;
}

.tag-list a {
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 6px 0;
  position: relative;
}

.tag-list a:hover {
  color: #3b82f6;
  text-decoration: underline;
  text-decoration-color: #3b82f6;
  text-decoration-thickness: 2px;
}

/* Masonry Layout for Related Tags */
.related-tags .row {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}

.related-tags .col-lg-4,
.related-tags .col-lg-6,
.related-tags .col-md-6,
.related-tags .col-md-12 {
  padding: 8px;
  display: flex;
}

.related-tags .mb-4 {
  margin-bottom: 0 !important;
}

/* Masonry-style cards with varying heights */
.related-tags .tag-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 320px;
}

.related-tags .tag-card.featured {
  min-height: 380px;
}

/* Compact spacing */
.related-tags .row:last-child {
  margin-top: 1rem;
}

/* Masonry effect - different heights for visual interest */
.related-tags .tag-card:nth-child(3n+1) {
  min-height: 340px;
}

.related-tags .tag-card:nth-child(3n+2) {
  min-height: 360px;
}

.related-tags .tag-card:nth-child(3n+3) {
  min-height: 320px;
}

.related-tags .tag-card.featured:nth-child(odd) {
  min-height: 400px;
}

.related-tags .tag-card.featured:nth-child(even) {
  min-height: 420px;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .related-tags-section {
    padding: 60px 0;
  }
  
  .related-tags .row {
    margin: -6px;
  }
  
  .related-tags .col-lg-4,
  .related-tags .col-lg-6,
  .related-tags .col-md-6,
  .related-tags .col-md-12 {
    padding: 6px;
  }
  
  .tag-card {
    padding: 20px 16px;
    min-height: auto;
  }
  
  .tag-card.featured {
    min-height: auto;
  }
  
  .tag-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .tag-card.featured h4 {
    font-size: 1.3rem;
  }
  
  .tag-list a {
    font-size: 0.8rem;
    padding: 5px 0;
  }
  
  .tag-description {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .related-tags .row {
    margin: -4px;
  }
  
  .related-tags .col-lg-4,
  .related-tags .col-lg-6,
  .related-tags .col-md-6,
  .related-tags .col-md-12 {
    padding: 4px;
  }
  
  .tag-card {
    padding: 18px 14px;
  }
}

/* Smooth animations for better UX */
.related-tags .tag-card {
  animation: fadeInUp 0.6s ease-out;
}

.related-tags .tag-card:nth-child(2) {
  animation-delay: 0.1s;
}

.related-tags .tag-card:nth-child(3) {
  animation-delay: 0.2s;
}

.related-tags .tag-card:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Compact Related Tags Pills */
.related-tags .tag-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:6px 12px;
}
.related-tags .tag-list li{margin:0;}
.related-tags .tag-list a{
  font-size: .85rem;
  padding: 0px 0px;
  margin: 3px 0px;
  background:#fff;
  color:#2c5aa0;
  text-align: left;
}
.related-tags .tag-list a:hover{
  text-decoration: underline !important;
}

/* Contact Section - Modern Design */
.contact-section {
  padding: 100px 0;
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23607D8B' stroke-width='0.5' opacity='0.1'%3E%3Cpath d='M30 30L45 15M30 30L15 15M30 30L15 45M30 30L45 45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.2;
}

.contact-form-wrapper {
  background: var(--pure-white);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-form-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--primary-teal);
  border-radius: 50%;
  opacity: 0.05;
  transform: translate(50%, -50%);
}

.contact-form-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-form-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 0;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-label i {
  color: var(--primary-teal);
  margin-right: 8px;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  font-size: 1rem;
  height: 60px;
  transition: all 0.3s ease;
  background: var(--pure-white);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(0, 105, 92, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.8;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 40px;
}

.form-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-btn {
  background: var(--primary-teal);
  color: var(--pure-white);
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  justify-content: center;
}

.contact-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.form-message.success {
  background: rgba(56, 142, 60, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(56, 142, 60, 0.2);
}

.form-message.error {
  background: rgba(211, 47, 47, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.contact-info-header {
  margin-bottom: 30px;
}

.contact-info-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-info-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

.contact-info-list {
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--light-grey);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.3rem;
  color: var(--pure-white);
}

.contact-info-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-info-text a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 3px;
}

.contact-info-text a:hover {
  color: var(--primary-teal);
  text-decoration: none;
}

.contact-info-text span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-social {
  margin-bottom: 30px;
}

.contact-social h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--primary-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--pure-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  max-width: 300px;
}

.map-overlay h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.map-overlay p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.map-overlay-btn {
  background: var(--primary-teal);
  color: var(--pure-white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.map-overlay-btn:hover {
  background: var(--primary-orange);
  color: var(--pure-white);
}

/* Footer Styles */
.footer-modern {
  background: var(--dark-grey);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-width='0.5' opacity='0.05'%3E%3Cpath d='M30 30L45 15M30 30L15 15M30 30L15 45M30 30L45 45'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.1;
}

.footer-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 193, 7, 0.05);
  border-radius: 50%;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-logo h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
}

.footer-logo p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 350px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.footer-contact-info li:hover {
  transform: translateX(5px);
}

.footer-contact-info li i {
  margin-right: 12px;
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-info a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--accent-gold);
}

.footer-heading {
  color: var(--pure-white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--dark-grey);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 30px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: var(--accent-gold);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-app-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-app-link {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 8px;
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-app-link:hover {
  background: var(--accent-gold);
  color: var(--dark-grey);
  transform: translateY(-3px);
}

.footer-app-link i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.footer-app-link .app-text {
  display: flex;
  flex-direction: column;
}

.footer-app-link .app-text small {
  font-size: 0.7rem;
  opacity: 0.8;
}

.footer-app-link .app-text span {
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-newsletter {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 0.95rem;
}

.newsletter-form button {
  padding: 12px 25px;
  background: var(--primary-teal);
  color: var(--pure-white);
  border: none;
  border-radius: 0 50px 50px 0;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-orange);
}

/* Floating Buttons - Modern Style */
.whatsapp-btn,
.call-btn {
  position: fixed;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn {
  right: 30px;
  background: #25D366;
}

.call-btn {
  right: 95px;
  background: var(--primary-orange);
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}

/* Back to Top - Modern Style */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--dark-grey);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.2rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-teal);
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
    font-size: 0.8rem;
  }
  
  .top-bar .row {
    flex-direction: column;
    text-align: center;
  }
  
  .top-bar .col-md-8,
  .top-bar .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .top-info {
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  
  .top-info li {
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 0.75rem;
  }
  
  .top-info li:last-child {
    margin-right: 0;
  }
  
  .top-info li i {
    font-size: 0.9rem;
    margin-right: 5px;
  }
  
  .top-social {
    justify-content: center;
    margin-top: 10px;
  }
  
  .top-social li {
    margin-left: 10px;
  }
  
  .top-social li a {
    font-size: 0.9rem;
  }
  
  .btn-top {
    padding: 6px 15px;
    font-size: 0.75rem;
    margin-left: 10px;
  }
  
  /* Hide email on very small screens */
  @media (max-width: 480px) {
    .top-info li:nth-child(2) {
      display: none;
    }
    
    .top-info li {
      font-size: 0.7rem;
    }
    
    .btn-top {
      padding: 5px 12px;
      font-size: 0.7rem;
    }
    
    .logo-text h2 {
      font-size: 1rem;
    }
    
    .logo-text span {
      font-size: 0.65rem;
    }
    
    .logo-icon {
      width: 35px;
      height: 35px;
      margin-right: 8px;
    }
    
    .logo-icon i {
      font-size: 1.2rem;
    }
  }
  
  .header-modern {
    padding: 15px 0;
  }
  
  .header-wrapper {
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .logo-area {
    flex: 1;
    min-width: 0;
  }
  
  .nav-area {
    flex: 0 0 auto;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .logo-icon i {
    font-size: 1.4rem;
  }
  
  .logo-text h2 {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  
  .logo-text span {
    font-size: 0.7rem;
    line-height: 1;
  }
  
  .logo-wrapper {
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .header-wrapper {
    position: relative;
  }
  
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    margin-left: 10px;
  }
  
  .mobile-nav-toggle:hover {
    background: rgba(0, 105, 92, 0.1);
    color: var(--primary-teal);
  }
  
  .mobile-nav-toggle:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pure-white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0, 105, 92, 0.1);
  }
  
  .main-nav.show {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 105, 92, 0.1);
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 105, 92, 0.05);
    color: var(--primary-teal);
    padding-left: 25px;
  }
  
  .nav-link:hover::before,
  .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-teal);
  }
  
  .btn-primary {
    width: calc(100% - 40px);
    margin: 15px 20px;
    justify-content: center;
    border-radius: 8px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .map-container {
    height: 300px;
    margin-top: 20px;
  }
  
  .map-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: none;
    padding: 15px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .footer-menu {
    justify-content: flex-start;
    margin-top: 20px;
    gap: 20px;
  }
  
  .footer-app-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .whatsapp-btn,
  .call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .call-btn {
    right: 85px;
  }
} 