/**
 * Advanced Widget Kit - Frontend Styles
 * 
 * @package Advanced_Widget_Kit
 * @since 1.0.0
 */

/* ==========================================================================
   Button Widget
   ========================================================================== */

.awke-button-wrapper {
    display: inline-block;
}

.awke-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.awke-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.awke-button:active,
.awke-button:focus {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    outline: none;
}

.awke-button.awke-clicked {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.1s ease !important;
}

.awke-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.awke-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.awke-button-text {
    display: inline-block;
}

/* Button Sizes */
.awke-size-xs {
    padding: 8px 16px;
    font-size: 12px;
}

.awke-size-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.awke-size-md {
    padding: 12px 24px;
    font-size: 16px;
}

.awke-size-lg {
    padding: 14px 28px;
    font-size: 18px;
}

.awke-size-xl {
    padding: 16px 32px;
    font-size: 20px;
}

/* ==========================================================================
   Testimonial Widget
   ========================================================================== */

/* Base testimonial widget styles */
.awke-testimonial-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

/* Single testimonial specific (non-carousel) */
.awke-single-testimonial.awke-testimonial-widget {
    max-width: 600px;
    margin: 0 auto;
}

.awke-testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
    font-style: italic;
}

.awke-client-image {
    margin-bottom: 15px;
}

.awke-client-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.awke-client-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.awke-client-title {
    font-size: 14px;
    color: #777;
    margin: 0 0 15px 0;
}

.awke-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.awke-star {
    color: #ffc107;
    font-size: 16px;
}

.awke-star.empty {
    color: #e0e0e0;
}

/* ==========================================================================
   DESIGN STYLES (6 Different Patterns)
   ========================================================================== */

/* ===== 1. CLASSIC DESIGN (Default) ===== */
.awke-testimonial-widget.awke-design-classic {
    text-align: center;
}

.awke-testimonial-widget.awke-design-classic .awke-testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: #e0e0e0;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.awke-testimonial-widget.awke-design-classic .awke-client-image {
    margin-bottom: 15px;
}

.awke-testimonial-widget.awke-design-classic .awke-rating {
    justify-content: center;
}

/* ===== 2. CARD DESIGN ===== */
.awke-testimonial-widget.awke-design-card {
    text-align: left;
}

/* Card border modifiers */
.awke-testimonial-widget.awke-card-border-left {
    border-left: 4px solid #667eea;
}

.awke-testimonial-widget.awke-card-border-right {
    border-right: 4px solid #667eea;
}

.awke-testimonial-widget.awke-card-border-top {
    border-top: 4px solid #667eea;
}

.awke-testimonial-widget.awke-card-border-bottom {
    border-bottom: 4px solid #667eea;
}

.awke-testimonial-widget.awke-design-card .awke-testimonial-content {
    text-align: left;
    margin-bottom: 20px;
    font-style: normal;
}

.awke-testimonial-widget.awke-design-card .awke-testimonial-content::before {
    display: none;
}

.awke-testimonial-widget.awke-design-card .awke-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.awke-testimonial-widget.awke-design-card .awke-client-image {
    margin: 0;
    flex-shrink: 0;
}

/* Card image position modifiers */
.awke-testimonial-widget.awke-card-img-left .awke-client-image {
    order: -1;
}

.awke-testimonial-widget.awke-card-img-right .awke-client-image {
    order: 1;
}

.awke-testimonial-widget.awke-design-card .awke-client-image img {
    width: 60px;
    height: 60px;
}

.awke-testimonial-widget.awke-design-card .awke-client-name,
.awke-testimonial-widget.awke-design-card .awke-client-title {
    text-align: left;
    margin: 0;
}

.awke-testimonial-widget.awke-design-card .awke-rating {
    justify-content: flex-start;
    margin-top: 5px;
}

/* ===== 3. BUBBLE DESIGN ===== */
.awke-testimonial-widget.awke-design-bubble {
    padding-top: 40px;
}

.awke-testimonial-widget.awke-design-bubble .awke-testimonial-content {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
}

.awke-testimonial-widget.awke-design-bubble .awke-testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f8f9fa;
}

/* Bubble tail position modifiers */
.awke-testimonial-widget.awke-bubble-tail-center .awke-testimonial-content::after {
    left: 50%;
    transform: translateX(-50%);
}

.awke-testimonial-widget.awke-bubble-tail-left .awke-testimonial-content::after {
    left: 30%;
}

.awke-testimonial-widget.awke-bubble-tail-right .awke-testimonial-content::after {
    right: 30%;
    left: auto;
}

.awke-testimonial-widget.awke-design-bubble .awke-client-image {
    margin-top: 10px;
}

/* ===== 4. MINIMAL DESIGN ===== */
.awke-testimonial-widget.awke-design-minimal {
    background: transparent;
    box-shadow: none;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
}

.awke-testimonial-widget.awke-design-minimal .awke-testimonial-content {
    font-style: normal;
    margin-bottom: 15px;
}

.awke-testimonial-widget.awke-design-minimal .awke-testimonial-content::before {
    display: none;
}

.awke-testimonial-widget.awke-design-minimal .awke-client-image {
    display: none;
}

.awke-testimonial-widget.awke-design-minimal .awke-client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.awke-testimonial-widget.awke-design-minimal .awke-client-name {
    font-size: 16px;
    margin: 0;
}

.awke-testimonial-widget.awke-design-minimal .awke-client-title::before {
    content: '- ';
}

.awke-testimonial-widget.awke-design-minimal .awke-client-title {
    display: inline;
    margin: 0;
}

.awke-testimonial-widget.awke-design-minimal .awke-rating {
    display: inline-flex;
}

/* ===== 5. IMAGE LEFT DESIGN ===== */
.awke-testimonial-widget.awke-design-image-left {
    display: flex;
    gap: 25px;
    text-align: left;
}

.awke-testimonial-widget.awke-design-image-left .awke-client-image {
    margin: 0;
    flex-shrink: 0;
}

/* Image side position modifiers */
.awke-testimonial-widget.awke-img-side-left .awke-client-image {
    order: -1;
}

.awke-testimonial-widget.awke-img-side-right .awke-client-image {
    order: 1;
}

.awke-testimonial-widget.awke-design-image-left .awke-client-image img {
    width: 100px;
    height: 100px;
}

.awke-testimonial-widget.awke-design-image-left .awke-testimonial-content {
    text-align: left;
}

.awke-testimonial-widget.awke-design-image-left .awke-testimonial-content::before {
    left: 0;
    top: -10px;
}

.awke-testimonial-widget.awke-design-image-left .awke-rating {
    justify-content: flex-start;
}

/* ===== 6. IMAGE TOP DESIGN ===== */
.awke-testimonial-widget.awke-design-image-top {
    padding-top: 60px;
}

.awke-testimonial-widget.awke-design-image-top .awke-client-image {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.awke-testimonial-widget.awke-design-image-top .awke-client-image img {
    width: 100px;
    height: 100px;
    border: 5px solid #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

/* Testimonial Carousel */
.awke-testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awke-testimonial-slides {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    width: 100%;
    will-change: transform;
}

.awke-testimonial-slide {
    flex: 0 0 100%;
    flex-shrink: 0;
    min-width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.awke-testimonial-carousel[data-slides="2"] .awke-testimonial-slide {
    flex: 0 0 50%;
    min-width: 50%;
    max-width: 50%;
}

.awke-testimonial-carousel[data-slides="3"] .awke-testimonial-slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    max-width: 33.333%;
}

/* Carousel Navigation */
.awke-carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.awke-carousel-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.awke-carousel-arrow:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.awke-carousel-prev {
    transform: translateX(-50%) translateY(-50%);
    left: 10px;
}

.awke-carousel-next {
    transform: translateX(50%) translateY(-50%);
    right: 10px;
}

.awke-carousel-arrow:hover.awke-carousel-prev {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.awke-carousel-arrow:hover.awke-carousel-next {
    transform: translateX(50%) translateY(-50%) scale(1.1);
}


/* Carousel Animations */
.awke-testimonial-carousel.awke-animating .awke-testimonial-slides {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Multiple Slides Layout - Override base styles for carousel items */
.awke-testimonial-carousel .awke-testimonial-widget {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .awke-testimonial-carousel[data-slides="3"] .awke-testimonial-slide,
    .awke-testimonial-carousel[data-slides="2"] .awke-testimonial-slide {
        flex: 0 0 100%;
    }
    
    .awke-carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .awke-carousel-prev {
        left: 5px;
    }
    
    .awke-carousel-next {
        right: 5px;
    }
}

/* ==========================================================================
   Pricing Table Widget
   ========================================================================== */

.awke-pricing-table {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.awke-pricing-table:hover {
    transform: translateY(-5px);
}

.awke-plan-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
}

.awke-plan-name {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.awke-price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.awke-price-period {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.awke-features {
    padding: 30px 20px;
}

.awke-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.awke-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.awke-features li:last-child {
    border-bottom: none;
}

.awke-features li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    margin-right: 10px;
}

.awke-plan-button {
    padding: 20px;
    background: #f8f9fa;
}

.awke-plan-button .awke-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Image Box Widget
   ========================================================================== */

.awke-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.awke-image-box:hover {
    text-decoration: none;
    color: inherit;
}

.awke-image-box-image {
    position: relative;
    overflow: hidden;
}

.awke-image-box-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.awke-image-box-content {
    padding: 25px;
    background: white;
}

.awke-image-box-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.awke-image-box-description {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Hover Effects */
.awke-hover-zoom:hover .awke-image-box-image img {
    transform: scale(1.1);
}

.awke-hover-slide-up .awke-image-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.awke-hover-slide-up:hover .awke-image-box-content {
    transform: translateY(0);
}

.awke-hover-slide-up .awke-image-box-title,
.awke-hover-slide-up .awke-image-box-description {
    color: white;
}

.awke-hover-fade .awke-image-box-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.awke-hover-fade:hover .awke-image-box-content {
    opacity: 1;
}

.awke-hover-fade .awke-image-box-title,
.awke-hover-fade .awke-image-box-description {
    color: white;
}

/* ==========================================================================
   Icon List Widget
   ========================================================================== */

.awke-icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.awke-icon-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.awke-icon-list-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.awke-icon-list-item:last-child {
    border-bottom: none;
}

.awke-icon-list-item:hover {
    padding-left: 10px;
    background: #f8f9fa;
}

.awke-icon-list-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.awke-icon-list-item a:hover {
    text-decoration: none;
    color: #667eea;
}

.awke-icon-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    margin-right: 15px;
    color: #667eea;
    font-size: 16px;
}

.awke-icon-list-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .awke-button {
        width: 100%;
        justify-content: center;
    }
    
    .awke-testimonial-widget,
    .awke-pricing-table {
        margin-bottom: 20px;
    }
    
    .awke-image-box-image img {
        height: 200px;
    }
    
    .awke-price {
        font-size: 36px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.awke-text-center {
    text-align: center;
}

.awke-text-left {
    text-align: left;
}

.awke-text-right {
    text-align: right;
}

.awke-mb-0 {
    margin-bottom: 0 !important;
}

.awke-mb-1 {
    margin-bottom: 10px !important;
}

.awke-mb-2 {
    margin-bottom: 20px !important;
}

.awke-mb-3 {
    margin-bottom: 30px !important;
}

/* ==========================================================================
   Advanced Header Widget
   ========================================================================== */

.awke-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header Position Classes */
.awke-header-relative {
    position: relative;
}

.awke-header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.awke-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.awke-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Layouts */
.awke-header-logo-left-menu-right {
    justify-content: space-between;
}

.awke-header-logo-center-menu-center {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.awke-header-logo-left-menu-center {
    justify-content: space-between;
}

.awke-header-logo-right-menu-left {
    flex-direction: row-reverse;
    justify-content: space-between;
}

/* Logo Styles */
.awke-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.awke-header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.awke-header-logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.awke-header-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.awke-header-logo:hover .awke-header-logo-text {
    color: #007cba;
}

/* Menu Styles */
.awke-header-menu {
    display: flex;
    align-items: center;
}

.awke-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.awke-menu-item {
    position: relative;
}

.awke-menu-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.awke-menu-item a:hover {
    color: #007cba;
}

.awke-menu-item a i,
.awke-menu-item a svg {
    margin-right: 8px;
    font-size: 14px;
}

/* CTA Button Styles */
.awke-header-cta-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.awke-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #007cba;
}

.awke-header-cta:hover {
    background: #005a87;
    border-color: #005a87;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

/* Mobile Toggle */
.awke-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
}

.awke-mobile-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awke-hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.awke-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.awke-mobile-toggle-btn.active .awke-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.awke-mobile-toggle-btn.active .awke-hamburger span:nth-child(2) {
    opacity: 0;
}

.awke-mobile-toggle-btn.active .awke-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header Styles */
.awke-header-default {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.awke-header-transparent {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.awke-header-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.awke-header-minimal {
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Sticky Header */
.awke-header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Body padding for fixed/absolute headers */
body.awke-header-fixed-active {
    padding-top: 80px; /* Default header height */
}

body.awke-header-absolute-active {
    padding-top: 0; /* No padding for absolute */
}

.awke-header-sticky.awke-sticky-slide-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.awke-header-sticky.awke-sticky-slide-down.sticky-active {
    transform: translateY(0);
}

.awke-header-sticky.awke-sticky-fade-in {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.awke-header-sticky.awke-sticky-fade-in.sticky-active {
    opacity: 1;
}

.awke-header-sticky.awke-sticky-scale {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.awke-header-sticky.awke-sticky-scale.sticky-active {
    transform: scale(1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .awke-header-container {
        padding: 0 15px;
    }
    
    .awke-mobile-toggle {
        display: flex;
    }
    
    .awke-header-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
        z-index: 999;
    }
    
    .awke-header-menu.active {
        display: flex;
    }
    
    .awke-menu-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .awke-menu-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .awke-menu-item:last-child {
        border-bottom: none;
    }
    
    .awke-menu-item a {
        padding: 15px 0;
        width: 100%;
        justify-content: flex-start;
    }
    
    .awke-header-cta-wrapper {
        margin-top: 20px;
        width: 100%;
    }
    
    .awke-header-cta {
        width: 100%;
        justify-content: center;
    }
    
    .awke-header-logo img {
        max-height: 50px;
    }
    
    .awke-header-logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .awke-header-container {
        padding: 0 10px;
    }
    
    .awke-header-logo img {
        max-height: 40px;
    }
    
    .awke-header-logo-text {
        font-size: 18px;
    }
    
    .awke-header-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Header Layout Responsive */
@media (max-width: 768px) {
    .awke-header-logo-center-menu-center {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
    
    .awke-header-logo-center-menu-center .awke-header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }
}

/* ==========================================================================
   Advanced Heading Widget
   ========================================================================== */

.awke-advanced-heading {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

/* Text Alignment */
.awke-text-left {
    text-align: left;
}

.awke-text-center {
    text-align: center;
}

.awke-text-right {
    text-align: right;
}

/* Gradient Text Effect */
.awke-gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Outline Text Effect */
.awke-outline-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #000;
    color: transparent;
}

/* Shadow Text Effect */
.awke-shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 3D Text Effect */
.awke-3d-text {
    text-shadow: 
        1px 1px 0 #ccc,
        2px 2px 0 #c9c9c9,
        3px 3px 0 #bbb,
        4px 4px 0 #b9b9b9,
        5px 5px 0 #aaa,
        6px 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        1px 1px 3px rgba(0,0,0,.3),
        3px 3px 5px rgba(0,0,0,.2),
        5px 5px 10px rgba(0,0,0,.25);
}

/* Neon Glow Effect */
.awke-neon-text {
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Split Text Effect */
.awke-split-text {
    display: inline-block;
    overflow: hidden;
}

.awke-split-text span {
    display: inline-block;
    transform: translateY(100%);
    animation: splitTextUp 0.8s ease forwards;
}

@keyframes splitTextUp {
    to {
        transform: translateY(0);
    }
}

/* Animation Classes */
.awke-animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.awke-animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.awke-animate-slide-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.awke-animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.awke-animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 1s ease forwards;
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.awke-animate-zoom-in {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.awke-animate-zoom-out {
    opacity: 0;
    transform: scale(1.5);
    animation: zoomOut 1s ease forwards;
}

@keyframes zoomOut {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.awke-animate-rotate {
    opacity: 0;
    transform: rotate(-180deg);
    animation: rotate 1s ease forwards;
}

@keyframes rotate {
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.awke-animate-bounce {
    opacity: 0;
    animation: bounce 1s ease forwards;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Typewriter Effect */
.awke-animate-typewriter {
    overflow: hidden;
    border-right: 2px solid #000;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #000; }
}

/* Wave Effect */
.awke-animate-wave span {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

.awke-animate-wave span:nth-child(1) { animation-delay: 0.1s; }
.awke-animate-wave span:nth-child(2) { animation-delay: 0.2s; }
.awke-animate-wave span:nth-child(3) { animation-delay: 0.3s; }
.awke-animate-wave span:nth-child(4) { animation-delay: 0.4s; }
.awke-animate-wave span:nth-child(5) { animation-delay: 0.5s; }

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hover Effects */
.awke-hover-scale {
    transition: transform 0.3s ease;
}

.awke-hover-rotate {
    transition: transform 0.3s ease;
}

.awke-hover-glow {
    transition: text-shadow 0.3s ease;
}

.awke-hover-underline {
    position: relative;
    transition: all 0.3s ease;
}

.awke-hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.awke-hover-underline.awke-underline-active::after {
    width: 100%;
}

.awke-hover-color-change {
    transition: color 0.3s ease;
}

.awke-hover-shimmer {
    position: relative;
    overflow: hidden;
}

.awke-hover-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.awke-hover-shimmer.awke-shimmer-active::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awke-advanced-heading {
        font-size: 2rem !important;
    }
    
    .awke-3d-text {
        text-shadow: 
            1px 1px 0 #ccc,
            2px 2px 0 #c9c9c9,
            3px 3px 0 #bbb;
    }
}

@media (max-width: 480px) {
    .awke-advanced-heading {
        font-size: 1.5rem !important;
    }
}