/*
Theme Name: Pivonet Technology
Theme URI: https://pivonet.com
Author: Pivonet Technology
Author URI: https://pivonet.com
Description: Professional Digital Marketing Agency & ICT Training Center Theme
Version: 2.0
License: GPL v2 or later
Text Domain: pivonet
*/

/* ============================================
   BRAND COLORS
   ============================================ */
:root {
    --primary-color: #9ACD32;
    --primary-dark: #7aad28;
    --primary-light: #b8e062;
    --secondary-color: #0A1931;
    --secondary-light: #1a2a4a;
    --accent-color: #000000;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-bg: #f0f2f5;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --border-color: #eaeaea;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-primary: 0 4px 15px rgba(154,205,50,0.3);
    --shadow-primary-hover: 0 6px 20px rgba(154,205,50,0.5);
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-hover);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(90deg, white, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0.9;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav ul li a:hover,
.nav ul li.current-menu-item a {
    color: var(--primary-color);
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li.current-menu-item a::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}



/* Mobile Navigation - Fixed */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        transition: left 0.3s ease-in-out;
        padding: 2rem;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }
    
    .nav ul li {
        width: 100%;
    }
    
    .nav ul li a {
        display: block;
        padding: 0.75rem 0;
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav ul li a:hover {
        color: var(--primary-color);
        padding-left: 0.5rem;
    }
    
    .cta-button {
        display: none;
    }
}




/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(154,205,50,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, white, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-features-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin: 0;
}

/* ============================================
   COMPUTER CENTER SECTION
   ============================================ */
.computer-center-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--gray-bg) 100%);
}

.computer-center-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.center-info p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.center-services-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.preview-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.center-map .map-placeholder {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.center-map .map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.center-map .map-placeholder h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   TRAININGS SECTION
   ============================================ */
.physical-trainings-section {
    padding: 5rem 0;
    background: var(--white);
}

.online-courses-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.trainings-grid,
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.training-card,
.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.training-card:hover,
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.training-icon,
.course-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 2rem;
    text-align: center;
}

.training-icon i,
.course-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.training-content,
.course-content {
    padding: 1.5rem;
}

.training-content h3,
.course-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.training-meta,
.course-meta {
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.training-price,
.course-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.training-content p,
.course-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   BLOG POSTS SECTION (Front Page)
   ============================================ */
.latest-posts {
    padding: 5rem 0;
    background: var(--white);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-image.placeholder {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image.placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.post-content h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.post-meta i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* ============================================
   SINGLE POST & PAGE STYLES
   ============================================ */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, white, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.single-post,
.page-content {
    padding: 4rem 0;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content-single {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content-single h2 {
    margin-top: 2rem;
    color: var(--secondary-color);
}

.post-content-single h3 {
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.post-content-single ul,
.post-content-single ol {
    margin: 1rem 0 1rem 2rem;
}

.post-content-single li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.post-navigation a {
    color: var(--secondary-color);
    font-weight: 500;
}

.post-navigation a:hover {
    color: var(--primary-color);
}

/* Sidebar */
.sidebar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 0.75rem;
}

.widget ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.comment-meta {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.comment-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.comment-respond {
    margin-top: 2rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
}

.comment-form input[type="submit"] {
    width: auto;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form input[type="submit"]:hover {
    background: var(--primary-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--accent-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ccc;
}

.contact-info li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.85rem;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.8rem; }
    .computer-center-content { grid-template-columns: 1fr; gap: 2rem; }
    .post-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 999;
    }
    
    .nav.active { left: 0; }
    
    .nav ul { flex-direction: column; gap: 1rem; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    
    .services-grid,
    .trainings-grid,
    .courses-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .center-services-preview { grid-template-columns: 1fr; }
    
    .section-title h2 { font-size: 1.8rem; }
    
    .cta-section h2 { font-size: 1.8rem; }
    .cta-section p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .whatsapp-float { width: 45px; height: 45px; font-size: 22px; bottom: 20px; right: 20px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .training-card, .course-card, .post-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header, .footer, .whatsapp-float, .hero-buttons, .sidebar {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}



/* ============================================
   GRAPHIC DESIGN SECTION
   ============================================ */
.graphic-design-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

/* ============================================
   CORPORATE TRAINING SECTION
   ============================================ */
.corporate-training-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.corporate-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.corporate-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.corporate-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.corporate-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.corporate-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.corporate-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.corporate-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.corporate-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 1rem 0;
}

.corporate-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 16px;
    color: white;
}

.corporate-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.corporate-note p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   PARTNERSHIP SECTION
   ============================================ */
.partnership-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
}

.partnership-section .section-title h2 {
    color: white;
}

.partnership-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.partnership-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), white);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partnership-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(154,205,50,0.2);
}

.partnership-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    border-color: var(--primary-color);
}

.partnership-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partnership-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.partnership-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.partnership-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.partnership-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.partnership-card .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.partnership-card .btn-primary:hover {
    background: var(--primary-dark);
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .corporate-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-card,
    .partnership-card {
        padding: 1.5rem;
    }
    
    .corporate-note {
        margin-top: 1.5rem;
        padding: 1rem;
    }
}




/* ============================================
   CORPORATE TRAINING SECTION - BOX STYLE
   ============================================ */
.corporate-training-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.corporate-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
    position: relative;
}

.corporate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.corporate-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.corporate-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.corporate-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.corporate-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.corporate-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.corporate-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 16px;
}

.corporate-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 1rem 0;
}

.corporate-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 16px;
    color: white;
}

.corporate-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.corporate-note p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   PARTNERSHIP SECTION - BOX STYLE
   ============================================ */
.partnership-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
}

.partnership-section .section-title h2 {
    color: white;
}

.partnership-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.partnership-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), white);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partnership-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-color);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partnership-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.partnership-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partnership-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.partnership-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.partnership-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 16px;
}

.partnership-card .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 100%;
    justify-content: center;
}

.partnership-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .corporate-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-card,
    .partnership-card {
        padding: 1.5rem;
    }
    
    .corporate-note {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .partnership-card .btn-primary {
        width: 100%;
    }
}



/* ============================================
   COMPUTER CENTER PAGE STYLES
   ============================================ */

.computer-center-page {
    padding: 4rem 0;
    background: var(--light-bg);
}

/* Center Intro */
.center-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.intro-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.center-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1rem;
}

.highlight span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
}

/* Services Grid Full */
.center-services-full {
    margin-bottom: 4rem;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-full {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card-full:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-icon-full i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-full h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.service-card-full p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-list-full {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    text-align: left;
}

.service-list-full li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-list-full li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.price-tag {
    display: inline-block;
    background: var(--light-bg);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

/* Trainings at Center */
.center-trainings {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
}

.trainings-grid-full {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.training-item-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.training-item-full:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.training-item-full i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
}

.training-item-full div {
    flex: 1;
}

.training-item-full h4 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.training-item-full p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.btn-small-outline {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-small-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Location Hours Cards */
.center-location-hours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-card,
.hours-card,
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover,
.hours-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-card i,
.hours-card i,
.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card h3,
.hours-card h3,
.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-card p,
.hours-card p,
.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Center CTA */
.center-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.center-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.center-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .center-intro {
        grid-template-columns: 1fr;
    }
    
    .center-location-hours {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .center-highlights {
        grid-template-columns: 1fr;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .training-item-full {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .training-item-full i {
        width: auto;
    }
    
    .center-cta {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .center-intro {
        padding: 1.5rem;
    }
    
    .center-trainings {
        padding: 1.5rem;
    }
    
    .location-card,
    .hours-card,
    .contact-card {
        padding: 1.5rem;
    }
}



/* ============================================
   ARCHIVE PAGES STYLES
   ============================================ */

/* Intro Text */
.trainings-intro,
.courses-intro,
.corporate-intro,
.partnerships-intro,
.graphic-intro {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.trainings-intro p,
.courses-intro p,
.corporate-intro p,
.partnerships-intro p,
.graphic-intro p {
    margin: 0;
    font-size: 1.05rem;
}

/* Training Cards Full */
.trainings-grid-full,
.courses-grid-full,
.corporate-grid-full,
.partnerships-grid-full,
.graphic-grid-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.training-card-full,
.course-card-full,
.corporate-card-full,
.partnership-card-full,
.graphic-card-full {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.training-card-full:hover,
.course-card-full:hover,
.corporate-card-full:hover,
.partnership-card-full:hover,
.graphic-card-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.training-icon-full,
.course-icon-full,
.corporate-icon-full,
.partnership-icon-full,
.graphic-icon-full {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-icon-full i,
.course-icon-full i,
.corporate-icon-full i,
.partnership-icon-full i,
.graphic-icon-full i {
    font-size: 2rem;
    color: var(--primary-color);
}

.training-content-full,
.course-content-full,
.corporate-content-full,
.partnership-content-full,
.graphic-content-full {
    flex: 1;
}

.training-content-full h3,
.course-content-full h3,
.corporate-content-full h3,
.partnership-content-full h3,
.graphic-content-full h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.training-meta-full,
.course-meta-full,
.corporate-meta-full {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.training-price-full,
.course-price-full,
.graphic-price-full {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.corporate-price-full {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.training-features-full,
.course-features-full,
.corporate-features-full,
.partnership-features-full,
.graphic-features-full {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.training-features-full li,
.course-features-full li,
.corporate-features-full li,
.partnership-features-full li,
.graphic-features-full li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.training-features-full li i,
.course-features-full li i,
.corporate-features-full li i,
.partnership-features-full li i,
.graphic-features-full li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.partnership-badge,
.corporate-badge-full {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.corporate-note-full {
    background: var(--light-bg);
    padding: 0.8rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* CTA Sections */
.corporate-cta,
.partnership-cta,
.graphic-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
}

.corporate-cta h3,
.partnership-cta h3,
.graphic-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.corporate-cta p,
.partnership-cta p,
.graphic-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Archive Pages */
@media (max-width: 768px) {
    .training-card-full,
    .course-card-full,
    .corporate-card-full,
    .partnership-card-full,
    .graphic-card-full {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .training-icon-full,
    .course-icon-full,
    .corporate-icon-full,
    .partnership-icon-full,
    .graphic-icon-full {
        margin: 0 auto;
    }
    
    .training-features-full,
    .course-features-full,
    .corporate-features-full,
    .partnership-features-full,
    .graphic-features-full {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .training-features-full li,
    .course-features-full li,
    .corporate-features-full li,
    .partnership-features-full li,
    .graphic-features-full li {
        justify-content: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}



/* ============================================
   LEGAL PAGES & CONTACT PAGE STYLES
   ============================================ */

.last-updated {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.legal-page {
    padding: 4rem 0;
    background: var(--light-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-list li i {
    color: var(--primary-color);
    width: 20px;
}

/* Refund Table */
.refund-table {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
}

.refund-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.refund-row:last-child {
    border-bottom: none;
}

.refund-row.header {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
}

/* About Page */
.about-page {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-content h2 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Founder Section */
.founder-card {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.founder-image .placeholder-avatar i {
    font-size: 120px;
    color: var(--primary-color);
}

.founder-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.founder-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Enhanced Contact Page */
.contact-page-enhanced {
    padding: 4rem 0;
    background: var(--light-bg);
}

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-section-enhanced {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-section-enhanced h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-form-section-enhanced p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-form-enhanced .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.alternative-contact {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.alternative-contact p {
    margin-bottom: 1rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 1rem;
}

.contact-faq h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-social {
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-enhanced .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .refund-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .refund-row.header {
        display: none;
    }
    
    .refund-row div::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--secondary-color);
        display: block;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}



/* ============================================
   MASTER SERVICES PAGE STYLES
   ============================================ */

.master-services-page {
    padding: 4rem 0;
    background: var(--light-bg);
}

/* Service Category Section */
.service-category-section {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-category-section:hover {
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-title h2 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.category-title p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Preview Grid */
.category-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-card {
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: 12px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.preview-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.preview-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.preview-card h3 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.preview-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Category Footer */
.category-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.category-footer .btn-outline {
    padding: 8px 24px;
    font-size: 0.85rem;
}

/* Master Services CTA */
.master-services-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.master-services-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.master-services-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.master-services-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-category-section {
        padding: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .category-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .master-services-cta {
        padding: 2rem;
    }
    
    .master-services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .master-services-cta .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .service-category-section {
        padding: 1rem;
    }
    
    .preview-card {
        padding: 1rem;
    }
}



/* ============================================
   SIMPLIFIED HOMEPAGE STYLES
   ============================================ */

/* Key Services Section */
.key-services {
    padding: 5rem 0;
    background: var(--white);
}

.key-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.key-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.key-service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.key-service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.key-service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.key-service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.key-service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.key-service-link:hover {
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.view-all-services {
    text-align: center;
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Computer Center Preview */
.computer-center-preview {
    padding: 5rem 0;
    background: var(--white);
}

.preview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: white;
}

.preview-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.preview-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.preview-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.preview-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
}

.preview-features span i {
    color: var(--primary-color);
}

.preview-image {
    text-align: center;
}

.preview-image i {
    font-size: 8rem;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .key-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .key-services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .preview-features {
        justify-content: center;
    }
    
    .preview-image i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .preview-features {
        flex-direction: column;
        align-items: center;
    }
}


/* Adjust header without the button */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Make navigation take remaining space */
.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .nav {
        justify-content: flex-start;
    }
}





/* Founder Image Styles */
.founder-card {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    align-items: center;
}

.founder-image {
    flex-shrink: 0;
}

.founder-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.placeholder-avatar i {
    font-size: 180px;
    color: var(--primary-color);
}

.founder-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

.founder-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-social {
        justify-content: center;
    }
    
    .founder-image img,
    .placeholder-avatar i {
        width: 150px;
        height: 150px;
        font-size: 150px;
    }
}




/* ============================================
   DIGITAL MARKETING & WEBSITE DESIGN PAGES
   ============================================ */

.digital-marketing-full,
.website-design-full {
    padding: 4rem 0;
    background: var(--light-bg);
}

.service-intro {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.service-intro p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-full-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.service-full-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-full-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-full-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-full-content {
    flex: 1;
}

.service-full-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-full-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-full-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-full-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.service-full-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-price {
    display: inline-block;
    background: var(--light-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
}

.service-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.portfolio-note {
    margin-top: 2rem;
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
}

.portfolio-note h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.portfolio-note p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-full-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .service-full-icon {
        margin: 0 auto;
    }
    
    .service-full-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .service-full-list li {
        justify-content: flex-start;
    }
    
    .service-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-full-card {
        padding: 1rem;
    }
    
    .service-full-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-full-icon i {
        font-size: 1.5rem;
    }
    
    .service-full-content h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   BLOG ARCHIVE STYLES
   ============================================ */

.blog-archive {
    padding: 4rem 0;
    background: var(--light-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-image.placeholder {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image.placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-content h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.post-meta i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.pagination .prev,
.pagination .next {
    padding: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}