/* ===== SOCIAL MEDIA AGENCY TEMPLATE STYLES ===== */

/* CSS Variables for Color Palette */
:root {
  --primary-purple: #595ceb;
  --primary-pink: #e2409a;
  --primary-blue: #4a6be1;
  --primary-teal: #1ab8ae;
  --primary-orange: #ff5000;
  
  /* Light shades */
  --light-purple: #c2ccf2;
  --light-pink: #f3d2e6;
  --light-blue: #e2ecff;
  --light-teal: #b4e9dd;
  --light-orange: #f9c998;
  
  /* Dark shades */
  --dark-purple: #4328b9;
  --dark-pink: #ac0b5f;
  --dark-blue: #1345bd;
  --dark-teal: #1c8a71;
  --dark-orange: #c54214;
  
  /* Neutral colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #c6ced8;
  --gray-300: #b9c3cc;
  --gray-400: #8494a7;
  --gray-500: #666f83;
  --gray-600: #3c4957;
  --gray-700: #3d4b5e;
  --gray-800: #151c28;
  --gray-900: #0d131e;
  
  /* 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;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  box-shadow: 0 6px 21px rgba(82, 112, 255, 0.10);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  font-size: var(--font-size-base);
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-purple) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--primary-blue));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../GOD_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--light-purple);
  margin-bottom: 1.73rem;
  font-weight: 400;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 23px 60px rgba(0, 0, 0, 0.2);
}

/* Decorative shapes */
.blob-1 {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--primary-teal), var(--primary-blue));
  border-radius: 50% 30% 60% 40%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-pink));
  border-radius: 30% 60% 40% 50%;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-23px) rotate(10deg); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-desc {
  font-size: var(--font-size-base);
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: var(--gray-50);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 17px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.feature-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
}

.service-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-19px);
  box-shadow: 0 29px 50px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 2rem;
}

.service-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.63rem;
}

.service-features li {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: 0.58rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-teal);
  position: absolute;
  left: 0;
  top: 0;
}

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-purple);
}

/* Features Section */
.features-section {
  background: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gray-50);
}

.price-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: var(--white);
  transform: scale(1.05);
}

.price-card.featured h5,
.price-card.featured p {
  color: var(--white);
}

.price-card h5 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-teal), var(--light-blue));
}

.team-card {
  background: var(--white);
  border-radius: 21px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  padding: 2rem;
}

.team-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.69rem;
}

.team-card p {
  color: var(--primary-purple);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: var(--gray-50);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3rem;
  color: var(--primary-purple);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.review-card p {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.60rem;
  font-size: var(--font-size-base);
}

.review-author {
  font-weight: 600;
  color: var(--gray-800);
  font-size: var(--font-size-sm);
}

/* Case Study Section */
.casestudy-section {
  background: var(--gray-50);
}

.case-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.case-card p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--light-orange), var(--light-pink));
}

.process-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.process-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 1rem;
}

/* Timeline Section */
.timeline-section {
  background: var(--white);
}

.timeline-card {
  background: var(--gray-50);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--primary-purple);
  height: 100%;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  background: var(--white);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
}

.timeline-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

/* Career Section */
.career-section {
  background: var(--gray-50);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.career-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.career-role {
  color: var(--primary-purple);
  font-weight: 500;
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: var(--white);
}

.info-card {
  background: var(--gray-50);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2.55rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.info-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border: 2px solid var(--gray-200);
  border-radius: 15px;
  padding: 1rem;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.25rem rgba(110, 119, 221, 0.10);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 74, 223, 0.30);
}

.contact-info {
  color: var(--white);
}

.contact-info h5 {
  font-size: var(--font-size-lg);
  margin-bottom: 1.62rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Blog Section */
.blog-section {
  background: var(--gray-50);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: 1.66rem;
}

.blog-card .btn-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-card {
  background: var(--gray-50);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  font-size: var(--font-size-base);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.51rem;
  color: var(--primary-purple);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  display: none;
}

/* Gallery Section */
.gallery-section {
  background: var(--gray-50);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  border-bottom: 1px solid var(--gray-700);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.footer h5 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 1.62rem;
  color: var(--white);
}

.footer p {
  color: var(--gray-400);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.67rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom small {
  color: var(--gray-500);
  font-size: var(--font-size-xs);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--gray-50);
}

.breadcrumb-img {
  max-height: 40px;
  opacity: 0.7;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 2rem 0;
}

/* Additional Pages Styles */
.page-section {
  padding: 4rem 0;
}

.page-section:nth-child(even) {
  background: var(--gray-50);
}

.page-section h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.page-section h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-section p {
  color: var(--gray-600);
  font-size: var(--font-size-base);
  margin-bottom: 2rem;
}

.page-element-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-element-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-element-card h6 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.72rem;
}

.page-element-card p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .blob-1, .blob-2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .contact-form {
    padding: 1.5rem;
  }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
