/* =============================================
   PAGE HEADER (Common for all pages)
   ============================================= */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(123, 47, 247, 0.1), transparent);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--neutral);
}

.breadcrumb-item a {
    color: var(--accent2);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '→';
    color: var(--neutral);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro,
.mission-vision,
.stats-counter,
.team-section,
.why-choose {
    padding: 5rem 0;
}

.about-intro {
    background: var(--primary);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(0, 255, 209, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--accent2);
    opacity: 0.3;
}

.about-img-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--gradient);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.4);
}

.badge-content h3 {
    font-size: 3rem;
    color: white;
    margin: 0;
}

.badge-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-check-item i {
    color: var(--accent2);
    font-size: 1.2rem;
}

/* Mission & Vision */
.mission-vision {
    background: var(--dark-bg);
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--neutral);
    line-height: 1.8;
    margin: 0;
}

/* Stats Counter */
.stats-counter {
    background: var(--primary);
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--accent2);
    margin: 0.5rem 0;
}

.stat-box p {
    color: var(--neutral);
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--dark-bg);
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(0, 255, 209, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent2);
    opacity: 0.3;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14, 14, 16, 0.9);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--accent1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--accent2);
    margin: 0;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose {
    background: var(--primary);
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--neutral);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-intro,
.services-grid,
.process-section {
    padding: 5rem 0;
}

.services-intro {
    background: var(--primary);
}

.services-grid {
    background: var(--dark-bg);
}

.service-card-detailed {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.service-icon-large {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-detailed:hover .service-icon-large {
    transform: rotateY(360deg);
}

.service-card-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-detailed > p {
    color: var(--neutral);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    color: var(--neutral);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li i {
    color: var(--accent2);
    font-size: 0.9rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
    color: white;
}

/* Process Section */
.process-section {
    background: var(--primary);
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(123, 47, 247, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent2);
    margin: 0 auto 1.5rem;
}

.process-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--neutral);
    margin: 0;
}

/* =============================================
   PORTFOLIO PAGE
   ============================================= */
.portfolio-intro,
.portfolio-section {
    padding: 5rem 0;
}

.portfolio-intro {
    background: var(--primary);
}

.portfolio-section {
    background: var(--dark-bg);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    border-color: transparent;
}

.portfolio-card-full {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card-full:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.portfolio-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-full:hover .portfolio-img-wrap img {
    transform: scale(1.1);
}

.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(0, 255, 209, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent2);
    opacity: 0.3;
}

.portfolio-overlay-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card-full:hover .portfolio-overlay-full {
    opacity: 1;
}

.overlay-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    transform: scale(1.1);
    color: white;
}

.portfolio-content-full {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-cat-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(123, 47, 247, 0.2);
    color: var(--accent2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.portfolio-content-full h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.portfolio-content-full p {
    color: var(--neutral);
    margin-bottom: 1rem;
    flex: 1;
}

.portfolio-tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 255, 209, 0.1);
    color: var(--accent2);
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 209, 0.2);
}

.empty-state {
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: var(--neutral);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--neutral);
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-intro,
.pricing-section,
.faq-section {
    padding: 5rem 0;
}

.pricing-intro {
    background: var(--primary);
}

.pricing-section {
    background: var(--dark-bg);
}

.pricing-card-full {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-full:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.pricing-card-full.featured {
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.3);
}

.pricing-badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent2);
}

.pricing-duration {
    color: var(--neutral);
    font-size: 1rem;
}

.pricing-features-wrap {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features-list li:last-child {
    border-bottom: none;
}

.pricing-features-list li i {
    color: var(--accent2);
    font-size: 1.1rem;
}

.pricing-features-list li span {
    color: var(--neutral);
}

.pricing-footer {
    text-align: center;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(123, 47, 247, 0.2);
    border: 2px solid var(--accent1);
    color: var(--accent2);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-pricing-featured {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--primary);
}

.accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.03);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.05);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-color: var(--secondary);
    --bs-accordion-active-bg: rgba(123, 47, 247, 0.1);
    --bs-accordion-active-color: var(--secondary);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    color: var(--secondary);
}

.accordion-button:not(.collapsed) {
    background: rgba(123, 47, 247, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300FFD1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--neutral);
    line-height: 1.8;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-section {
    padding: 5rem 0;
    background: var(--primary);
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.blog-img {
    height: 350px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.3), rgba(0, 255, 209, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent2);
    opacity: 0.3;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    padding: 0.3rem 1rem;
    background: rgba(123, 47, 247, 0.2);
    color: var(--accent2);
    border-radius: 20px;
    font-weight: 600;
}

.blog-date,
.blog-author {
    color: var(--neutral);
}

.blog-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent2);
}

.blog-excerpt {
    color: var(--neutral);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    gap: 0.5rem;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(123, 47, 247, 0.3);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: var(--neutral);
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-list a:hover,
.category-list a.active {
    background: rgba(123, 47, 247, 0.1);
    color: var(--accent2);
    padding-left: 1rem;
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts-list a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
}

.recent-posts-list img,
.recent-post-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-placeholder {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(0, 255, 209, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent2);
    font-size: 1.5rem;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content span {
    font-size: 0.85rem;
    color: var(--neutral);
}

.widget-newsletter {
    background: var(--gradient);
}

.widget-newsletter .widget-title,
.widget-newsletter p {
    color: white;
}

.sidebar-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.sidebar-newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
}

.sidebar-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-newsletter-form button {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--accent1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form button:hover {
    transform: scale(1.05);
}

/* Blog Single Page */
.blog-single-header {
    padding: 8rem 0 3rem;
    background: var(--primary);
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.blog-single-title {
    font-size: 3rem;
    line-height: 1.2;
}

.blog-single-content {
    padding: 3rem 0 5rem;
    background: var(--primary);
}

.blog-article {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
}

.blog-featured-image {
    margin-bottom: 3rem;
}

.blog-body {
    color: var(--neutral);
    line-height: 1.9;
}

.blog-body h2,
.blog-body h3,
.blog-body h4 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
}

.blog-body p {
    margin-bottom: 1.5rem;
}

.blog-body ul,
.blog-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-body li {
    margin-bottom: 0.8rem;
}

.blog-share {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-share h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
}

.share-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #ea4335;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-posts {
    margin-top: 3rem;
}

.related-post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    border-color: var(--accent1);
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-content {
    padding: 1rem;
}

.related-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-post-content h4 a {
    color: var(--secondary);
    text-decoration: none;
}

.related-post-content h4 a:hover {
    color: var(--accent2);
}

.related-post-content span {
    font-size: 0.85rem;
    color: var(--neutral);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-section,
.contact-form-section,
.contact-faq {
    padding: 5rem 0;
}

.contact-info-section {
    background: var(--primary);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent1);
    box-shadow: 0 20px 50px rgba(123, 47, 247, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--neutral);
    margin: 0;
}

.contact-info-card a {
    color: var(--accent2);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: var(--dark-bg);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent1);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-map-wrapper {
    position: sticky;
    top: 100px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact-additional-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.contact-additional-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.business-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--neutral);
}

.business-hours li:last-child {
    border-bottom: none;
}

.social-links-contact {
    display: flex;
    gap: 0.8rem;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.contact-faq {
    background: var(--primary);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .contact-map-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;
    }
    
    .blog-single-title {
        font-size: 2rem;
    }
    
    .blog-article {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}
