/* Redoya Custom Styles - Brand Identity Implementation */

/* ==========================================================================
   BRAND COLORS
   Primary: #FDC02F (Yellow/Gold) - For main headings, CTAs, key elements
   Secondary: #00897B (Teal/Green) - For accents, highlights, supporting elements
   ========================================================================== */

/* Logo sizing */
.logo {
  max-height: 50px;
  width: auto;
}

.logo-icon {
  max-height: 40px;
  width: auto;
}

.footer-logo {
  max-height: 60px;
  width: auto;
}

/* Brand Color Applications */
/* Primary brand color for key interactive elements */
.common-button:hover,
.nav-link:hover .nav-line-div,
.text-link:hover,
.social-media-link:hover {
  color: #FDC02F !important;
  border-color: #FDC02F !important;
}

/* Secondary brand color for supporting elements */
.service-icon-box,
.process-count-box {
  background-color: #00897B;
}

/* Accent overlays with brand colors */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 192, 47, 0.1) 0%, rgba(0, 137, 123, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

/* Hero Banner Font Color - Bright Sky Blue with Text Shadow */
.hero-section .sub-heading.white-text,
.hero-section .h1-heading.home-hero-heading,
.hero-section .large-paragraph.home-hero-paragraph {
  color: #00BFFF !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 
               0 0 15px rgba(0, 0, 0, 0.3),
               0 0 25px rgba(0, 0, 0, 0.2);
}

/* Brand color accents for sections */
.bg-blue {
  background: linear-gradient(135deg, #00897B 0%, #006d61 100%);
}

/* Enhanced button styles with brand colors */
.common-button {
  background-color: #FDC02F;
  transition: all 0.3s ease;
}

.common-button:hover {
  background-color: #e5ad2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 192, 47, 0.3);
}

.common-button.white-button {
  background-color: white;
  color: #00897B;
}

.common-button.white-button:hover {
  background-color: #FDC02F;
  color: white;
}

/* Service cards with brand accents */
.service-card:hover {
  border-color: #FDC02F;
  box-shadow: 0 8px 24px rgba(253, 192, 47, 0.15);
}

/* Team section enhancement */
.team-section {
  background: linear-gradient(135deg, #00897B 0%, #006554 100%);
}

/* Brand color for links and interactive elements */
a[href^="tel:"],
a[href^="mailto:"] {
  color: #FDC02F;
  transition: color 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  color: #00897B;
}

/* Footer enhancements with brand colors */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.newsletter-button {
  background-color: #FDC02F !important;
}

.newsletter-button:hover {
  background-color: #00897B !important;
}

/* "We've Helped Make Happen" section - Sharp Brand Green with Text Shadow */
.section.bg-gray .common-heading-div .h2-heading {
  color: #10B981 !important;
  text-shadow: 3px 3px 12px rgba(16, 185, 129, 0.5),
               0 0 20px rgba(16, 185, 129, 0.3),
               0 0 30px rgba(16, 185, 129, 0.2),
               2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Accent lines and dividers with brand colors */
.gray-200-line,
.team-line,
.process-line {
  background: linear-gradient(90deg, #FDC02F 0%, #00897B 100%);
}

/* Navigation active state */
.nav-link.w--current .nav-line-div {
  background-color: #FDC02F;
}

/* Project and blog card hover effects */
.project-card-link:hover,
.blog-link-card:hover {
  border-color: #FDC02F;
}

.project-card-link:hover .arrow-box,
.blog-link-card:hover .arrow-box {
  background-color: #FDC02F;
}

/* Testimonial slider navigation */
.w-slider-nav-invert > div.w-active {
  background-color: #FDC02F !important;
}

/* FAQ accordion active state */
.accordion.w--open {
  border-left: 3px solid #FDC02F;
}

/* Brand color highlights for statistics */
.brand-700-text {
  color: #FDC02F !important;
}

.brand-800-text {
  color: #00897B !important;
}

/* Input focus states with brand colors */
input:focus,
textarea:focus,
select:focus {
  border-color: #FDC02F !important;
  box-shadow: 0 0 0 3px rgba(253, 192, 47, 0.1) !important;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .logo {
    max-height: 40px;
  }
  
  .footer-logo {
    max-height: 50px;
  }
  
  /* Ensure brand colors are visible on mobile */
  .hero-section {
    padding-bottom: 40px;
  }
}

/* Accessibility - Ensure sufficient contrast */
.white-text {
  color: #ffffff !important;
}

/* Loading and animation states */
@keyframes brandPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.service-icon-box:hover {
  animation: brandPulse 2s ease-in-out infinite;
}

/* Print styles */
@media print {
  .hero-section::before {
    display: none;
  }
}
