/* ===========================
   GRAPHIC DESIGN AGENCY TEMPLATE
   Color Palette: 5 Primary Colors + Shades
   =========================== */

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-coral: #ff797e;
  --primary-coral-light: #ffa8b5;
  --primary-coral-dark: #e47b76;
  
  --primary-mint: #59d2c8;
  --primary-mint-light: #8deddc;
  --primary-mint-dark: #48b5ba;
  
  --primary-lavender: #afd8cb;
  --primary-lavender-light: #ccf1e4;
  --primary-lavender-dark: #8ac4ac;
  
  --primary-peach: #ffce4e;
  --primary-peach-light: #ffe2a1;
  --primary-peach-dark: #c0a53e;
  
  --primary-sky: #6ebc84;
  --primary-sky-light: #97e2a2;
  --primary-sky-dark: #5ea775;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #535a64;
  --dark-gray: #3a424c;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Conservative Font Sizes */
  --font-size-small: 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;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Typography */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  margin-bottom: 0.99rem;
  color: var(--dark-gray);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

h4, h5, h6 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin-bottom: 0.66rem;
  color: var(--dark-gray);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 700;
  color: var(--primary-coral) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-peach-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-coral), var(--primary-peach));
  opacity: 0.1;
}

.hero-decorative-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
}

.hero-decorative-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: -5%;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-coral);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--primary-coral), var(--primary-coral-dark)); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--primary-mint), var(--primary-mint-dark)); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--primary-lavender), var(--primary-lavender-dark)); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--primary-peach), var(--primary-peach-dark)); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--primary-sky), var(--primary-sky-dark)); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--primary-coral), var(--primary-mint)); }

.service-price {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Common Section Styling */
.section-padding {
  padding: var(--section-padding);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-peach-light), var(--primary-sky-light));
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 5px 17px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-coral-light);
}

/* Testimonials/Reviews */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-coral);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* FAQ Section - Legacy Compatibility */
.faq-item {
  background: var(--white);
  border-radius: 13px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
  border-radius: 15px;
  padding: 3rem;
  margin-top: 2rem;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 105, 108, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-coral-dark));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-coral-dark), var(--primary-coral));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

/* Utility Classes */
.section-padding {
  padding: var(--section-padding);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-peach-light), var(--primary-sky-light));
}

/* Image Placeholder Styles */
.img-placeholder {
  background: linear-gradient(45deg, var(--light-gray), var(--medium-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  min-height: 200px;
}

/* Blog Grid */
.blog-post {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post-content {
  padding: 1.5rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--primary-coral);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-mint));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.63rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-coral);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 2px;
  height: calc(100% + 2rem);
  background: var(--primary-coral-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--medium-gray);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 300px;
  max-width: 400px;
  animation: slideInRight 0.3s ease-out;
}

.notification-success {
  border-left: 5px solid var(--primary-sky);
}

.notification-error {
  border-left: 5px solid var(--primary-coral);
}

.notification-info {
  border-left: 5px solid var(--primary-mint);
}

.notification-content {
  padding: 1rem 1.5rem;
  position: relative;
  color: var(--dark-gray);
}

.notification-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: var(--medium-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: var(--dark-gray);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Navbar Scrolled State */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Interactive Cards */
.faq-card {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-checkbox {
  display: none;
}

.faq-question {
  background: linear-gradient(135deg, var(--primary-mint-light), var(--primary-lavender-light));
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--primary-peach-light), var(--primary-sky-light));
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background: var(--white);
  color: var(--medium-gray);
  line-height: 1.6;
}

.faq-checkbox:checked + .faq-question {
  background: linear-gradient(135deg, var(--primary-coral-light), var(--primary-peach-light));
  color: var(--dark-gray);
}

.faq-checkbox:checked + .faq-question::after {
  transform: rotate(45deg);
  color: var(--primary-coral-dark);
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 200px;
  padding: 1.5rem;
}

/* Loading State */
body.loading {
  overflow: hidden;
}

body.loaded .animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
}

/* Form Validation States */
.form-control.is-invalid {
  border-color: var(--primary-coral);
}

.form-control.is-valid {
  border-color: var(--primary-sky);
}

/* Image Lazy Loading */
.lozad {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lozad.fade-in {
  opacity: 1;
}

/* Card Hover Effects Enhancement */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1.21rem;
  }
  
  .notification {
    min-width: 280px;
    right: 10px;
    top: 10px;
  }
}

/* Print Optimizations */
@media print {
  .notification,
  #progress-bar,
  .hero-decorative-shape {
    display: none !important;
  }
  
  .navbar {
    position: static !important;
  }
  
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
