/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--fs-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2b8cff 100%);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #0a50e6 0%, #1d7cff 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffb169 100%);
  color: white;
}

.btn-secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff6a45 0%, #ff9a53 100%);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 255, 0.2);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--color-primary);
  color: white;
}

.btn-dark {
  background-color: var(--color-dark);
  color: white;
}

.btn-dark:hover:not(:disabled) {
  background-color: #000;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-lg);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-MD) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
  border-radius: 1px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  display: inline-block;
  color: var(--color-text);
  font-weight: 500;
  transition: var(--transition);
  padding: var(--space-sm) 0;
}

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

.nav-link-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2b8cff 100%);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
}

.nav-link-primary:hover {
  background: linear-gradient(135deg, #0a50e6 0%, #1d7cff 100%);
  color: white;
}

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

.nav-item-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: 2px;
  transition: var(--transition);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-item-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-dropdown:hover > .nav-link::after {
  transform: rotate(180deg);
}

.nav-sublink {
  display: block;
  padding: 12px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-sublink:hover {
  background-color: #f5f7fb;
  color: var(--color-primary);
  padding-left: 24px;
}

/* Hero Section */
.hero {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #0099e5 0%, #00c896 100%);
  color: white;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-5xl);
}

.hero-subtitle {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Cards */
.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition-slow);
}

.card:hover {
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
  transform: translateY(-6px);
}

.card-title {
  margin-bottom: var(--space-md);
}

.card-text {
  color: var(--color-text-light);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 153, 229, 0.1);
}

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

.form-error {
  color: var(--color-error);
  font-size: var(--fs-sm);
  margin-top: var(--space-xs);
}

.form-success {
  color: var(--color-success);
  font-size: var(--fs-sm);
  margin-top: var(--space-xs);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: white;
  padding: var(--space-3xl) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-column {
  padding: var(--space-sm) 0;
}

.footer-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.footer-subtitle {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-primary);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
/* Service Card Enhancements */
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0099e5 0%, #00c896 100%);
}

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

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

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 16, 23, 0.15);
  transition: background 0.35s ease;
}

.service-card:hover .service-card-overlay {
  background: rgba(11, 16, 23, 0.05);
}

.service-card-icon {
  position: relative;
  margin: -35px auto 16px;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.35s ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 0 16px 12px;
  padding: 0;
  color: var(--color-dark);
}

.service-card-description {
  flex: 1;
  font-size: var(--fs-base);
  color: var(--color-text-light);
  margin: 0 16px 20px;
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-base);
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 12px;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.card:hover {
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
  transform: translateY(-6px);
}

/* Team Member Cards */
.team-member-card {
  padding: 32px 24px;
  text-align: center;
}

.team-member-card img {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.team-member-card:hover img {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transform: scale(1.02);
}

/* Hero Section Enhancements */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b5fff 0%, #ff7a59 100%);
  padding: var(--space-3xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(15, 23, 42, 0.16) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 var(--space-lg) 0;
  text-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
  opacity: 0.95;
  text-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

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

/* Logo Watermark for Images */
.image-with-watermark {
  position: relative;
  display: inline-block;
}

.image-with-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.image-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Blog Section */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  margin-bottom: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.blog-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--color-text);
}

.blog-card-excerpt {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--color-primary);
  font-weight: 600;
}

.blog-hero {
  padding: 120px 0 80px;
  background: linear-gradient(140deg, rgba(11, 95, 255, 0.12) 0%, rgba(255, 122, 89, 0.12) 100%);
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.blog-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 720px;
}

.blog-post-hero {
  padding: 120px 0 60px;
  background: linear-gradient(140deg, rgba(11, 95, 255, 0.12) 0%, rgba(255, 122, 89, 0.12) 100%);
}

.blog-post-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.blog-post-meta {
  color: var(--color-text-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-post-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 24px;
}

.blog-post-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--color-text);
}

.blog-post-content h2 {
  margin-top: 12px;
}

.blog-post-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--color-text-light);
}

/* Instagram Feed */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.ig-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  aspect-ratio: 1 / 1;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.ig-card-overlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(10, 16, 32, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  text-align: center;
}