/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Modern Color Scheme - Instagram/Twitter Inspired */
:root { 
  --background-color: #ffffff;
  --default-color: #1a1a1a;
  --heading-color: #0f1419;
  --accent-color: #1d9bf0;
  --accent-hover: #1a8cd8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e1e8ed;
  --light-bg: #f7f9fa;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Nav Menu Colors */
:root {
  --nav-color: #0f1419;
  --nav-hover-color: #1d9bf0;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0f1419;
  --nav-dropdown-hover-color: #1d9bf0;
}

/* Color Presets */
.light-background {
  --background-color: #f7f9fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f1419;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

/* Modern Button Styles */
.btn-get-started {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
  color: var(--contrast-color);
}

.btn-watch-video {
  background: transparent;
  color: var(--accent-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  text-decoration: none;
}

.btn-watch-video:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Section Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(29, 155, 240, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(29, 155, 240, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f7f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-image {
  border-radius: 20px;
  box-shadow: var(--card-shadow-hover);
  transition: transform 0.3s ease;
}

.hero-main-image:hover {
  transform: scale(1.02);
}

.hero-floating-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface-color);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--card-shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 18px;
}

.card-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.card-content p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* About Section */
.about {
  padding: 80px 0;
  background: var(--surface-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  box-shadow: var(--card-shadow-hover);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-secondary);
  padding: 20px;
  border-radius: 16px;
  color: var(--contrast-color);
  text-align: center;
  box-shadow: var(--card-shadow-hover);
}

.badge-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.badge-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(8px);
}

.feature-item i {
  color: var(--accent-color);
  font-size: 18px;
}

.feature-item:hover i {
  color: var(--contrast-color);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--light-bg);
}

.stats-item {
  background: var(--surface-color);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.stats-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.stats-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--contrast-color);
  font-size: 24px;
}

.stats-content span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  display: block;
}

.stats-content p {
  margin: 8px 0 0;
  color: #666;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--surface-color);
}

.service-card {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--contrast-color);
  font-size: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.faq-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.faq-container .faq-item {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-container .faq-item:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.faq-container .faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.faq-container .faq-content {
  color: #666;
  line-height: 1.6;
}

.faq-toggle {
  float: right;
  transition: transform 0.3s ease;
}

.faq-active .faq-toggle {
  transform: rotate(90deg);
}

/* Case Study Section */
.case-study {
  padding: 80px 0;
  background: var(--surface-color);
}

.case-study-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.case-study-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 20px;
}

.case-study-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
}

.case-study-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.case-study-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

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

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 18px;
}

.testimonial-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

.author-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: var(--surface-color);
}

.partner-logo {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: var(--light-bg);
}

.blog-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

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

.blog-image {
  position: relative;
  overflow: hidden;
}

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

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

.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 24px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
  line-height: 1.4;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #999;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Topbar */
.topbar {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.topbar a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.topbar a:hover {
  opacity: 0.8;
  color: var(--contrast-color);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  transition: all 0.3s ease;
  z-index: 997;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .logo img {
  max-height: 45px;
  transition: all 0.3s ease;
}

.header .logo:hover img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}

.navmenu li {
  position: relative;
  margin: 0;
}

.navmenu a {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
  position: relative;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--accent-color);
  background: rgba(29, 155, 240, 0.08);
  transform: translateY(-1px);
}

.navmenu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navmenu a:hover::before,
.navmenu .active::before {
  width: 80%;
}

/* Dropdown Styles */
.navmenu .dropdown {
  position: relative;
}

.navmenu .dropdown > a {
  gap: 6px;
}

.navmenu .dropdown .toggle-dropdown {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.navmenu .dropdown:hover .toggle-dropdown {
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--card-shadow-hover);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 8px 0;
  z-index: 1000;
}

.navmenu .dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navmenu .dropdown ul li {
  margin: 0;
}

.navmenu .dropdown ul a {
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.navmenu .dropdown ul a:last-child {
  border-bottom: none;
}

.navmenu .dropdown ul a:hover {
  background: var(--light-bg);
  color: var(--accent-color);
  transform: none;
}

.navmenu .dropdown ul a::before {
  display: none;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--heading-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  background: var(--light-bg);
  color: var(--accent-color);
}

/* Client Scroll */
.client-scroll-container {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.client-scroll-track {
  display: flex;
  gap: 40px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.client-scroll-track img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  opacity: 0.7;
}

.client-scroll-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Floating Icons */
.floating-icon {
  position: fixed;
  z-index: 996;
  bottom: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.floating-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-icon.google-review {
  left: 20px;
}

.floating-icon.google-review a {
  background: var(--gradient-primary);
}

.floating-icon.whatsapp {
  right: 20px;
}

.floating-icon.whatsapp a {
  background: #25d366;
}

.floating-icon a:hover {
  transform: scale(1.1);
  box-shadow: var(--card-shadow-hover);
}

.floating-icon .tooltip {
  position: absolute;
  right: 70px;
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.floating-icon a:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Main Footer Content */
.footer-main {
  padding: 80px 0 60px;
  position: relative;
}

.footer-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Company Section */
.footer-company {
  margin-bottom: 30px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,123,255,0.3));
}

.footer-description {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

/* Social Links */
.footer-social h6 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link.facebook {
  color: #1877f2;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-link.linkedin {
  color: #0077b5;
}

.social-link.linkedin:hover {
  background: #0077b5;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-link.whatsapp {
  color: #25d366;
}

.social-link.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-link i {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

/* Footer Links */
.footer-links {
  margin-bottom: 30px;
}

.footer-links h5 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 2px;
}

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

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

.footer-links ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links ul a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #007bff;
  font-weight: bold;
}

.footer-links ul a:hover {
  color: #ffffff;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-links ul a:hover::before {
  opacity: 1;
  left: -15px;
}

/* Contact Section */
.footer-contact h5 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-contact h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 2px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,123,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.contact-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.contact-details h6 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

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

.contact-details a:hover {
  color: #00d4ff;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-copyright strong {
  color: #ffffff;
  font-weight: 600;
}

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

.footer-legal ul li {
  margin: 0;
}

.footer-legal ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal ul a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transition: width 0.3s ease;
}

.footer-legal ul a:hover {
  color: #ffffff;
}

.footer-legal ul a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .footer-legal ul {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0 30px;
  }
  
  .footer-links,
  .footer-contact {
    margin-bottom: 40px;
  }
  
  .contact-item {
    padding: 12px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-legal ul {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-main {
    padding: 40px 0 25px;
  }
  
  .footer-logo-img {
    width: 120px;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-icon {
    align-self: center;
  }
  
  .footer-legal ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
  background-position: center;
}

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

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.contact-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-hero-stats .stat-item {
  text-align: center;
}

.contact-hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-hero-stats .stat-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.contact-hero-image {
  text-align: center;
}

.contact-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.contact-card-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.contact-card-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-card-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-numbers {
  margin-bottom: 1.5rem;
}

.contact-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f4;
}

.contact-number:last-child {
  border-bottom: none;
}

.contact-number .label {
  font-weight: 600;
  color: #2c3e50;
}

.contact-number a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-number a:hover {
  color: #764ba2;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.contact-card-link:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-form-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.form-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2c3e50;
  font-weight: 500;
}

.feature-item i {
  color: #28a745;
  font-size: 1.2rem;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2c3e50;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
  color: #adb5bd;
}

.form-control:focus::placeholder {
  color: #6c757d;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.form-text {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* Business Hours Section */
.business-hours-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.business-hours-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.business-hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.business-hours-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.business-hours-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.business-hours-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-align: center;
}

.hours-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateX(5px);
}

.hours-item .day {
  font-weight: 600;
}

.hours-item .time {
  font-weight: 500;
}

.support-note {
  text-align: center;
  color: #667eea;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #ffffff;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.map-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.map-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.map-container {
  position: relative;
}

.map-container iframe {
  display: block;
  border-radius: 0 0 20px 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 2.8rem;
  }
  
  .contact-hero-stats {
    gap: 1.5rem;
  }
  
  .contact-hero-stats .stat-item h3 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hours-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title {
    font-size: 2.2rem;
  }
  
  .contact-hero-description {
    font-size: 1rem;
  }
  
  .contact-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .business-hours-card {
    padding: 2rem;
  }
  
  .map-header {
    padding: 1.5rem;
  }
  
  .map-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 1.8rem;
  }
  
  .contact-card-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-card-icon i {
    font-size: 1.5rem;
  }
  
  .contact-form-content h2 {
    font-size: 2rem;
  }
  
  .business-hours-card h3 {
    font-size: 1.5rem;
  }
  
  .business-hours-icon {
    width: 60px;
    height: 60px;
  }
  
  .business-hours-icon i {
    font-size: 1.5rem;
  }
}

