/* Color Palette - Based on Tailwind Config */
:root {
    /* Primary Colors (Blue Scale) */
    --primary-50: #f0f9ff;
    --primary-100: #e3f5ff;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0284c7;
    --primary-600: #0369a1;
    --primary-700: #075985;
    --primary-800: #0c4a6e;
    --primary-900: #082f49;
    --primary-950: #041d2f;
    
    /* Accent Colors (Cyan/Teal Scale) */
    --accent-50: #ecfeff;
    --accent-100: #cffafe;
    --accent-200: #a5f3fc;
    --accent-300: #67e8f9;
    --accent-400: #22d3ee;
    --accent-500: #06b6d4;
    --accent-600: #0891b2;
    --accent-700: #0e7490;
    --accent-800: #155e75;
    --accent-900: #164e63;
    --accent-950: #083344;
    
    /* Logo Blue */
    --logo-blue-50: #f0f9ff;
    --logo-blue-100: #e3f5ff;
    --logo-blue-200: #cfe6f5;
    --logo-blue-300: #b4d4ed;
    --logo-blue-400: #7dd3fc;
    --logo-blue-500: #0ea5e9;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-100);
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 50%, var(--primary-950) 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-100);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-400);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 50%, var(--primary-950) 100%);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

/* Hero Section */

.gradient-text {
    background: linear-gradient(45deg, var(--primary-400), var(--primary-300), var(--primary-200), var(--primary-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-400); }
}

@keyframes revealChar {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}









.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-visual {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.card-1 {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 8%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 8%;
    left: 18%;
    animation-delay: 3s;
}

.card-4 {
    top: 20%;
    right: 2%;
    animation-delay: 0.75s;
}

.card-5 {
    bottom: 20%;
    left: 38%;
    animation-delay: 2.25s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-50), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-200);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-700), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(7, 89, 133, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(7, 89, 133, 0.3);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800), var(--primary-950));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

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

.service-card p {
    color: var(--primary-100);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--primary-100);
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.service-card:hover li {
    color: var(--primary-100);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-50), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--primary-100);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--primary-100);
    font-weight: 500;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tech-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(7, 89, 133, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(7, 89, 133, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-50);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--primary-100);
}

.contact-form {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-100);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-100);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-200);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-400);
    font-weight: 600;
}

.footer-section p {
    color: var(--primary-100);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--primary-100);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-section ul li a:hover {
    color: var(--primary-400);
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
    transition: left 0.5s;
}

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

.social-links a:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--primary-200);
}

/* FAQ Section */
/* Page-Specific Hero Sections */
.news-hero, .faq-hero {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.news-hero h1, .faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.news-hero p, .faq-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary-100);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-breadcrumb {
    font-size: 0.9rem;
    color: var(--primary-200);
}

.hero-breadcrumb a {
    color: var(--primary-400);
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 10px;
}

/* News Page Specific Styles */
.news-main {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
}

.news-main .section-header h2 {
    color: white;
}

.news-main .section-header p {
    color: var(--primary-100);
}

.featured-article {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #3b82f6;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-date {
    color: var(--primary-100);
    font-weight: 500;
}

.article-category {
    background: var(--primary-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-excerpt {
    color: var(--primary-100);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.article-content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #a9aeb3;
    font-size: 1.1rem;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #a9aeb3;
    font-size: 1.1rem;
}

.article-content a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
}

.article-content a:hover {
    text-decoration: underline;
}

.news-archive {
    margin-top: 60px;
}

.news-archive h2 {
    color: var(--primary-100);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
    text-align: center;
    color: white;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--primary-100);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: var(--primary-500);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

/* FAQ Page Specific Styles */
.faq-main {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    border-radius: 12px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h3 {
    color: var(--primary-50);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--primary-100);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-500);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-secondary:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    color: var(--primary-400);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: var(--primary-200);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--primary-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-400);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--primary-400);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--primary-700);
    padding-top: 20px;
    text-align: center;
    color: var(--primary-200);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .news-hero h1, .faq-hero h1 {
        font-size: 2rem;
    }
    
    .featured-article {
        padding: 30px 20px;
    }
    
    .featured-article h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* News Section Styles */
.news {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.news-card.featured {
    border-left: 5px solid #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-date {
    color: var(--primary-100);
    font-weight: 500;
}

.news-category {
    background: var(--primary-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--primary-100);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-content {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-content.active {
    display: block;
}

.news-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--primary-100);
}

.news-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.news-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
}

.news-content a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
}

.news-content a:hover {
    text-decoration: underline;
}

.read-more-btn {
    background: var(--primary-500);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
}

.read-more-btn:hover {
    background: var(--primary-700);
}

.read-more-link {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover {
    text-decoration: underline;
}

.read-more-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
    
    .news-card.featured {
        grid-column: 1;
    }
    
    .news-card:not(.featured) {
        grid-column: 2;
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .news-card.featured {
        grid-column: 1;
        grid-row: 1 / 3;
    }
}

.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
}

/* FAQ Page Specific Styling */
.faq-main .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-main .faq-item {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-main .faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--primary-50);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-main .faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-main .faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-400);
}

.faq-main .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-main .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: none;
}

.faq-main .faq-answer.active {
    max-height: 2000px;
    padding: 0 24px 20px 24px;
    overflow: visible;
}

.faq-main .faq-answer p {
    color: var(--primary-100);
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-400);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer.active {
    max-height: 2000px;
    padding: 0 24px 20px 24px;
    overflow: visible;
}

.faq-answer p {
    color: var(--primary-100);
    line-height: 1.6;
    margin: 0;
    padding-top: 16px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #e2e8f0;
}

.faq-answer li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.faq-main .faq-answer ul,
.faq-main .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: var(--primary-100);
}

.faq-main .faq-answer li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 20px 16px 20px;
    }
    
    /* FAQ Page Responsive */
    .faq-main .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .faq-main .faq-answer.active {
        padding: 0 20px 16px 20px;
    }
}

/* Page-specific Hero Sections */
.services-hero, .about-hero, .contact-hero, .news-hero, .faq-hero {
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 50%, var(--primary-800) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.services-hero::before, .about-hero::before, .contact-hero::before, .news-hero::before, .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero .container, .about-hero .container, .contact-hero .container, .news-hero .container, .faq-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1, .about-hero h1, .contact-hero h1, .news-hero h1, .faq-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-100) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-hero p, .about-hero p, .contact-hero p, .news-hero p, .faq-hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-100);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-breadcrumb {
    font-size: 0.9rem;
    color: var(--primary-200);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-breadcrumb a {
    color: var(--primary-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--primary-300);
    text-decoration: none;
}

.breadcrumb-separator {
    color: var(--primary-300);
    font-weight: 300;
}

/* Hero Decorative Elements */
.services-hero .hero-content::after, .about-hero .hero-content::after, .contact-hero .hero-content::after, .news-hero .hero-content::after, .faq-hero .hero-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
    border-radius: 2px;
}

/* Page-specific Main Content */
.services-main, .about-main, .contact-main {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 100%);
}

/* Services Page Styles */
.services-main .section-header h2 {
    color: white;
}

.services-main .section-header p {
    color: var(--primary-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: var(--primary-100);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--primary-100);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-500);
    font-weight: bold;
}

/* Align buttons horizontally at bottom of service cards */
.service-card .btn {
    margin-top: auto;
    align-self: center;
}

/* Process Section */
.process-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.process-step p {
    color: var(--primary-100);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border-radius: 16px;
    text-align: center;
    color: white;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-900);
}

.about-text p {
    color: var(--primary-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-500);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary-100);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.value-card p {
    color: var(--primary-100);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.why-choose-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-900);
}

.why-choose-text p {
    color: var(--primary-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.experience-timeline {
    position: relative;
    padding: 1rem 0;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-year {
    font-weight: bold;
    color: var(--primary-500);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--primary-100);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border-radius: 16px;
    text-align: center;
    color: white;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-400);
    margin-top: 0.25rem;
    min-width: 24px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-50);
}

.contact-item p {
    color: var(--primary-100);
    margin: 0;
}

.contact-item a {
    color: var(--primary-400);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item > div {
    flex: 1;
    min-width: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-50);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-100);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-100);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--primary-200);
}

/* Form Status Messages */
.form-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border: 1px solid;
    animation: slideIn 0.3s ease-out;
}

.form-status.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.form-status.warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

/* Button Loading State */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Areas Section */
.service-areas-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: white;
    border-radius: 16px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.area-card {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-2px);
}

.area-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-900);
}

.area-card p {
    color: var(--primary-300);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .services-hero, .about-hero, .contact-hero, .news-hero, .faq-hero {
        padding: 60px 0 40px;
    }
    
    .services-hero h1, .about-hero h1, .contact-hero h1, .news-hero h1, .faq-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .services-hero p, .about-hero p, .contact-hero p, .news-hero p, .faq-hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-breadcrumb {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-left: 40px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(4, 29, 47, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item,
.tech-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-900);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-700), var(--primary-800));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-800), var(--primary-950));
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item:hover i {
    transform: scale(1.2);
}

/* Glow effects */
.nav-logo:hover h2 {
    filter: drop-shadow(0 0 20px rgba(7, 89, 133, 0.8));
}

.btn:hover {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.6));
} 