/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-color: #7d6efb;
  --primary-light: #aeaaf8;
  --primary-dark: #7653d2;
  
  --secondary-color: #00c6d7;
  --secondary-light: #6deeef;
  --secondary-dark: #11bcac;
  
  --accent-color: #f886b2;
  --accent-light: #ecba69;
  --accent-dark: #e7447b;
  
  --success-color: #00bba3;
  --success-light: #49e5ab;
  --success-dark: #00b787;
  
  --warning-color: #ffdb5c;
  --warning-light: #ffeab4;
  --warning-dark: #d76b5b;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #646e80;
  --dark-gray: #484b50;
  --black: #454a4c;
  
  /* Font Sizes - Conservative */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== HEADER STYLES ===== */
.navbar {
  padding: var(--spacing-md) 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GOK_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.hero-section .lead {
  font-size: var(--font-size-xl);
  color: var(--white);
  opacity: 0.9;
}

.hero-section p {
  color: var(--white);
  opacity: 0.8;
}

/* ===== SECTION STYLES ===== */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-lg);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(108, 92, 209, 0.10);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(114, 81, 223, 0.15);
}

.feature-card i {
  color: var(--primary-color);
}

.feature-card h5 {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 186, 168, 0.10);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 30px rgba(0, 228, 200, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h5 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0;
}

.service-card ul li {
  padding: var(--spacing-xs) 0;
  color: var(--gray);
}

.service-card ul li::before {
  content: 'âœ“';
  color: var(--success-color);
  font-weight: bold;
  margin-right: var(--spacing-sm);
}

.price-tag {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 6px solid var(--light-gray);
}

/* ===== BUTTONS ===== */
.btn {
  border-radius: var(--border-radius-md);
  font-weight: 600;
  padding: var(--spacing-md) var(--spacing-xl);
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(112, 101, 217, 0.30);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-xl);
  font-size: var(--font-size-lg);
}

/* ===== FORMS ===== */
.form-control {
  border-radius: var(--border-radius-md);
  border: 2px solid var(--light-gray);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  padding: var(--spacing-md);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(97, 78, 220, 0.15);
}

.form-label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}

/* ===== AUTOMATION CARDS ===== */
.automation-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(242, 107, 150, 0.10);
}

.automation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 106, 134, 0.15);
}

.automation-card i {
  color: var(--accent-color);
}

/* ===== INTEGRATION ITEMS ===== */
.integration-item {
  background: var(--white);
  border-radius: var(--border-radius-md);
  transition: transform 0.3s ease;
  border: 1px solid var(--light-gray);
}

.integration-item:hover {
  transform: scale(1.05);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item img {
  filter: opacity(0.7);
  transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
  filter: opacity(1);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

footer h5, footer h6 {
  color: var(--white);
  font-weight: 600;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light);
}

footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ===== SPACE PAGE ===== */
#space {
  background: linear-gradient(45deg, var(--light-gray) 0%, var(--white) 100%);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.shadow-custom {
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.07);
}

.border-primary {
  border-color: var(--primary-color) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE HELPER CLASSES ===== */
.min-vh-100 {
  min-height: 100vh;
}

.object-cover {
  object-fit: cover;
}

/* ===== TIMELINE STYLES ===== */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content {
  padding-left: 1rem;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
  border-left-color: var(--primary-light);
}

/* ===== COMPONENT SPECIFIC STYLES ===== */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.card {
  border: none;
  border-radius: var(--border-radius-lg);
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
