/* ====================================
   ROOT VARIABLES & RESET
   ==================================== */
   :root {
    --primary-blue: #081fd8;
    --primary-cyan: #60cfd0;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --bg-dark: #000000;
    --bg-card: #111111;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Funnel Display', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ====================================
   CUSTOM SCROLLBAR
   ==================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

/* ====================================
   NAVIGATION SECTION
   ==================================== */
.navbar-custom {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin: 12px 24px;
    padding: 8px 24px;
}

.navbar-brand img {
    height: 32px;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-cyan);
}

.btn-email {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 8px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-email:hover {
    transform: translateY(-2px);
    color: white;
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        margin: 8px 16px;
        padding: 8px 16px;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.mesh-bg {
    position: absolute;
    top: 100px;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    width: calc(100% - 4rem);
    height: calc(100vh - 140px);
    z-index: -1;
    border-radius: 24px;
}

.mesh-bg svg {
    border-radius: 24px;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.typing-cursor {
    animation: blink 1s infinite;
}

.lightning-bolt {
    color: white;
    animation: lightning-blink 2s infinite;
}

/* Hero Animations */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes lightning-blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ====================================
   STORY SECTION
   ==================================== */
.story-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 31, 216, 0.05) 0%, rgba(96, 207, 208, 0.05) 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.story-content .highlight {
    color: var(--primary-cyan);
    font-weight: 600;
}

/* Story Responsive */
@media (max-width: 576px) {
    .story-content p {
        font-size: 1.1rem;
    }
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-card-image img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    max-width: 120px;
    max-height: 120px;
}

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Swiper for mobile services */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination {
    display: none !important;
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-grid {
        display: none;
    }

    .services-swiper {
        display: block;
    }
}

@media (min-width: 769px) {
    .services-grid {
        display: block;
    }

    .services-swiper {
        display: none;
    }
}

/* ====================================
   TEAM SECTION
   ==================================== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(96, 207, 208, 0.05) 0%, rgba(8, 31, 216, 0.05) 100%);
}

.team-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.team-card:hover {
    transform: translateY(-8px);
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan)) 1;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-cyan);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-cyan);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
}

.team-link-container {
    margin-top: auto;
    padding-top: 1.5rem;
}

.team-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.team-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.team-link-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 31, 216, 0.3);
}

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

.team-link-btn:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

.team-link-btn:active {
    transform: translateY(0);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan), var(--primary-blue));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Team Responsive */
@media (max-width: 992px) {
    .team-card {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .team-card {
        min-height: auto;
        margin-bottom: 2rem;
    }
    
    .team-link-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .team-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 90px;
        height: 90px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-link-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ====================================
   TRUSTED BY SECTION
   ==================================== */
.trusted-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 31, 216, 0.05) 0%, rgba(96, 207, 208, 0.05) 100%);
}

.partner-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-8px);
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan)) 1;
}

.partner-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Trusted By Responsive */
@media (max-width: 768px) {
    .partner-logo {
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .partner-name {
        font-size: 1.1rem;
    }
    
    .partner-card {
        padding: 2rem 1rem;
    }
}

/* ====================================
   SHOWCASE SECTION
   ==================================== */
.showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(96, 207, 208, 0.05) 0%, rgba(8, 31, 216, 0.05) 100%);
}

.video-showcase-card {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid transparent;
    height: 100%;
}

.video-showcase-card:hover {
    transform: translateY(-8px);
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan)) 1;
    box-shadow: 0 20px 40px rgba(8, 31, 216, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-showcase-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 31, 216, 0.3);
    z-index: 2;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.video-showcase-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(8, 31, 216, 0.4);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    z-index: 1;
}

.video-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.video-player {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    background: #000;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-cyan);
    font-size: 2rem;
    z-index: 3;
}

.video-loading i {
    animation: spin 1s linear infinite;
}

.video-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan), var(--primary-blue));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-showcase-card:hover::before {
    opacity: 1;
}

/* Video Close Button */
.video-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-close-btn:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

.video-showcase-card.playing {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    max-height: 800px;
    background: #000;
}

.video-showcase-card.playing .video-player {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.video-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 998;
    backdrop-filter: blur(5px);
}

/* Showcase Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Showcase Responsive */
@media (max-width: 768px) {
    .video-thumbnail {
        height: 450px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .video-overlay h3 {
        font-size: 1.1rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
    
    .video-player {
        height: 250px;
    }

    .video-showcase-card.playing {
        width: 95vw;
        height: 95vh;
    }
    
    .video-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 576px) {
    .showcase-section {
        padding: 60px 0;
    }
    
    .video-thumbnail {
        height: 450px;
    }
    
    .video-player {
        height: 200px;
    }
    
    .video-overlay {
        padding: 1rem;
    }

    .video-showcase-card.playing {
        width: 100vw;
        height: 100vh;
    }
    
    .video-close-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 15px;
        right: 15px;
    }
}

/* ====================================
   ARTICLES SECTION
   ==================================== */
.articles-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(8, 31, 216, 0.05) 0%, rgba(96, 207, 208, 0.05) 100%);
}

.article-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-8px);
    border: 1px solid;
    border-image: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan)) 1;
    box-shadow: 0 20px 40px rgba(8, 31, 216, 0.15);
}

.article-thumbnail {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(8, 31, 216, 0.8) 0%, 
        rgba(96, 207, 208, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.read-more-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.read-more-btn:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 300px);
}

.article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.article-platform {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-link-icon {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.article-card:hover .article-link-icon {
    transform: translateX(4px);
}

.article-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

.article-thumbnail img {
    position: relative;
    z-index: 2;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius);
    padding: 1px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-cyan), var(--primary-blue));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Articles Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Articles Responsive */
@media (max-width: 768px) {
    .article-thumbnail {
        height: 250px;
    }
    
    .article-content {
        padding: 1.5rem;
        height: calc(100% - 250px);
    }
    
    .article-title {
        font-size: 1.2rem;
    }
    
    .articles-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .article-thumbnail {
        height: 200px;
    }
    
    .article-content {
        padding: 1.25rem;
        height: calc(100% - 200px);
    }
    
    .article-title {
        font-size: 1.1rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
    }
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.2rem rgba(96, 207, 208, 0.25);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border: none;
    color: white;
   padding: 12px 32px;
   border-radius: var(--border-radius);
   font-weight: 600;
   width: 100%;
   transition: transform 0.3s ease;
}

.btn-submit:hover {
   transform: translateY(-2px);
}

/* Contact Responsive */
@media (max-width: 576px) {
   .contact-form {
       margin: 0 1rem;
       padding: 2rem 1.5rem;
   }
}

/* ====================================
  FOOTER SECTION
  ==================================== */
.footer {
   background: linear-gradient(135deg, var(--bg-card) 0%, rgba(26, 35, 47, 0.95) 100%);
   padding: 4rem 0 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   position: relative;
   overflow: hidden;
}

.footer::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--primary-purple), transparent);
   animation: pulse 2s ease-in-out infinite;
}

.footer-logo {
   height: 40px;
   margin-bottom: 1rem;
   transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
   transform: scale(1.05);
   filter: brightness(1.2);
}

.footer-slogan {
   color: var(--text-secondary);
   margin-bottom: 2rem;
   font-style: italic;
   font-weight: 300;
   letter-spacing: 0.5px;
}

.lightning-divider {
   position: relative;
   padding: 2rem 0;
}

.lightning-icon {
   font-size: 2rem;
   color: var(--primary-cyan);
   animation: lightning-glow 2s ease-in-out infinite alternate;
   filter: drop-shadow(0 0 10px var(--primary-cyan));
}

.social-links {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   gap: 1rem;
}

.social-link {
   color: var(--text-secondary);
   font-size: 1.5rem;
   width: 45px;
   height: 45px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.05);
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.social-link::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
   transition: left 0.5s ease;
}

.social-link:hover {
   color: var(--primary-cyan);
   background: rgba(0, 255, 255, 0.1);
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.social-link:hover::before {
   left: 100%;
}

.footer-bottom {
   margin-top: 3rem;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   position: relative;
}

.copyright-text {
   color: var(--text-secondary);
   margin: 0;
   font-size: 0.9rem;
   opacity: 0.8;
}

.built-with {
   color: var(--text-secondary);
   margin: 0;
   font-size: 0.9rem;
   opacity: 0.8;
}

.lightning-bolt {
   color: var(--primary-cyan);
   display: inline-block;
   animation: lightning-pulse 1.5s ease-in-out infinite;
   margin: 0 5px;
   font-size: 1.1em;
}

/* Footer Animations */
@keyframes lightning-glow {
   0% {
       color: var(--primary-cyan);
       filter: drop-shadow(0 0 5px var(--primary-cyan));
       transform: scale(1);
   }
   100% {
       color: var(--primary-purple);
       filter: drop-shadow(0 0 15px var(--primary-purple));
       transform: scale(1.1);
   }
}

@keyframes lightning-pulse {
   0%, 100% {
       opacity: 1;
       transform: scale(1);
   }
   50% {
       opacity: 0.7;
       transform: scale(1.2);
   }
}

@keyframes pulse {
   0%, 100% {
       opacity: 0.5;
   }
   50% {
       opacity: 1;
   }
}

/* Footer Responsive */
@media (max-width: 768px) {
   .footer {
       padding: 3rem 0 1.5rem;
       text-align: center;
   }
   
   .footer .col-md-4 {
       margin-bottom: 2rem;
   }
   
   .footer .text-end {
       text-align: center !important;
   }
   
   .social-links {
       justify-content: center;
   }
   
   .lightning-divider {
       padding: 1rem 0;
   }
   
   .footer-bottom .text-end {
       text-align: center !important;
       margin-top: 1rem;
   }
}

@media (max-width: 576px) {
   .social-link {
       width: 40px;
       height: 40px;
       font-size: 1.3rem;
   }
   
   .footer-logo {
       height: 35px;
   }
   
   .lightning-icon {
       font-size: 1.5rem;
   }
}

/* ====================================
  SHARED ELEMENTS & UTILITIES
  ==================================== */
.section-title {
   font-size: 3.5rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 4rem;
}

.section-subtitle {
   font-size: 1.3rem;
   font-weight: 400;
   color: var(--text-secondary);
   text-align: center;
   max-width: 900px;
   margin: 0 auto 4rem;
   line-height: 1.6;
}

/* Shared Utilities Responsive */
@media (max-width: 768px) {
   .section-title {
       font-size: 2.5rem;
   }
   
   .section-subtitle {
       font-size: 1.1rem;
       margin: 0 auto 3rem;
       padding: 0 1rem;
   }
}

@media (max-width: 576px) {
   .section-subtitle {
       font-size: 1rem;
       margin: 0 auto 2.5rem;
   }
}

/* ====================================
  ACCESSIBILITY & ADDITIONAL STYLES
  ==================================== */
.service-card:focus,
.team-card:focus,
.btn-email:focus,
.btn-submit:focus {
   outline: 2px solid var(--primary-cyan);
   outline-offset: 2px;
}

.loading {
   display: inline-block;
   width: 20px;
   height: 20px;
   border: 3px solid rgba(255,255,255,.3);
   border-radius: 50%;
   border-top-color: #fff;
   animation: spin 1s ease-in-out infinite;
}

.service-card-content::-webkit-scrollbar {
   width: 4px;
}

.service-card-content::-webkit-scrollbar-track {
   background: transparent;
}

.service-card-content::-webkit-scrollbar-thumb {
   background: var(--primary-cyan);
   border-radius: 2px;
}

/* ====================================
  PRINT STYLES
  ==================================== */
@media print {
   .navbar-custom,
   .footer {
       display: none;
   }
   
   .hero-section {
       min-height: auto;
       padding: 2rem 0;
   }
   
   body {
       color: #000;
       background: #fff;
   }
}