/* ===================================
   NAVBAR STYLING
   =================================== */

/* Sticky Navbar - Base Styles */
.sticky-navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  max-width: 1200px;
  width: calc(100% - 64px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sticky-navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  top: 12px;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease;
}

.sticky-navbar.scrolled .navbar-container {
  padding: 10px 32px;
}

/* Logo Section */
.navbar-logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.navbar-logo-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 47, 73, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sticky-navbar.scrolled .navbar-logo-wrapper {
  width: 32px;
  height: 32px;
}

.navbar-logo-wrapper:hover {
  box-shadow: 0 4px 16px rgba(255, 118, 50, 0.3);
  transform: scale(1.05);
}

.navbar-logo {
  width: 160%;
  height: 160%;
  object-fit: contain;
}

.navbar-brand-text {
  font-size: 16px;
  font-weight: 700;
  color: #002F49;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.navbar-logo-section:hover .navbar-brand-text {
  color: #FF7632;
}

/* Navigation Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-link {
  font-size: 14px;
  font-weight: 500;
  color: #002F49;
  text-decoration: none;
  position: relative;
  padding: 6px 4px;
  transition: color 0.15s ease;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FF7632;
  transform: translateX(-50%);
  transition: width 0.15s ease;
}

.navbar-link:hover {
  color: #FF7632;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active {
  color: #FF7632;
  font-weight: 600;
}

.navbar-link.active::after {
  width: 100%;
}

/* CTA Button */
.navbar-cta {
  padding: 8px 20px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 132, 75, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.navbar-cta span {
  position: relative;
  z-index: 1;
}

.navbar-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.navbar-cta:hover::before {
  width: 300px;
  height: 300px;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 132, 75, 0.4);
  background: linear-gradient(135deg, #FF6B2C 0%, #FF5722 100%);
}

.navbar-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.navbar-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.navbar-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #FF7632;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.navbar-menu-toggle:hover {
  background: #FF7632;
}

.navbar-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #FF7632;
  transition: all 0.3s ease;
}

.navbar-menu-toggle:hover span {
  background: white;
}

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

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

.navbar-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   NAVBAR RESPONSIVE STYLES
   =================================== */

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {
  .sticky-navbar {
    width: calc(100% - 48px);
  }

  .navbar-container {
    padding: 12px 24px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 10px 24px;
  }

  .navbar-links {
    gap: 20px;
  }

  .navbar-link {
    font-size: 13px;
  }

  .navbar-cta {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .sticky-navbar {
    width: calc(100% - 32px);
    top: 12px;
    border-radius: 50px;
  }

  .sticky-navbar.scrolled {
    top: 8px;
  }

  .navbar-container {
    padding: 10px 20px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 8px 20px;
  }

  .navbar-menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .navbar-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }

  .navbar-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }

  .navbar-logo-wrapper {
    width: 32px;
    height: 32px;
  }

  .navbar-brand-text {
    font-size: 15px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .sticky-navbar {
    width: calc(100% - 24px);
  }

  .navbar-container {
    padding: 8px 16px;
  }

  .sticky-navbar.scrolled .navbar-container {
    padding: 6px 16px;
  }

  .navbar-logo-wrapper {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-text {
    font-size: 14px;
  }

  .navbar-links {
    top: 68px;
  }
}

/* ===================================
   FOOTER CTA STYLING
   =================================== */

/* Footer Base Structure */
.site-footer {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* CTA Section */
.footer-cta-section {
  padding: 40px 48px 0;
  position: relative;
  overflow: visible;
  margin-top: 20px;
  background-color: white;
}

.footer-cta-section .cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 64px;
  background: linear-gradient(135deg, #ff7a3d 0%, #ff9f5a 50%, #ffc299 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 1280px;
  margin: 0 auto;
}

/* CTA Animated Circles */
.cta-circles-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66.666%;
  pointer-events: none;
  overflow: hidden;
}

.cta-circles-wrapper {
  position: absolute;
  right: -8rem;
  top: 50%;
  transform: translateY(-50%) scale(0.75);
  opacity: 0;
  transition: all 1.5s ease-out 0.3s;
}

.cta-banner.visible .cta-circles-wrapper {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.cta-circles {
  position: relative;
  width: 24rem;
  height: 24rem;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-out;
}

.cta-banner.visible .cta-circle {
  opacity: 1;
  transform: scale(1);
}

.cta-circle-1 {
  inset: 0;
  border: 60px solid rgba(251, 146, 60, 0.3);
  transition-delay: 0.5s;
}

.cta-circle-2 {
  inset: 3rem;
  border: 50px solid rgba(253, 186, 116, 0.25);
  transition-delay: 0.7s;
}

.cta-circle-3 {
  inset: 6rem;
  border: 40px solid rgba(254, 215, 170, 0.2);
  transition-delay: 0.9s;
}

.cta-circle-4 {
  inset: 9rem;
  border: 30px solid rgba(255, 237, 213, 0.15);
  transition-delay: 1.1s;
}

/* CTA Floating Text */
.cta-floating-text-container {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 0.05;
}

.cta-floating-text {
  color: white;
  font-weight: 900;
  font-size: 2.25rem;
  white-space: nowrap;
  animation: ctaScrollText 30s linear infinite;
}

@keyframes ctaScrollText {
  0% {
    transform: translateX(0) rotate(-6deg);
  }
  100% {
    transform: translateX(-50%) rotate(-6deg);
  }
}

/* CTA Content */
.footer-cta-content {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-cta-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-style: normal;
}

.footer-cta-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  max-width: 600px;
}

/* Contact Form */
.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.footer-contact-form:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-form-label {
  font-size: 12px;
  font-weight: 600;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-form-input,
.footer-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 2px solid rgba(255, 180, 153, 0.3);
  border-radius: 10px;
  font-size: 14px;
  color: #2C3E50;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.footer-form-input:focus,
.footer-form-textarea:focus {
  outline: none;
  border-color: #FF844B;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 180, 153, 0.25);
}

.footer-form-input::placeholder,
.footer-form-textarea::placeholder {
  color: rgba(44, 62, 80, 0.4);
}

.footer-form-textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 150px;
  vertical-align: top;
}

.footer-form-submit {
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.footer-form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 132, 75, 0.5);
}

.footer-form-submit:hover::before {
  transform: translateX(100%);
}

.footer-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-form-submit svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

/* Form Messages */
.footer-form-message {
  font-size: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.footer-form-message.success {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.footer-form-message.error {
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.footer-form-message.info {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.footer-form-success-modern {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-radius: 16px;
  border: 2px solid #10B981;
  animation: successFadeIn 0.5s ease-out;
  margin-top: 1rem;
}

.success-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.success-checkmark {
  width: 40px;
  height: 40px;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: #10B981;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #10B981;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

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

.success-content {
  flex: 1;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #065F46;
  margin: 0 0 0.5rem 0;
}

.success-message {
  font-size: 0.95rem;
  font-weight: 500;
  color: #047857;
  margin: 0;
  line-height: 1.5;
}

.word-counter {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

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

/* Footer Main Section */
.footer-main {
  background: #2C3E50;
  padding: 56px 48px 28px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-radius: 40px 40px 0 0;
  box-shadow: none;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 180, 153, 0.3) 50%, transparent 100%);
}

/* Footer Grid Layout */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 48px;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 0 48px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo-wrapper {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255, 132, 75, 0.35);
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer-logo-wrapper:hover {
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.5);
}

.footer-logo {
  width: 170%;
  height: 170%;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 300px;
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 3px 0;
}

.footer-contact-item:hover {
  color: #FF844B;
  transform: translateX(4px);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: #FF844B;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #FF844B;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF844B;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #FF844B;
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  gap: 20px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.footer-details {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-details span:not(:last-child)::after {
  content: '•';
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Social Links */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 132, 75, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF844B 0%, #FF6B2C 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.footer-social-link.linkedin svg {
  fill: rgba(255, 255, 255, 0.6);
  stroke: none;
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link:hover {
  border-color: #FF844B;
  transform: translateY(-3px) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(255, 132, 75, 0.5);
}

.footer-social-link:hover svg {
  stroke: white;
}

.footer-social-link.linkedin:hover svg {
  fill: white;
}

/* ===================================
   FOOTER CTA RESPONSIVE STYLES
   =================================== */

/* Large Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cta-section {
    padding: 70px 40px 0;
  }

  .footer-cta-section .cta-banner {
    padding: 48px;
  }

  .footer-main {
    margin-top: 0;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 0;
  }

  .footer-cta-section {
    padding: 60px 24px 0;
    margin-top: 60px;
  }

  .footer-cta-section .cta-banner {
    padding: 40px 28px;
  }

  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-cta-text h2 {
    font-size: 26px;
  }

  .footer-cta-text p {
    font-size: 14px;
  }

  .footer-main {
    padding: 36px 24px 20px;
    margin-top: 0;
    border-radius: 30px 30px 0 0;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-details {
    flex-direction: column;
    gap: 3px;
  }

  .footer-details span:not(:last-child)::after {
    display: none;
  }

  .footer-social {
    align-self: flex-start;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .footer-cta-section {
    padding: 40px 20px;
  }

  .footer-cta-section .cta-banner {
    padding: 32px 24px;
  }

  .footer-cta-text h2 {
    font-size: 22px;
  }

  .footer-main {
    padding: 28px 20px 16px;
  }

  .footer-logo-wrapper {
    width: 32px;
    height: 32px;
  }

  .footer-brand-name {
    font-size: 15px;
  }

  .footer-tagline {
    font-size: 11px;
  }

  .footer-column-title {
    font-size: 12px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}
