/* ============================================
   Global Styles & CSS Variables
   ============================================ */
:root {
  --primary: #00d9ff;
  --primary-dark: #0066cc;
  --secondary: #00ff88;
  --background: #0a0e27;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
}

p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--text-secondary);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
  position: relative;
  border: 1px solid transparent;
  background: linear-gradient(var(--background), var(--background)) padding-box,
              linear-gradient(135deg, #00d9ff, #00ff88) border-box;
}

/* ============================================
   Navigation Bar
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px;
  }

  .nav-menu a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-container {
    padding: 0 1rem;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(10, 14, 39, 0.6) 50%, rgba(10, 14, 39, 1) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
  z-index: 0;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 10%;
  background: #00d9ff;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: 20%;
  right: 10%;
  background: #0066cc;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: slideDown 0.8s ease-out 0.2s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: slideDown 0.8s ease-out 0.4s both;
}

.hero-title .text-gradient {
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: slideDown 0.8s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: slideDown 0.8s ease-out 0.8s both;
}

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00d9ff 0%, #0066cc 100%);
  color: var(--text-primary);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: scale(0.98);
  }
  
  .service-card:active {
    transform: translateY(-3px);
  }
  
  .contact-card:active {
    transform: translateY(-2px);
  }
  
  .nav-menu a:active {
    color: var(--primary);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}

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

.scroll-indicator-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.scroll-indicator-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
  pointer-events: none;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
  group: service-card;
}

@media (max-width: 640px) {
  .service-card {
    height: 350px;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover;
  opacity: 0.4;
  transition: opacity 0.7s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.2;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 50%, rgba(10, 14, 39, 1) 100%);
  z-index: 1;
}

.service-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon-brand {
  background: linear-gradient(135deg, #0066cc 0%, #00d9ff 100%);
}

.service-icon-video {
  background: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
}

.service-icon-geo {
  background: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-bottom: 1rem;
}

.service-card:hover .service-description {
  max-height: 200px;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .service-link::after {
  transform: translateX(4px) translateY(-4px);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/contact-bg.jpg') center/cover;
  z-index: 0;
}

.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--primary);
  font-weight: 500;
}

.contact-slogan {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-top: 2rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
  position: relative;
  border-top: 1px solid var(--border-color);
  background: rgba(10, 14, 39, 0.5);
  padding: 3rem 0 1rem;
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   Touch Device Styles
   ============================================ */
.touch-device .service-description {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.touch-device .service-card:hover .service-description {
  max-height: 200px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ============================================
   Responsive Design Adjustments
   ============================================ */
@media (max-width: 768px) {
  .hero-glow-1,
  .hero-glow-2 {
    width: 250px;
    height: 250px;
  }
  
  /* Optimize for tablet */
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.9375rem;
  }

  .hero {
    padding-top: 70px;
    min-height: 100vh;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 0.75rem;
  }

  .section-header p {
    font-size: 0.9375rem;
  }

  .about {
    padding: 2.5rem 0;
  }

  .about-content {
    gap: 1.5rem;
  }

  .about-text h2 {
    margin-bottom: 1rem;
  }

  .about-text p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }

  .services {
    padding: 2.5rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    height: 320px;
    border-radius: 15px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .service-description {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .service-link {
    font-size: 0.875rem;
  }

  .contact {
    padding: 2.5rem 0;
  }

  .contact-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .contact-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .contact-card-icon {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .contact-card p {
    font-size: 0.9375rem;
  }

  .contact-slogan {
    font-size: clamp(1.25rem, 4vw, 2rem);
    margin-top: 1.5rem;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }

  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.875rem;
  }

  nav {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 0.875rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    height: 35px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 40px;
  }

  .scroll-indicator {
    bottom: 0.75rem;
  }

  .scroll-indicator-text {
    font-size: 0.65rem;
  }

  .scroll-indicator-line {
    height: 25px;
  }

  .about {
    padding: 2rem 0;
  }

  .about-text h2 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .about-text p {
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
  }

  .services {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .section-header p {
    font-size: 0.875rem;
  }

  .services-grid {
    gap: 0.75rem;
  }

  .service-card {
    height: 300px;
    border-radius: 12px;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
  }

  .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .service-description {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .service-link {
    font-size: 0.8rem;
  }

  .contact {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .contact-description {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: 1.5rem;
  }

  .contact-cards {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .contact-card {
    padding: 1.25rem;
    border-radius: 10px;
  }

  .contact-card-icon {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .contact-card p {
    font-size: 0.875rem;
  }

  .contact-slogan {
    font-size: clamp(1rem, 3.5vw, 1.75rem);
    margin-top: 1rem;
  }

  footer {
    padding: 1.5rem 0 0.75rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    font-size: 0.75rem;
  }
}
