/* Custom styles for PricingWorks Summit 2025 */

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

/* Banner Section Redesign */
.banner-style-five {
    background: url('../images/banner/pw_summit_bg.jpg') center center/cover no-repeat;
    padding: 80px 0 60px 0;
    min-height: 500px;
    position: relative;
}

.banner-style-five .content-box h1 {
    color: var(--logo-color);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-style-five .hero-subtitle {
    color: var(--logo-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-style-five .hero-tagline {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
}

.banner-style-five .soft-content p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Banner content positioned to the left */
.banner-style-five .content-column {
    text-align: left;
    max-width: 600px;
    margin: 0;
    padding-left: 50px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .banner-style-five {
        min-height: auto;
        padding: 60px 0 40px 0;
    }
    
    .banner-style-five .content-column {
        text-align: center;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .banner-style-five .content-box h1 {
        font-size: 36px;
    }
    
    .banner-style-five .hero-subtitle {
        font-size: 24px;
    }
    
    .banner-style-five .hero-tagline {
        font-size: 16px;
    }
}

/* Simple Event Header Styles */
.event-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-header .logo img {
  height: 50px;
  width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.nav-list li a {
    color: var(--logo-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list li a:hover {
    color: var(--contrast-color);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--contrast-color);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.register-btn {
  color: #f4b942 !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.register-btn:hover {
  color: #e6a83a !important;
}

.register-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f4b942;
  transition: width 0.3s ease;
}

.register-btn:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--logo-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--logo-color);
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.mobile-close {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-close span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-close span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-close span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 20px;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 0;
}

.mobile-nav ul li a:hover {
    color: var(--contrast-color);
    padding-left: 10px;
}

.mobile-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-email {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}

.mobile-social {
    display: flex;
    gap: 15px;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--contrast-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .event-header .logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
    
    .event-header {
        padding: 10px 0;
    }
    
    .event-header .logo img {
        height: 40px;
    }
}

/* About Section Redesign */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 40px;
  text-align: center;
}

.lead-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--logo-color);
  font-weight: 500;
  margin: 0;
}

/* About Cards Grid */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-card {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--contrast-color);
  transition: all 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-card h3 {
  color: var(--logo-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.about-card p strong {
  color: var(--logo-color);
  font-weight: 700;
}

.focus-questions p {
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.focus-questions p:last-child {
  margin-bottom: 0;
}

/* Partner Info Box Styles */
.partner-info-box {
  background: transparent;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.partner-info-box:hover {
  transform: translateY(-5px);
}

.partner-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.partner-logo img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-info-box h4 {
  color: var(--logo-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.partner-info-box .text p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Speaker List Styles */
.speaker-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.speaker-item {
  background: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--contrast-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
}

.speaker-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.speaker-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px 0 20px 20px;
  border: 3px solid var(--contrast-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.speaker-item:hover .speaker-photo img {
  transform: scale(1.05);
}

.speaker-info {
  flex: 1;
  padding: 20px 20px 20px 0;
}

.speaker-info h4 {
  color: var(--logo-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.speaker-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Service Style Two Override */
.service-style-two {
  background: #fff !important;
}

/* Topic Items Styles */
.topic-item {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.topic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.topic-item h4 {
  color: var(--logo-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.topic-item p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Why Join Section Redesign */
.why-join-content {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--logo-color);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-item p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.benefit-item p strong {
    color: #fff;
    font-weight: 700;
    opacity: 1;
}

/* Standardized section spacing */
#about {
    margin-top: -10px;
    padding-top: 50px;
    margin-bottom: 30px;
}

#why-join {
    margin-top: -30px;
    padding-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

#topics {
    margin-top: -30px;
    padding-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

#partners {
    margin-top: -30px;
    padding-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

#agenda {
    margin-top: -30px;
    padding-top: 50px;
    margin-bottom: 30px;
}

#speakers {
    margin-top: -30px;
    padding-top: 30px;
    margin-bottom: 50px;
}

#details {
    margin-top: -30px;
    padding-top: 30px;
    margin-bottom: 60px;
}

/* Simple Footer Design */
.simple-footer {
    background: var(--logo-color);
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.simple-footer .auto-container {
    max-width: 1000px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    text-align: center;
    flex: 1;
}

.footer-info p {
    color: #fff;
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--contrast-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .footer-logo {
        order: 1;
    }
}

/* Modern Register Button */
.theme-btn.style-ten {
    background: #f4b942 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.theme-btn.style-ten:hover {
    background: #e6a83a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(244, 185, 66, 0.4) !important;
    color: #fff !important;
}

.theme-btn.style-ten::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.theme-btn.style-ten:hover::before {
    left: 100%;
}

/* Agenda Section Styles */
.agenda-session {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.agenda-session:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.agenda-session h3 {
    color: var(--logo-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--contrast-color);
}

.agenda-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--contrast-color);
    transition: all 0.3s ease;
}

.agenda-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.agenda-item .time {
    min-width: 100px;
    font-weight: 700;
    color: var(--logo-color);
    font-size: 14px;
    margin-right: 20px;
    padding-top: 5px;
}

.agenda-item .content {
    flex: 1;
}

.agenda-item .content h4 {
    color: var(--logo-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.agenda-item .content p {
    color: var(--p-color);
    font-size: 14px;
    margin-bottom: 8px;
}

.agenda-item .content .duration {
    display: inline-block;
    background: var(--contrast-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.agenda-item .description {
    margin-top: 10px;
    padding: 15px;
    background: rgba(244, 185, 66, 0.1);
    border-radius: 5px;
    border-left: 3px solid var(--contrast-color);
}

.agenda-item .description p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Event Details Section Enhancements */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-box .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--contrast-color), var(--contrast-color-gradient));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-box:hover .icon-box {
    transform: scale(1.1);
}

.contact-info-box .icon-box i {
    font-size: 30px;
    color: #fff;
}

.contact-info-box h4 {
    color: var(--logo-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-box .text p {
    color: var(--p-color);
    line-height: 1.6;
}

.contact-info-box .text strong {
    color: var(--logo-color);
    font-weight: 700;
}

/* Key Topics Section Enhancements */
.service-block {
    margin-bottom: 30px;
}

.service-block-two .inner-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-block-two .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-block-two .inner-box .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--contrast-color), var(--contrast-color-gradient));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-block-two .inner-box:hover .icon-box {
    transform: scale(1.1);
}

.service-block-two .inner-box .icon-box i {
    font-size: 30px;
    color: #fff;
}

.service-block-two .inner-box h4 {
    color: var(--logo-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-block-two .inner-box .text p {
    color: var(--p-color);
    line-height: 1.6;
}

/* Speaker Section Enhancements */
.team-block-one .inner-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-block-one .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-block-one .inner-box .lower-content {
    padding: 20px;
}

.team-block-one .inner-box .lower-content h4 {
    color: var(--logo-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-block-one .inner-box .lower-content .text p strong {
    color: var(--contrast-color);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
        text-align: center;
    }
    
    .agenda-item .time {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .agenda-session {
        padding: 20px;
    }
    
    .contact-info-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Why Join Section Mobile */
    .benefit-item {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .benefit-item h4 {
        font-size: 18px;
    }
    
    .benefit-item p {
        font-size: 14px;
    }
    
    /* About Cards Grid Mobile */
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-card {
        padding: 18px;
    }
    
    .about-card h3 {
        font-size: 16px;
    }
    
    .about-card p {
        font-size: 13px;
    }
    
    /* Speaker Section Mobile */
    .speaker-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .speaker-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .speaker-photo {
        margin: 20px auto 0;
        width: 80px;
        height: 80px;
    }
    
    .speaker-info {
        padding: 0 20px 20px;
    }
    
    .speaker-info h4 {
        font-size: 16px;
    }
    
    .speaker-info p {
        font-size: 13px;
    }
}

/* Animation Enhancements */
.wow {
    visibility: hidden;
}

/* Custom Button Styles */
.theme-btn.style-ten {
    background: linear-gradient(135deg, var(--contrast-color), var(--contrast-color-gradient));
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.theme-btn.style-ten:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.bg-color-1 {
    background: #f8f9fa;
}

/* Header Enhancements */
.main-header.style-five .main-menu .navigation > li > a {
    color: var(--logo-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header.style-five .main-menu .navigation > li > a:hover {
    color: var(--contrast-color);
}

/* Footer Enhancements */
.footer-style-four {
    background: var(--logo-color);
    color: #fff;
}

.footer-style-four .footer-widget h3 {
    color: #fff;
}

.footer-style-four .footer-widget .widget-content ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-style-four .footer-widget .widget-content ul li a:hover {
    color: var(--contrast-color);
}
