/**
 * Theme Patterns - From @thema/ Integration
 * GRPCMedia Theme
 * 
 * 🇹🇷 TR: @thema/ klasöründeki CSS pattern'lerinin entegrasyonu
 * 🇬🇧 EN: Integration of CSS patterns from @thema/ folder
 * 🎯 PURPOSE: Apply enterprise-level design patterns to Elementor theme
 * 
 * @package GRPCMedia
 * @version 1.0.0
 */

/* ==========================================================================
   HEADER PATTERNS - @thema/assets/css/esk-style-main.css
   ========================================================================== */

.grpc-header-top {
    background: var(--grpc-bg-light);
    border-bottom: 1px solid var(--grpc-border-light);
    padding: 10px 0;
}

.grpc-header-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.grpc-header-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--grpc-text-secondary);
}

.grpc-header-contact-item i {
    color: var(--grpc-primary);
    font-size: 16px;
}

.grpc-header-contact-item a {
    color: var(--grpc-text-secondary);
    transition: color var(--grpc-transition-base);
}

.grpc-header-contact-item a:hover {
    color: var(--grpc-primary);
}

.grpc-header-main {
    background: var(--grpc-bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: var(--grpc-z-sticky);
}

/* ==========================================================================
   HERO SLIDER PATTERNS - @thema/assets/css/hero-slider.css
   ========================================================================== */

.grpc-hero-slider {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.grpc-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.grpc-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(47, 36, 131, 0.4) 100%);
    z-index: 1;
}

.grpc-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.grpc-hero-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease-out;
}

.grpc-hero-subtitle {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.grpc-hero-description {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.grpc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.grpc-hero-btn-primary {
    background: #fff;
    color: var(--grpc-primary);
}

.grpc-hero-btn-primary:hover {
    background: var(--grpc-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.grpc-hero-btn-secondary {
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.grpc-hero-btn-secondary:hover {
    background: linear-gradient(135deg, var(--grpc-secondary) 0%, var(--grpc-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 36, 131, 0.4);
}

/* ==========================================================================
   SERVICE CARD PATTERNS - @thema/assets/css/services-section.css
   ========================================================================== */

.grpc-services-section {
    padding: 100px 0;
    background: var(--grpc-bg-white);
    position: relative;
}

.grpc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.grpc-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(47, 36, 131, 0.1);
    color: var(--grpc-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid rgba(47, 36, 131, 0.2);
}

.grpc-section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--grpc-text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.grpc-section-title .highlight {
    color: var(--grpc-primary);
    position: relative;
    display: inline-block;
}

.grpc-section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    border-radius: 2px;
}

.grpc-section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--grpc-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Grid */
.grpc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Service Card - Modern Hover Effect */
.grpc-service-card {
    background: var(--grpc-bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--grpc-shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.grpc-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.95) 0%, rgba(30, 24, 80, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.grpc-service-card:hover::before {
    opacity: 1;
}

.grpc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(47, 36, 131, 0.3);
}

.grpc-service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.grpc-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grpc-service-card:hover .grpc-service-image img {
    transform: scale(1.15) rotate(2deg);
}

.grpc-service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.grpc-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.1) 0%, rgba(30, 24, 80, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.grpc-service-icon i {
    font-size: 28px;
    color: var(--grpc-primary);
    transition: all 0.4s ease;
}

.grpc-service-card:hover .grpc-service-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(360deg) scale(1.1);
}

.grpc-service-card:hover .grpc-service-icon i {
    color: #fff;
}

.grpc-service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--grpc-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.grpc-service-card:hover .grpc-service-title {
    color: #fff;
}

.grpc-service-desc {
    font-size: 15px;
    color: var(--grpc-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    transition: color 0.4s ease;
}

.grpc-service-card:hover .grpc-service-desc {
    color: rgba(255, 255, 255, 0.9);
}

.grpc-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--grpc-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.grpc-service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.grpc-service-card:hover .grpc-service-link {
    color: #fff;
    gap: 12px;
}

.grpc-service-card:hover .grpc-service-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   FOOTER PATTERNS - @thema/assets/css/footer-modern.css
   ========================================================================== */

.grpc-footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
}

.grpc-footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.grpc-footer-company {
    max-width: 400px;
}

.grpc-footer-logo {
    margin-bottom: 25px;
}

.grpc-footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.grpc-footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.grpc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.grpc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.grpc-footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(47, 36, 131, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grpc-footer-contact-icon i {
    font-size: 18px;
    color: var(--grpc-primary);
}

.grpc-footer-contact-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.grpc-footer-contact-text a:hover {
    color: var(--grpc-primary);
}

.grpc-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.grpc-footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.grpc-footer-social-link:hover {
    background: var(--grpc-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 36, 131, 0.4);
}

.grpc-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.grpc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    border-radius: 2px;
}

.grpc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grpc-footer-links li {
    margin-bottom: 12px;
}

.grpc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.grpc-footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--grpc-primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.grpc-footer-links a:hover {
    color: var(--grpc-primary);
    padding-left: 10px;
}

.grpc-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.grpc-footer-bottom {
    padding: 30px 0;
}

.grpc-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.grpc-footer-copyright a {
    color: var(--grpc-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.grpc-footer-copyright a:hover {
    color: #fff;
}

/* ==========================================================================
   ICON BOX PATTERNS - Enhanced Design
   ========================================================================== */

.grpc-icon-box {
    background: var(--grpc-bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--grpc-shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.grpc-icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(47, 36, 131, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.grpc-icon-box:hover::before {
    transform: scale(1);
}

.grpc-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--grpc-shadow-xl);
    border-color: var(--grpc-primary);
}

.grpc-icon-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.1) 0%, rgba(30, 24, 80, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.grpc-icon-box-icon i {
    font-size: 36px;
    color: var(--grpc-primary);
    transition: all 0.4s ease;
}

.grpc-icon-box:hover .grpc-icon-box-icon {
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    transform: rotateY(360deg) scale(1.1);
}

.grpc-icon-box:hover .grpc-icon-box-icon i {
    color: #fff;
}

.grpc-icon-box-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--grpc-text-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.grpc-icon-box:hover .grpc-icon-box-title {
    color: var(--grpc-primary);
}

.grpc-icon-box-desc {
    font-size: 15px;
    color: var(--grpc-text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   BUTTON PATTERNS - Enhanced Variants
   ========================================================================== */

.grpc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.grpc-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.grpc-btn:hover::before {
    width: 300px;
    height: 300px;
}

.grpc-btn span {
    position: relative;
    z-index: 1;
}

.grpc-btn-primary {
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    color: #fff;
}

.grpc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 36, 131, 0.4);
}

.grpc-btn-outline {
    background: transparent;
    border-color: var(--grpc-primary);
    color: var(--grpc-primary);
}

.grpc-btn-outline:hover {
    background: var(--grpc-primary);
    color: #fff;
    transform: translateY(-2px);
}

.grpc-btn-rounded {
    border-radius: 50px;
}

.grpc-btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.grpc-btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* ==========================================================================
   STATS COUNTER PATTERNS - Animated Counters
   ========================================================================== */

.grpc-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grpc-accent) 0%, var(--grpc-theme-4) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.grpc-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 40px;
    opacity: 0.3;
}

.grpc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.grpc-stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.grpc-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.grpc-stat-icon {
    font-size: 48px;
    color: var(--grpc-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.grpc-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.grpc-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   CTA SECTION PATTERNS - Call to Action
   ========================================================================== */

.grpc-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.grpc-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.grpc-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.grpc-cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.grpc-cta-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.grpc-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   TESTIMONIAL PATTERNS - Modern Carousel
   ========================================================================== */

.grpc-testimonials-section {
    padding: 100px 0;
    background: var(--grpc-bg-light);
}

.grpc-testimonial-card {
    background: var(--grpc-bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--grpc-shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.grpc-testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 60px;
    color: rgba(47, 36, 131, 0.08);
    position: absolute;
    top: 30px;
    right: 30px;
}

.grpc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--grpc-shadow-xl);
}

.grpc-testimonial-text {
    font-size: 16px;
    color: var(--grpc-text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.grpc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.grpc-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--grpc-primary);
}

.grpc-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grpc-testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--grpc-text-primary);
    margin-bottom: 4px;
}

.grpc-testimonial-position {
    font-size: 14px;
    color: var(--grpc-text-muted);
}

/* ==========================================================================
   RESPONSIVE PATTERNS - Mobile First
   ========================================================================== */

@media (max-width: 1024px) {
    .grpc-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .grpc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grpc-services-section,
    .grpc-cta-section,
    .grpc-testimonials-section {
        padding: 60px 0;
    }
    
    .grpc-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grpc-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .grpc-footer-main {
        padding: 60px 0 30px;
    }
    
    .grpc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .grpc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   UTILITY PATTERNS - Reusable Classes
   ========================================================================== */

.grpc-gradient-text {
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grpc-overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.grpc-overlay-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.8) 0%, rgba(30, 24, 80, 0.8) 100%);
    z-index: 1;
}

.grpc-animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.grpc-animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.grpc-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grpc-hover-lift:hover {
    transform: translateY(-8px);
}

.grpc-glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ELEMENTOR SPECIFIC OVERRIDES
   ========================================================================== */

/* Elementor Section için gradient background support */
.elementor-section.grpc-gradient-bg {
    background: linear-gradient(135deg, var(--grpc-primary) 0%, var(--grpc-secondary) 100%);
}

/* Elementor Widget için modern spacing */
.elementor-widget-wrap > .elementor-element {
    margin-bottom: var(--grpc-spacing-md);
}

.elementor-widget-wrap > .elementor-element:last-child {
    margin-bottom: 0;
}

/* Elementor Button modernization */
.elementor-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elementor-button:hover {
    transform: translateY(-2px);
}



