:root {
  --primary: #d50000;
  --dark: #111;
  --light: #fff;
  --accent: #0077c2;
  --shadow: #e0e0e0;
  --gradient: linear-gradient(135deg, #d50000, #ff5722);
  --text-gray: #666;
  --bg-light: #f8f9fa;
  --gold: #ffd700;
  --success: #28a745;
}

/* Font imports */
@font-face {
  font-family: "Bank Gothic";
  src: url("BankGothicMediumBT.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: "Bank Gothic";
  src: url("BankGothic Bold.ttf") format("truetype");
  font-weight: bold;
}

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

body {
  font-family: "Bank Gothic", Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Ensure FontAwesome icons are properly loaded */
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Fixed Navigation with Enhanced Mobile Menu */
.navbar {
  background: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-logo img {
  height: 45px;
  width: auto;
  max-width: 180px;
}

.navbar-items {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}

.navbar-items a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-items a:hover,
.navbar-items a.active {
  background: var(--gradient);
  color: var(--light);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("assets/3409297.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  text-align: center;
  color: var(--light);
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: slideInDown 1s ease;
}

.highlight {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: slideInUp 1s ease 0.3s both;
}

.hero-services {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 0.6s both;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-service-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-service-item i {
  color: var(--gold);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 0.9s both;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--gradient);
  color: var(--light);
}

.cta-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: float 4s ease-in-out infinite var(--delay);
}

.float-element:nth-child(1) {
  top: 20%;
  left: 10%;
}
.float-element:nth-child(2) {
  top: 60%;
  right: 15%;
}
.float-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
}
.float-element:nth-child(4) {
  top: 40%;
  right: 30%;
}

/* Sections */
section {
  padding: 4rem 2rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

/* About Section */
.about-section {
  background: var(--bg-light);
}

.philosophy-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy-intro p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.philosophy-item {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.philosophy-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.philosophy-item:hover::before {
  transform: scaleX(1);
}

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

.philosophy-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
  transform: scale(1.1) rotate(5deg);
}

.letter-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 25px;
  height: 25px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.philosophy-item h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.philosophy-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

.philosophy-item p strong {
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Services Section with Enhanced Hover Effects */
.services-section {
  background: var(--light);
}

.services-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  position: relative;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  min-height: 600px;
}
/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: all 0.4s ease;
  z-index: 1;
} */

/* .service-card:hover::before {
  left: 0;
} */
/* .service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(213, 0, 0, 0.2);
} */

.service-icon {
  position: relative;
  z-index: 2;
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s ease;
}

/* .service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--light);
} */

.service-content {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* .service-card:hover .service-content h3 {
  color: var(--light);
} */

.service-subtitle p {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

/* .service-card:hover .service-subtitle p {
  color: rgba(255, 255, 255, 0.9);
} */

.service-features,
.service-types,
.service-offerings,
.podcast-benefits {
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-features h4,
.service-types h4,
.service-offerings h4,
.podcast-benefits h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

/* .service-card:hover .service-features h4,
.service-card:hover .service-types h4,
.service-card:hover .service-offerings h4,
.service-card:hover .podcast-benefits h4 {
  color: var(--light);
} */

.service-features ul,
.service-types ul,
.service-offerings ul,
.podcast-benefits ul {
  list-style: none;
}

.service-features li,
.service-types li,
.service-offerings li,
.podcast-benefits li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  color: var(--text-gray);
  position: relative;
  transition: color 0.3s ease;
}

/* .service-card:hover .service-features li,
.service-card:hover .service-types li,
.service-card:hover .service-offerings li,
.service-card:hover .podcast-benefits li {
  color: rgba(255, 255, 255, 0.9);
} */

.service-features li::before,
.service-types li::before,
.service-offerings li::before,
.podcast-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  transition: color 0.3s ease;
}

/* .service-card:hover .service-features li::before,
.service-card:hover .service-types li::before,
.service-card:hover .service-offerings li::before,
.service-card:hover .podcast-benefits li::before {
  color: var(--light);
} */

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.event-types-grid span {
  background: var(--light);
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

/* .service-card:hover .event-types-grid span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.3);
} */

.market-growth {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

/* .service-card:hover .market-growth {
  background: rgba(255, 255, 255, 0.1);
} */

.market-growth h4 {
  transition: color 0.3s ease;
}

/* .service-card:hover .market-growth h4 {
  color: var(--light);
} */

.growth-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.growth-item {
  text-align: center;
}

.growth-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  transition: color 0.3s ease;
}

/* .service-card:hover .growth-number {
  color: var(--light);
} */

.growth-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

/* .service-card:hover .growth-label {
  color: rgba(255, 255, 255, 0.8);
} */

.growth-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

/* .service-card:hover .growth-arrow {
  color: var(--light);
} */

.growth-cagr {
  background: var(--gradient);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* .service-card:hover .growth-cagr {
  background: var(--light);
  color: var(--primary);
} */

.service-deliverables {
  border-top: 2px solid #ddd;
  padding-top: 1rem;
  transition: all 0.3s ease;
}

/* .service-card:hover .service-deliverables {
  border-top-color: rgba(255, 255, 255, 0.3);
} */

.service-deliverables h4 {
  transition: color 0.3s ease;
}

/* .service-card:hover .service-deliverables h4 {
  color: var(--light);
} */

.deliverable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.deliverable-tags span {
  background: var(--primary);
  color: var(--light);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

/* .service-card:hover .deliverable-tags span {
  background: var(--light);
  color: var(--primary);
  transform: scale(1.05);
} */

/* Learn More Button */
.learn-more-btn {
  background: var(--gradient);
  color: var(--light);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  align-self: flex-start;
}

/* .service-card:hover .learn-more-btn {
  background: var(--light);
  color: var(--primary);
} */

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.3);
}

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

.learn-more-btn:hover i {
  transform: translateX(3px);
}

/* Back Button */
.back-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 4;
}

.back-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

/* Service hover content */
.service-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light);
  color: var(--dark);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.service-hover-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-hover-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-hover-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.service-hover-content .hover-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-hover-content .hover-features li {
  padding: 0.5rem 0;
  font-size: 1rem;
  position: relative;
  color: var(--text-gray);
}

.service-hover-content .hover-features li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--success);
  font-weight: bold;
}

.service-hover-content .cta-link {
  background: var(--gradient);
  color: var(--light);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-hover-content .cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.3);
}

/* Synergy Section */
.synergy-section {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.synergy-section h3 {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.synergy-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
}

.flow-icon {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.flow-step h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary);
}

.roi-multiplier {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
}

.roi-multiplier h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.roi-multiplier ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.roi-multiplier li {
  padding: 0.5rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roi-multiplier li i {
  color: var(--success);
}

/* Flagship Events */
.flagship-events {
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flagship-events h3 {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.flagship-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.flagship-main h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.flagship-description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  align-items: flex-start;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-item h5 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.flagship-locations h5 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  color: var(--primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Services CTA */
.services-cta {
  background: var(--gradient);
  color: var(--light);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.testimonial-content strong {
  color: var(--primary);
  font-weight: bold;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.testimonial-stat {
  text-align: center;
}

.stat-highlight {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.testimonials-summary {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-stat {
  text-align: center;
}

.summary-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.summary-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background: var(--light);
}

.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-offices h3,
.contact-form-container h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.office-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.office-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.office-header h4 {
  color: var(--primary);
}

.office-details p {
  color: var(--text-gray);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.office-details i {
  color: var(--primary);
  width: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.form-row select {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  transform: translateY(-2px);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input {
  width: auto;
  margin: 0;
}

.form-checkbox label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.submit-btn {
  background: var(--gradient);
  color: var(--light);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(213, 0, 0, 0.3);
}

/* Gifting Page Styles */
.gifting-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--light);
  text-align: center;
  padding: 8rem 2rem 4rem;
  margin-top: 80px;
}

.gifting-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gifting-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gifting-services {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gifting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.gifting-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gifting-card:hover {
  transform: translateY(-10px);
}

.gifting-icon {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gifting-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.gifting-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.gifting-card ul {
  list-style: none;
}

.gifting-card li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  color: var(--text-gray);
  position: relative;
}

.gifting-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.gifting-process {
  background: var(--bg-light);
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-gray);
  line-height: 1.6;
}

.gifting-categories {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-item h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.category-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Enhanced Gifting Form Styles */
.gifting-form-container {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gifting-form-container h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.gifting-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gifting-form .form-group {
  display: flex;
  flex-direction: column;
}

.gifting-form .form-row {
  display: flex;
  gap: 1rem;
}

.gifting-form .form-row .form-group {
  flex: 1;
}

.gifting-form label {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gifting-form input,
.gifting-form select,
.gifting-form textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--light);
  width: 100%;
}

.gifting-form input:focus,
.gifting-form select:focus,
.gifting-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.1);
}

.gifting-form input:valid,
.gifting-form select:valid,
.gifting-form textarea:valid {
  border-color: var(--success);
}

.gifting-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.gifting-form .form-checkbox input {
  width: auto;
  margin: 0;
  transform: scale(1.2);
}

.gifting-form .form-checkbox label {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
}

.gifting-form .submit-btn {
  background: var(--gradient);
  color: var(--light);
  border: none;
  border-radius: 50px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: center;
  min-width: 200px;
}

.gifting-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(213, 0, 0, 0.3);
}

.gifting-form .submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Gifting Contact Details */
.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(213, 0, 0, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: var(--text-gray);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* Footer with Fixed Social Media Icons */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  /* filter: brightness(0) invert(1); */
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
  display: block;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-section p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section i {
  color: var(--primary);
  width: 16px;
}

/* Fixed Social Media Icons */
.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px !important;
  height: 40px !important;
  background: #333 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  color: var(--light) !important;
  text-decoration: none !important;
  font-size: 1.2rem !important;
}

.footer-social a:hover {
  background: var(--primary) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(213, 0, 0, 0.3) !important;
}

.footer-social a i {
  color: var(--light) !important;
  font-size: 1rem !important;
  width: auto !important;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

/* Form validation styles */
.gifting-form input.error,
.gifting-form select.error,
.gifting-form textarea.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.gifting-form input.success,
.gifting-form select.success,
.gifting-form textarea.success {
  border-color: var(--success);
  background-color: #f0fff4;
}

/* Loading state for submit button */
.submit-btn.loading {
  background: #ccc;
  cursor: not-allowed;
}

.submit-btn.loading i {
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Mobile Styles - FIXED HAMBURGER MENU */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }

  .navbar-items {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
  }

  .navbar-items.open {
    right: 0;
  }

  .navbar-items a {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    border-radius: 0;
    border-bottom: 1px solid #eee;
  }

  .navbar-items a:last-child {
    border-bottom: none;
  }

  /* Overlay when menu is open */
  .navbar-items.open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-services {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-container,
  .flagship-content {
    grid-template-columns: 1fr;
  }

  .form-row,
  .gifting-form .form-row {
    flex-direction: column;
  }

  .synergy-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .testimonials-summary {
    flex-direction: column;
    gap: 1.5rem;
  }

  .growth-stats {
    flex-direction: column;
  }

  .services-container,
  .philosophy-grid,
  .gifting-grid {
    grid-template-columns: 1fr;
  }

  .gifting-hero h1 {
    font-size: 2rem;
  }

  .gifting-form .submit-btn {
    width: 100%;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  section {
    padding: 5rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .philosophy-item,
  .service-card,
  .gifting-card {
    padding: 1.5rem;
  }

  .navbar {
    padding: 10px 20px;
  }

  .navbar-items {
    width: 90%;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gifting-form-container {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 0.8rem;
  }
}
