/* ========================================
   ZENOVA - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #0B0F1A;
    --secondary-color: #7B3FF2;
    --accent-color: #00E5FF;
    --text-white: #FFFFFF;
    --text-gray: #A0A7B5;
    --gradient-primary: linear-gradient(135deg, #7B3FF2 0%, #00E5FF 100%);
    --gradient-dark: linear-gradient(180deg, #0B0F1A 0%, #1a1f2e 100%);
    --shadow-sm: 0 2px 10px rgba(123, 63, 242, 0.1);
    --shadow-md: 0 8px 30px rgba(123, 63, 242, 0.2);
    --shadow-lg: 0 15px 50px rgba(0, 229, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   LOADING SCREEN
   ======================================== */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(123, 63, 242, 0.2);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.logo-dot {
    color: var(--accent-color);
    font-size: 40px;
    line-height: 0;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 25px;
    background: var(--gradient-primary);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-text {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s 1s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s 1.2s forwards;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.4s forwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s 1.6s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-preview {
    padding: 120px 0;
    background: var(--gradient-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(123, 63, 242, 0.05);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-us {
    padding: 120px 0;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.why-us-text > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.why-us-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    opacity: 0.8;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: #000;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #050711;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(123, 63, 242, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(123, 63, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 63, 242, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
}

.page-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Detail Section */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}

.service-detail-title {
    font-size: 36px;
    margin-bottom: 5px;
}

.service-detail-tagline {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 500;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.service-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-text h3 {
    font-size: 24px;
    margin: 30px 0 20px;
}

.service-detail-text h4 {
    font-size: 20px;
    margin: 25px 0 15px;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 63, 242, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-list strong {
    color: var(--text-white);
}

.service-results {
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-placeholder {
    width: 100%;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.7;
}

.service-visual-placeholder p {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
}

.service-cta {
    text-align: center;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Styles for Services Page */
@media screen and (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .service-detail-card {
        padding: 30px 25px;
    }
    
    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .service-detail-title {
        font-size: 28px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-visual-placeholder {
        height: 250px;
        font-size: 60px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.story-text p strong {
    color: var(--text-white);
    font-weight: 600;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.story-image-placeholder {
    width: 100%;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    margin-bottom: 30px;
}

.story-image-placeholder p {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-stat {
    text-align: center;
    padding: 20px;
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 15px;
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 20px;
}

.mission-statement h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.mission-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
}

.why-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.intro-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

.differences-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.difference-item {
    background: rgba(255, 0, 0, 0.02);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
}

.difference-item.zenova-difference {
    background: rgba(0, 229, 255, 0.02);
    border-color: var(--accent-color);
}

.difference-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.diff-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.difference-item .diff-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.difference-item.zenova-difference .diff-icon {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
}

.difference-header h3 {
    font-size: 22px;
}

.difference-item ul {
    list-style: none;
}

.difference-item ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.difference-item ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

.difference-item.zenova-difference ul li::before {
    content: '✓';
    color: var(--accent-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.member-photo-placeholder {
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.member-bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-socials a {
    width: 35px;
    height: 35px;
    background: rgba(123, 63, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.member-socials a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.team-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 15px;
}

.team-cta p {
    font-size: 18px;
    color: var(--text-gray);
}

.team-cta a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Company Stats Section */
.company-stats {
    padding: 80px 0;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.stat-card .stat-number,
.stat-card .stat-number-text {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card .stat-desc {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 32px;
    }
    
    .story-image-placeholder {
        height: 250px;
        font-size: 60px;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .differences-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-text h2 {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* ========================================
   PORTFOLIO PAGE STYLES
   ======================================== */

/* Portfolio Filters */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 25px;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    padding: 30px;
}

.portfolio-overlay-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-overlay-content p {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--accent-color);
    gap: 12px;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.portfolio-results {
    display: flex;
    gap: 15px;
}

.result-badge {
    flex: 1;
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.result-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.result-metric {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Case Study */
.featured-case-study {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.case-study-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.case-study-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-details h3 i {
    color: var(--accent-color);
}

.case-study-challenge,
.case-study-solution,
.case-study-results-showcase {
    margin-bottom: 40px;
}

.case-study-details p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.case-study-solution ul {
    list-style: none;
    margin: 15px 0;
}

.case-study-solution ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-gray);
    font-size: 15px;
}

.case-study-solution ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.showcase-item {
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.showcase-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.showcase-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-position {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive Styles for Portfolio Page */
@media screen and (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-image-placeholder {
        height: 250px;
        font-size: 60px;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .case-study-image-placeholder {
        height: 300px;
        font-size: 80px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.form-note {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 20px;
}

/* Form Messages */
.form-message {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.form-message i {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-message {
    border-color: #00ff88;
}

.success-message i {
    color: #00ff88;
}

.error-message {
    border-color: #ff4444;
}

.error-message i {
    color: #ff4444;
}

.form-message h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-message p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Contact Info Sidebar */
.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info-card > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(123, 63, 242, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-content a {
    color: var(--accent-color);
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.info-note {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    margin-top: 5px;
}

/* Social Links Large */
.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(123, 63, 242, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

/* Business Hours */
.hours-list {
    margin: 20px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 63, 242, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-size: 14px;
    color: var(--text-white);
}

.time {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
}

.hours-note {
    font-size: 13px;
    color: var(--text-gray);
    padding: 15px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-note i {
    color: var(--accent-color);
}

/* Map Section */
.map-section {
    margin: 80px 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(123, 63, 242, 0.2);
}

.map-placeholder i {
    font-size: 64px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-placeholder span {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}
/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-section {
    padding: 80px 0;
}

/* Blog Categories */
.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.category-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 20px;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: var(--transition);
}

.featured-post:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.featured-post-image {
    position: relative;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.blog-image-placeholder.featured {
    min-height: 450px;
    font-size: 120px;
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: rgba(11, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.featured-post-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.post-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-date,
.post-read-time {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-post-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-post-title a {
    color: var(--text-white);
    transition: var(--transition);
}

.featured-post-title a:hover {
    color: var(--accent-color);
}

.featured-post-excerpt {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.read-more-btn:hover {
    gap: 15px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(123, 63, 242, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
}

.blog-card-content {
    padding: 25px;
}

.post-meta-small {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-white);
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.read-more-link:hover {
    gap: 12px;
}

/* Load More */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 14px 35px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 63, 242, 0.2);
    border-radius: 30px;
    color: var(--text-white);
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

.newsletter-note {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive Styles for Blog Page */
@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .blog-image-placeholder.featured {
        min-height: 300px;
        font-size: 80px;
    }
    
    .featured-post-content {
        padding: 30px 25px;
    }
    
    .featured-post-title {
        font-size: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image-placeholder {
        min-height: 250px;
        font-size: 60px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

}
/* ========================================
   FIX: Dropdown Menu Visibility
   ======================================== */

.form-group select option {
    background: #1a1f2e;
    color: var(--text-white);
    padding: 10px;
}

/* For better compatibility across browsers */
.form-group select {
    background: rgba(255, 255, 255, 0.05) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Firefox specific fix */
@-moz-document url-prefix() {
    .form-group select {
        text-indent: 0.01px;
        text-overflow: '';
    }
}

/* Make sure text is visible when option is selected */
.form-group select:focus option:checked {
    background: var(--secondary-color);
    color: var(--text-white);
}
