/* ==========================================
   Independent Technology Advisory UAE
   Vendor-Neutral Governance Page
   ========================================== */

/* Hero Section */
.advisory-hero {
  background: linear-gradient(135deg, #0b2e4a 0%, #1a4b6d 100%);
  color: white;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.advisory-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.advisory-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.advisory-hero-text {
  flex: 1;
}

.advisory-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #ffd966;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.trust-bullet i {
  color: #ffd966;
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.advisory-hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.advisory-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.advisory-hero-image:hover img {
  transform: scale(1.03);
}

/* AI Summary Section */
.ai-summary-section {
  padding: 40px 0;
  background: #f0f7ff;
  border-bottom: 1px solid #d9e8f5;
}

.ai-summary-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-left: 5px solid #0b2e4a;
}

.ai-summary-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
}

.ai-summary-text strong {
  color: #0b2e4a;
}

/* What Is Section */
.what-is-section {
  padding: 80px 0;
  background: #ffffff;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.lead-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #0b2e4a;
  margin-bottom: 20px;
}

.differentiation-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  margin: 20px 0;
  border: 1px solid #e2e8f0;
}

.differentiation-box.highlighted {
  background: #e6f7ff;
  border: 1px solid #0b2e4a;
  box-shadow: 0 5px 15px rgba(11,46,74,0.1);
}

.diff-icon {
  font-size: 1.8rem;
}

.diff-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.diff-content p {
  color: #4a5568;
  margin: 0;
}

.what-is-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #0b2e4a;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #2d3748;
}

/* Free Services Section */
.free-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9ff, #e6f0fa);
}

.free-services-card {
  background: white;
  border-radius: 20px;
  padding: 60px 50px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #cbd5e0;
}

.free-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.free-services-card h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 15px;
  color: #0b2e4a;
}

.free-description {
  text-align: center;
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 40px;
}

.free-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.free-offer {
  text-align: center;
  padding: 20px 15px;
  background: #f8fafc;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: #0b2e4a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 15px;
}

.free-offer h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #1a202c;
}

.free-offer p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

.free-clarification {
  background: #fef9e7;
  border-left: 4px solid #f39c12;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #7f8c8d;
}

.free-clarification i {
  color: #f39c12;
  margin-right: 8px;
}

.free-cta {
  text-align: center;
}

/* Core Services Section */
.core-services-section {
  padding: 80px 0;
  background: #ffffff;
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-pillar {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-pillar:hover {
  border-color: #0b2e4a;
  box-shadow: 0 10px 30px rgba(11,46,74,0.1);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #cbd5e0;
  padding-bottom: 15px;
}

.pillar-icon {
  width: 50px;
  height: 50px;
  background: #0b2e4a;
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.pillar-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #1a202c;
  font-weight: 600;
}

.pillar-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-services li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #2d3748;
}

.pillar-services li i {
  color: #28a745;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Industries Section */
.industries-section {
  padding: 60px 0;
  background: #f8fafc;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.industry-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.industry-item:hover {
  border-color: #0b2e4a;
  transform: translateY(-3px);
}

.industry-item i {
  display: block;
  font-size: 2rem;
  color: #0b2e4a;
  margin-bottom: 10px;
}

/* Technologies Section */
.technologies-section {
  padding: 80px 0;
  background: #ffffff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-category {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tech-category:hover {
  border-color: #0b2e4a;
  box-shadow: 0 8px 20px rgba(11,46,74,0.08);
}

.tech-category h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b2e4a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-category h3 i {
  font-size: 1.3rem;
}

.tech-category p {
  color: #4a5568;
  margin: 0;
  font-size: 0.95rem;
}

/* When Need Section */
.when-need-section {
  padding: 80px 0;
  background: #f0f7ff;
}

.triggers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.trigger-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.trigger-card:hover {
  transform: translateY(-5px);
  border-color: #0b2e4a;
  box-shadow: 0 15px 30px rgba(11,46,74,0.1);
}

.trigger-card.highlighted {
  border: 2px solid #f39c12;
}

.trigger-number {
  font-size: 2rem;
  font-weight: 700;
  color: #cbd5e0;
  margin-bottom: 15px;
}

.trigger-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a202c;
}

.trigger-card p {
  color: #4a5568;
  margin: 0;
  font-size: 0.95rem;
}

/* Linking Section */
.linking-section {
  padding: 60px 0;
  background: #ffffff;
}

.linking-box {
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #cbd5e0;
}

.linking-box h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #0b2e4a;
}

.linking-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border-radius: 50px;
  color: #0b2e4a;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #cbd5e0;
  transition: all 0.3s ease;
}

.link-item:hover {
  background: #0b2e4a;
  color: white;
  border-color: #0b2e4a;
  transform: translateY(-2px);
}

.link-item i {
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #0b2e4a;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* Closing CTA */
.closing-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b2e4a, #1a4b6d);
  color: white;
}

.closing-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.closing-card h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.closing-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.closing-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 35px;
}

.closing-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.closing-benefits i {
  color: #ffd966;
}

.closing-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.closing-phone {
  font-size: 1.1rem;
  margin-top: 20px;
  opacity: 0.8;
}

.closing-phone i {
  margin-right: 8px;
}

/* Button Extensions */
.btn-xlarge {
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 50px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .advisory-hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .advisory-hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-trust-bullets {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 30px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .what-is-grid {
    grid-template-columns: 1fr;
  }
  
  .free-services-card {
    padding: 50px 30px;
  }
  
  .free-services-card h2 {
    font-size: 1.8rem;
  }
  
  .service-pillars {
    grid-template-columns: 1fr;
  }
  
  .closing-card h2 {
    font-size: 2rem;
  }
  
  .closing-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .closing-buttons a {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .advisory-hero {
    padding: 120px 0 60px;
  }
  
  .advisory-hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .free-offers-grid {
    grid-template-columns: 1fr;
  }
  
  .free-services-card {
    padding: 40px 20px;
  }
  
  .free-badge {
    width: 90%;
    text-align: center;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .triggers-grid {
    grid-template-columns: 1fr;
  }
  
  .linking-links {
    flex-direction: column;
  }
  
  .link-item {
    width: 100%;
    justify-content: center;
  }
  
  .closing-card {
    padding: 40px 20px;
  }
  
  .closing-benefits {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .advisory-hero-text h1 {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .free-services-card h2 {
    font-size: 1.5rem;
  }
  
  .pillar-header {
    flex-direction: column;
    text-align: center;
  }
  
  .pillar-services li {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}