/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-blue: #267fe7;
    --primary-teal: #118faf;
    --primary-purple: #9e41ff;
    --primary-orange: #ee360a;
    --primary-green: #077d4c;
    
    /* Light Shades */
    --light-blue: #cfdbf5;
    --light-teal: #cef4ff;
    --light-purple: #dad5ff;
    --light-orange: #ebcc8e;
    --light-green: #c2f2e1;
    
    /* Dark Shades */
    --dark-blue: #0e2599;
    --dark-teal: #01668c;
    --dark-purple: #4e249d;
    --dark-orange: #d73100;
    --dark-green: #006653;
    
    /* Neutral Colors */
    --gray-100: #f3f4f6;
    --gray-200: #c7d1df;
    --gray-300: #d4dfe7;
    --gray-400: #afb5c3;
    --gray-500: #8a8f98;
    --gray-600: #3f4555;
    --gray-700: #47515e;
    --gray-800: #171b24;
    --gray-900: #0a0d15;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    font-size: var(--text-base);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HEADER & NAVIGATION ===== */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar-brand {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-dark .navbar-brand {
    color: white;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

.navbar.scrolled {
    background-color: rgba(28, 40, 56, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../ZON_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: -1;
    min-height: 100vh;
}

.hero-section img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.hero-section h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 125px;
}

.hero-section h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-blue);
}

.hero-section p {
    font-size: var(--text-lg);
    margin-bottom: 2rem;
}

/* ===== SECTION STYLING ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.section-subtitle {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-description {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* ===== ABOUT SECTION ===== */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.feature-box p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ===== SERVICES SECTION ===== */
.service-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-img-top {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-card .card-body {
    padding: 1.5rem;
}

.service-card h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.service-card h6 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-blue);
}

/* ===== FEATURES SECTION ===== */
.feature-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 7px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-right: 1rem;
}

.feature-item h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.74rem;
    color: var(--gray-800);
}

.feature-item p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 7px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-blue);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: var(--text-xs);
    font-weight: 600;
}

.pricing-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.pricing-card .price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* ===== TEAM SECTION ===== */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.69rem;
    color: var(--gray-800);
}

.team-member p {
    font-size: var(--text-sm);
    color: var(--primary-blue);
    font-weight: 500;
}

/* ===== REVIEWS SECTION ===== */
.review-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 5px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.review-card .stars {
    color: var(--primary-orange);
    font-size: var(--text-lg);
    margin-bottom: 1rem;
}

.review-card p {
    font-size: var(--text-base);
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-card h6 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

/* ===== CASE STUDIES SECTION ===== */
.case-study-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    object-fit: cover;
}

.case-study-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin: 1rem;
    color: var(--gray-800);
}

.case-study-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0 1rem 1rem;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.71rem;
    color: var(--gray-800);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 0 0 8px var(--primary-blue);
}

.timeline-item h5 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.69rem;
    color: var(--gray-800);
}

.timeline-item p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ===== CAREER SECTION ===== */
.career-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 6px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.70rem;
    color: var(--gray-800);
}

.career-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 0.71rem;
}

/* ===== CORE INFO SECTION ===== */
.info-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.info-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
}

/* ===== CONTACT SECTION ===== */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 9px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: var(--text-base);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(55, 98, 235, 0.10);
}

.contact-form .btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: var(--dark-blue);
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.blog-content p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
}

.blog-link:hover {
    color: var(--dark-blue);
}

/* ===== FAQ SECTION ===== */
.accordion-button {
    background: white;
    border: none;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-800);
    padding: 1rem;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(59, 119, 238, 0.10);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: var(--light-blue);
}

.accordion-body {
    font-size: var(--text-base);
    color: var(--gray-600);
}

/* ===== GALLERY SECTION ===== */
#gallery img {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
    background: var(--gray-800);
    color: white;
}

footer h3, footer h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p {
    font-size: var(--text-sm);
    color: var(--gray-300);
}

footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-blue);
}

footer hr {
    border-color: var(--gray-600);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: opacity(0.7);
}

/* ===== SPACE PAGE ===== */
#space {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-teal));
    color: white;
}

/* ===== ADDITIONAL PAGES STYLING ===== */
.item-card, .service-item, .experience-item, .safety-item, .success-item,
.marketing-item, .tech-item, .creative-item, .partnership-item, .innovation-item {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item-card:hover, .service-item:hover, .experience-item:hover, .safety-item:hover, .success-item:hover,
.marketing-item:hover, .tech-item:hover, .creative-item:hover, .partnership-item:hover, .innovation-item:hover {
    transform: translateY(-3px);
}

.item-card h4, .service-item h4, .experience-item h4, .safety-item h4, .success-item h4,
.marketing-item h4, .tech-item h4, .creative-item h4, .partnership-item h4, .innovation-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: 0.66rem;
    color: var(--gray-800);
}

.item-card p, .service-item p, .experience-item p, .safety-item p, .success-item p,
.marketing-item p, .tech-item p, .creative-item p, .partnership-item p, .innovation-item p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin: 0;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.31rem; }
.mb-2 { margin-bottom: 0.62rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.58rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.49rem; }
.mt-2 { margin-top: 0.63rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.65rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-2 { padding-top: 0.63rem; padding-bottom: 0.74rem; }

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: var(--text-3xl);
    padding-top: 125px;
}
    
    .hero-section h2 {
        font-size: var(--text-xl);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
