/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F46530;
    --primary-gradient: linear-gradient(135deg, #F46530 0%, #FF7A50 100%);
    --secondary-gradient: linear-gradient(135deg, #F46530 0%, #FF7A50 100%);
    --white-color: #FFFFFF;
    --black-color: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 25px rgba(244, 101, 48, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Featured post container override */
.featured-post .container {
    max-width: 1600px;
    padding: 0;
    width: 100%;
}

/* Top Header */
.top-header {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-item i {
    color: var(--white-color);
    background: rgba(255,255,255,0.2);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.info-item:hover i {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Navigation */
.navbar {
    background-color: var(--white-color);
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 101, 48, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(244, 101, 48, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(244, 101, 48, 0.05);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    box-shadow: var(--shadow-heavy);
    border-radius: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid rgba(244, 101, 48, 0.1);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:hover {
    background: linear-gradient(90deg, rgba(244, 101, 48, 0.05), transparent);
}

.dropdown-menu a {
    display: block;
    padding: 15px 25px;
    color: var(--black-color);
    transition: var(--transition);
    border-radius: 0;
    background: none;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: none;
    color: var(--primary-color);
    transform: translateX(10px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(244, 101, 48, 0.4) 100%);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(244, 101, 48, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--white-color);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::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: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(244, 101, 48, 0.5);
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form h3 {
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 101, 48, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white-color);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 5px 0;
}

.g-recaptcha > div {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 768px) {
    .g-recaptcha > div {
        transform: scale(0.8);
    }
    
    .nav-brand .logo {
        height: 60px;
    }
    
    .footer-logo img {
        height: 55px;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 101, 48, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 101, 48, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-colored);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--gray-dark);
    line-height: 1.2;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 50px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-item p {
    color: var(--gray-medium);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn {
    display: inline-block;
    background: var(--black-color);
    color: var(--white-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Services */
.services {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(244, 101, 48, 0.8)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.services::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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(244,101,48,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

.services .section-header h2,
.services .section-header p {
    color: var(--white-color);
}

.services .section-header h2::after {
    background: var(--white-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-heavy);
}

.service-icon i {
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.service-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

/* Client Logos */
.client-logos {
    background: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.client-logos::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="20" cy="20" r="1" fill="rgba(244,101,48,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(244,101,48,0.05)"/></svg>') repeat;
}

.client-logos h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.logos-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.logos-carousel {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: autoSlide 20s linear infinite;
    position: relative;
    z-index: 1;
    width: max-content;
}

.logos-carousel:hover {
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes autoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-slide {
    transition: var(--transition);
    filter: grayscale(100%) opacity(0.7);
    flex-shrink: 0;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.logo-slide img {
    max-height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

/* Contact Section */
.contact-section {
    background: var(--black-color);
    position: relative;
    overflow: hidden;
}

.contact-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"><polygon points="0,0 100,0 80,100 0,80" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat;
    background-size: cover;
}

.contact-section .section-header h2 {
    color: var(--primary-color);
}

.contact-section .section-header p {
    color: var(--white-color);
}

.contact-section .section-header h2::after {
    background: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    min-width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 101, 48, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-btn::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: var(--transition);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-form {
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
        padding: 25px 20px !important;
    }
    
    .hero-form .contact-form .form-group {
        margin-bottom: 15px !important;
    }
    
    .hero-form .g-recaptcha > div {
        transform: scale(0.8) !important;
    }
    
    .hero-form .submit-btn {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .logos-carousel {
        gap: 30px;
    }
}

/* Footer */
.footer {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 65px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-legal a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-medium);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        background: var(--gray-light);
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
}

.mission-vision {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.team {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-member {
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.member-info {
    padding: 15px 10px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray-medium);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background-color: var(--gray-light);
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.statistics {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-item p {
    opacity: 0.9;
}

.choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.choose-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.choose-info h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.choose-info p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.choose-image img {
    width: 100%;
    border-radius: 15px;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-number,
.contact-email,
.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin: 10px 0;
}

.contact-hours,
.contact-response,
.contact-support {
    color: var(--gray-medium);
    font-size: 14px;
    margin-top: 5px;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.form-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--primary-color);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black-color);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.faq-section {
    padding: 80px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h4 {
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    background-color: var(--gray-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Service Page Styles */
.service-hero {
    background-color: var(--gray-light);
    padding: 100px 0;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
}

.service-cta {
    display: flex;
    gap: 20px;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--black-color);
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid var(--black-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}

.service-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-overview {
    padding: 80px 0;
}

.service-offerings {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offering-card {
    background-color: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-5px);
}

.offering-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.offering-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.service-process {
    padding: 80px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 40px;
    background-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.service-pricing {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features .fa-check {
    color: var(--primary-color);
}

.pricing-features .fa-times {
    color: var(--gray-medium);
}

.pricing-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.pricing-button:hover {
    background-color: var(--black-color);
}

.service-faq {
    padding: 80px 0;
}

.service-cta {
    background: linear-gradient(135deg, var(--black-color) 0%, var(--primary-color) 100%);
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta .secondary-button {
    border-color: var(--white-color);
    color: var(--white-color);
}

.service-cta .secondary-button:hover {
    background-color: var(--white-color);
    color: var(--black-color);
}

@media (max-width: 768px) {
    .mv-grid,
    .choose-content,
    .contact-form-content,
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-form {
        padding: 15px 12px;
        max-height: none;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 20px 0;
    }
    
    .hero-content .container {
        min-height: auto;
        align-items: flex-start;
        gap: 20px;
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-form {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .g-recaptcha > div {
        transform: scale(0.7);
    }
    
    .g-recaptcha {
        margin: 8px 0;
    }
    
    .nav-brand .logo {
        height: 50px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .contact-form .form-group {
        margin-bottom: 10px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .hero-form h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-image {
        height: 200px;
    }
}

/* Projects Page Styling */
.portfolio-filter {
    background: var(--gray-light);
    padding: 40px 0;
    border-bottom: 1px solid rgba(244, 101, 48, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white-color);
    color: var(--gray-dark);
    border: 2px solid var(--gray-light);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.portfolio-grid {
    padding: 80px 0;
    background: var(--white-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(244, 101, 48, 0.1);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.project-link,
.project-external {
    width: 50px;
    height: 50px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.project-link:hover,
.project-external:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    border-top: 3px solid var(--primary-color);
}

.project-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-info p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(244, 101, 48, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(244, 101, 48, 0.2);
}

/* Project Stats Section */
.project-stats {
    background: var(--gray-dark);
    color: var(--white-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.project-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.project-stats .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(244, 101, 48, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.project-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(244, 101, 48, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.project-stats h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}

.project-stats p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .hero-form {
        padding: 12px 10px;
        max-width: 100%;
    }
    
    .g-recaptcha > div {
        transform: scale(0.65);
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 6px;
        font-size: 0.8rem;
    }
    
    .submit-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .hero-form h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero {
        padding: 10px 0;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .featured-post-image {
        width: 70px;
        height: 70px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
}

/* Blog Page Styling */
.blog-categories {
    background: var(--gray-light);
    padding: 50px 0;
    border-bottom: 1px solid rgba(244, 101, 48, 0.1);
    position: relative;
}

.blog-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.category-btn {
    background: var(--white-color);
    color: var(--gray-dark);
    border: 2px solid rgba(244, 101, 48, 0.2);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-btn:hover::before,
.category-btn.active::before {
    left: 0;
}

.category-btn:hover,
.category-btn.active {
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

/* Blog Card Animation States */
.blog-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blog-card.filtering {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.blog-card.filtered-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.featured-post {
    padding: 80px 0;
    background: var(--white-color);
    width: 100%;
    overflow: hidden;
}

.featured-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.featured-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.featured-info {
    flex: 1;
    min-width: 0;
    text-align: center;
    width: 100%;
    max-width: none;
    padding: 0 20px;
    box-sizing: border-box;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-post:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}

.featured-info .post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.featured-info .category {
    background: rgba(244, 101, 48, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(244, 101, 48, 0.2);
}

.featured-info .date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.featured-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    margin-top: 0;
    padding: 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.featured-info p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    padding: 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.post-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    color: var(--gray-medium);
    font-size: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.post-stats i {
    color: var(--primary-color);
    margin-right: 5px;
}


.read-more-btn {
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

.blog-grid {
    padding: 80px 0;
    background: var(--gray-light);
}

.blog-grid .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 20px;
    width: 100% !important;
}

.blog-posts {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 0;
    width: 100% !important;
}

.blog-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(244, 101, 48, 0.1);
    transition: var(--transition);
    height: fit-content;
    display: flex;
    flex-direction: column;
    min-width: 420px !important;
    max-width: 100% !important;
    width: 100% !important;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.blog-content {
    padding: 30px;
    border-top: 3px solid var(--primary-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.blog-author {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.blog-stats i {
    color: var(--primary-color);
    margin-right: 3px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--gray-dark);
    transform: translateX(5px);
}

.blog-link::after {
    content: '→';
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
}

.blog-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Blog Responsive Design */
@media (max-width: 768px) {
    .featured-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .featured-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .featured-info {
        padding: 0 10px;
    }
    
    .featured-info h2 {
        font-size: 2rem;
        padding: 0;
    }
    
    .featured-info p {
        padding: 0;
    }
    
    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-card {
        min-width: 300px;
    }
    
    .blog-grid {
        padding: 60px 0;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card {
        min-width: 280px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-info h2 {
        font-size: 1.8rem;
        padding: 0;
    }
    
    .featured-info p {
        padding: 0;
    }
    
    .featured-content {
        padding: 0 15px;
        max-width: 100%;
        flex-direction: column;
    }
    
    .featured-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .featured-info {
        padding: 0 5px;
    }
    
    .blog-grid {
        padding: 40px 0;
    }
    
    .blog-grid .container {
        gap: 30px;
    }
}

/* Blog Sidebar Styling */
.blog-sidebar {
    width: 100%;
    max-width: 350px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(244, 101, 48, 0.1);
    transition: var(--transition);
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Widget Header Styling */
.widget-header {
    position: relative;
    margin-bottom: 30px;
}

.widget-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-dark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-header h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget-decoration {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF7A50 50%, transparent 100%);
    border-radius: 2px;
    position: relative;
}

.widget-decoration::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 30%;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(244, 101, 48, 0.3);
}

/* Featured Articles Styling */
.featured-articles {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(244, 101, 48, 0.15);
    position: relative;
    overflow: hidden;
}

.featured-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #FF7A50, var(--primary-color));
    z-index: 1;
}

.featured-posts {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    flex-wrap: nowrap !important;
}

.featured-posts::-webkit-scrollbar {
    height: 6px;
}

.featured-posts::-webkit-scrollbar-track {
    background: rgba(244, 101, 48, 0.1);
    border-radius: 3px;
}

.featured-posts::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), #FF7A50);
    border-radius: 3px;
}

.featured-posts::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FF7A50, var(--primary-color));
}

.featured-post {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    padding: 20px;
    background: var(--white-color);
    border-radius: 18px;
    border: 2px solid rgba(244, 101, 48, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-width: 280px !important;
    max-width: 320px;
    flex-shrink: 0 !important;
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), #FF7A50);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.featured-post:hover::before {
    transform: scaleY(1);
}

.featured-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(244, 101, 48, 0.2);
    border-color: var(--primary-color);
}

.premium-post:hover {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.02), var(--white-color));
}

.trending-post {
    border-color: rgba(255, 122, 80, 0.2);
}

.fresh-post {
    border-color: rgba(244, 101, 48, 0.15);
}

.featured-post-image {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.15) rotate(2deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-post:hover .image-overlay {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    color: var(--white-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.featured-badge.popular {
    background: linear-gradient(135deg, #FF4444, #FF6B6B);
}

.featured-badge.trending {
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
}

.featured-badge.fresh {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.featured-badge i {
    font-size: 0.6rem;
}

.featured-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-category {
    background: rgba(244, 101, 48, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid rgba(244, 101, 48, 0.2);
    width: fit-content;
}

.featured-post-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    color: var(--gray-medium);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(244, 101, 48, 0.05);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(244, 101, 48, 0.1);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.featured-post-content p {
    font-size: 0.88rem;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-link {
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 16px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(244, 101, 48, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.premium-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 101, 48, 0.4);
    background: linear-gradient(135deg, #FF7A50, var(--primary-color));
}

.premium-link span {
    flex: 1;
}

.premium-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 50%;
}

.premium-link:hover i {
    transform: translateX(4px) rotate(45deg);
}

/* Enhanced Categories Widget */
.categories-widget {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.03), var(--white-color));
    border: 2px solid rgba(244, 101, 48, 0.1);
}

.categories-widget .widget-decoration::after {
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
}

/* Category List Styling */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-dark);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.05), rgba(255, 255, 255, 0.8));
    border: 2px solid rgba(244, 101, 48, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.category-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), #FF7A50);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-list a:hover::before {
    transform: scaleY(1);
}

.category-list a:hover {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.12), rgba(255, 255, 255, 0.9));
    border-color: var(--primary-color);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(244, 101, 48, 0.2);
}

.category-list span {
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(244, 101, 48, 0.3);
    min-width: 35px;
    text-align: center;
}

/* Enhanced Tags Widget */
.tags-widget {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.02), var(--white-color));
    border: 2px solid rgba(244, 101, 48, 0.08);
}

.tags-widget .widget-decoration::after {
    background: linear-gradient(135deg, #FF7A50, var(--primary-color));
}

/* Premium Tags Styling */
.premium-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.1), rgba(255, 122, 80, 0.08));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid rgba(244, 101, 48, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}

.tag::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;
}

.tag:hover::before {
    left: 100%;
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(244, 101, 48, 0.3);
    border-color: var(--primary-color);
}

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: var(--primary-gradient);
    color: var(--white-color);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

/* Load More Button Positioning */
.load-more-section {
    grid-column: 1 / -1;
}

/* Force Blog Card Width - High Specificity */
.blog-grid .blog-main-content .blog-posts .blog-card {
    min-width: 420px !important;
    width: auto !important;
    flex: 1 1 420px !important;
}

.blog-grid .blog-main-content .blog-posts {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)) !important;
    gap: 40px !important;
}

/* Responsive overrides with high specificity */
@media (max-width: 1024px) {
    .blog-grid .blog-main-content .blog-posts {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    }
    .blog-grid .blog-main-content .blog-posts .blog-card {
        min-width: 350px !important;
    }
}

@media (max-width: 768px) {
    .blog-grid .blog-main-content .blog-posts {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    .blog-grid .blog-main-content .blog-posts .blog-card {
        min-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .blog-grid .blog-main-content .blog-posts {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .blog-grid .blog-main-content .blog-posts .blog-card {
        min-width: 280px !important;
    }
}

/* Blog Sidebar Responsive */
@media (max-width: 1024px) {
    .blog-grid .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .blog-posts {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .blog-card {
        min-width: 350px;
    }
    
    .blog-sidebar {
        position: static;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .featured-post {
        padding: 18px;
        min-width: 250px;
    }
    
    .featured-post-image {
        height: 100px;
    }
    
    .widget-header h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .featured-posts {
        gap: 15px;
    }
    
    .featured-post {
        min-width: 220px;
        padding: 15px;
    }
    
    .featured-post-image {
        height: 90px;
    }
    
    .featured-post-content h5 {
        font-size: 0.95rem;
    }
}

/* Phone Link Call-to-Action Styling */
.phone-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.1), rgba(255, 122, 80, 0.05));
    border: 2px solid rgba(244, 101, 48, 0.2);
    box-shadow: 0 4px 15px rgba(244, 101, 48, 0.1);
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.phone-link:hover::before {
    opacity: 1;
}

.phone-link:hover {
    color: var(--white-color) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(244, 101, 48, 0.3);
    border-color: var(--primary-color);
}

.phone-link::after {
    content: '📞';
    font-size: 0.9rem;
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

.top-header .phone-link {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.top-header .phone-link:hover {
    background: var(--white-color);
    color: var(--primary-color) !important;
    border-color: var(--white-color);
}

.top-header .phone-link:hover::before {
    opacity: 0;
}

.footer .phone-link {
    color: var(--gray-light);
    background: rgba(244, 101, 48, 0.1);
    border-color: rgba(244, 101, 48, 0.2);
}

.footer .phone-link:hover {
    color: var(--white-color) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(244, 101, 48, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9rem;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(244, 101, 48, 0.4);
    background: linear-gradient(135deg, #FF7A50, var(--primary-color));
}

.whatsapp-btn i {
    font-size: 1.5rem;
    animation: whatsapp-bounce 1s ease-in-out infinite alternate;
}

.whatsapp-text {
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    max-width: 120px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(244, 101, 48, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(244, 101, 48, 0.5);
    }
    100% {
        box-shadow: 0 4px 20px rgba(244, 101, 48, 0.3);
    }
}

@keyframes whatsapp-bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
        border-radius: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 1.3rem;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Professional Article Page Styling */
.article-header {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.05), rgba(255, 122, 80, 0.02));
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(244, 101, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #FF7A50, var(--primary-color));
    z-index: 1;
}

.article-meta {
    margin-bottom: 30px;
}

.article-meta .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.article-meta .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-meta .breadcrumb a:hover {
    color: #FF7A50;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 101, 48, 0.3);
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-dark);
    line-height: 1.2;
    margin: 25px 0;
    background: linear-gradient(135deg, var(--gray-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 25px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(244, 101, 48, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 5px;
    background: var(--white-color);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.publish-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.article-stats {
    display: flex;
    gap: 25px;
    align-items: center;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-stats i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Article Content Layout */
.article-content {
    padding: 80px 0;
    background: var(--white-color);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.main-content {
    background: var(--white-color);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(244, 101, 48, 0.05);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-content:hover .featured-image img {
    transform: scale(1.05);
}

.featured-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(244, 101, 48, 0.1));
}

/* Article Body Styling */
.article-body {
    padding: 50px;
}

.article-body .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.03), rgba(255, 122, 80, 0.02));
    border-left: 5px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    font-weight: 500;
}

.article-body h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #FF7A50;
}

.article-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 35px 0 20px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(244, 101, 48, 0.05), transparent);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 25px;
}

.article-body ul, .article-body ol {
    margin: 25px 0;
    padding-left: 0;
}

.article-body li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(244, 101, 48, 0.2);
}

.article-body ol {
    counter-reset: list-counter;
}

.article-body ol li {
    counter-increment: list-counter;
}

.article-body ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.article-body blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.08), rgba(255, 122, 80, 0.05));
    border-left: 6px solid var(--primary-color);
    border-radius: 0 20px 20px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(244, 101, 48, 0.1);
}

.article-body blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.article-body blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.article-body blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    margin: 60px 0 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    border-radius: 25px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 15px 40px rgba(244, 101, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cta-glow 4s ease-in-out infinite alternate;
}

@keyframes cta-glow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

/* Article Footer */
.article-footer {
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.03), rgba(255, 122, 80, 0.02));
    border-top: 2px solid rgba(244, 101, 48, 0.1);
}

.article-tags {
    margin-bottom: 30px;
}

.article-tags h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.article-tags .tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.1), rgba(255, 122, 80, 0.08));
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px 8px 5px 0;
    border: 2px solid rgba(244, 101, 48, 0.2);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.article-tags .tag:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 101, 48, 0.3);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-buttons h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--white-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.email { background: var(--gray-dark); }

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(244, 101, 48, 0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FF7A50;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(244, 101, 48, 0.05);
}

.related-post:hover {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.03), rgba(255, 122, 80, 0.02));
    transform: translateX(5px);
    border-color: rgba(244, 101, 48, 0.2);
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.related-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-content span {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #FF7A50);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 101, 48, 0.3);
    background: linear-gradient(135deg, #FF7A50, var(--primary-color));
}

/* Responsive Article Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
    }
    
    .article-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .article-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 60px 0 40px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 30px 25px;
    }
    
    .article-footer {
        padding: 30px 25px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .share-buttons .share-btn {
        margin-right: 10px;
    }
}

/* Professional Banner Sections */
.banner-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 80px 0;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.85), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: var(--white-color);
    width: 100%;
}

.banner-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
}

.banner-cta {
    display: inline-block;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

/* Banner Stats */
.banner-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Banner Features */
.banner-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--white-color);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Banner Testimonial */
.banner-testimonial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--white-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.author-rating {
    display: flex;
    gap: 5px;
}

.author-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Specific Banner Variations */
.tech-innovation-banner .banner-overlay {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.9), rgba(0, 0, 0, 0.6));
}

.digital-transformation-banner .banner-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(244, 101, 48, 0.8));
}

.success-stories-banner .banner-overlay {
    background: linear-gradient(135deg, rgba(244, 101, 48, 0.85), rgba(255, 122, 80, 0.7));
}

/* Banner Responsive Design */
@media (max-width: 1200px) {
    .banner-stats {
        gap: 30px;
    }
    
    .banner-features {
        gap: 20px;
    }
    
    .banner-testimonial {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .banner-section {
        min-height: 400px;
        margin: 60px 0;
    }
    
    .banner-text h2 {
        font-size: 2.5rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-testimonial {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 350px;
        margin: 40px 0;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .banner-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
    
    .testimonial-cta {
        padding: 30px 20px;
    }
    
    .testimonial-cta h3 {
        font-size: 1.6rem;
    }
}
