:root {
    --primary-dark: #0d1117;
    --primary-accent: #f7931e;
    --secondary-accent: #00a8e8;
    --tertiary-accent: #10b981;
    --text-light: #ffffff;
    --text-muted: #8b949e;
    --surface-dark: #161b22;
    --surface-card: #21262d;
    --gradient-energy: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #00a8e8 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
}

button {
    outline: none;
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 147, 30, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-energy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

.logo-text span {
    color: var(--primary-accent);
}

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

.nav-links li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-light);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 17, 23, 0.95) 0%, rgba(13, 17, 23, 0.7) 50%, rgba(13, 17, 23, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 5%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(247, 147, 30, 0.15);
    border: 1px solid rgba(247, 147, 30, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-energy);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: var(--primary-accent);
    background: rgba(247, 147, 30, 0.1);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-overlay {
    position: relative;
    z-index: 1;
}

.section-label {
    color: var(--primary-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Help Section */
.help-section {
    padding: 6rem 5%;
    background: var(--surface-dark);
}

.help-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.help-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-light);
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.help-title .highlight {
    color: var(--primary-accent);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

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

.help-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.help-content p:last-child {
    margin-bottom: 0;
}

/* Services */
.services {
    padding: 6rem 5%;
    background: var(--surface-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 147, 30, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats */
.stats {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Video Player Section */
.videos-section {
    padding: 6rem 5%;
    background: var(--surface-dark);
}

.video-player-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.main-video-area {
    flex: 1;
    background: var(--surface-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Video Thumbnail Links - Circular Buttons */
.video-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.video-link-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--surface-card);
    border: 3px solid rgba(255,255,255,0.1);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-link-btn:hover {
    border-color: var(--primary-accent);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.video-link-btn.active {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.3);
}

.video-link-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-link-btn .video-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    z-index: 2;
}

.video-link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
    z-index: 1;
    border-radius: 50%;
}

.video-link-btn:hover::after {
    background: rgba(247, 147, 30, 0.2);
}

.video-link-btn.active::after {
    background: rgba(247, 147, 30, 0.3);
}

/* About */
.about-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-cards {
    margin-top: 2rem;
}

.mission-card {
    background: var(--surface-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-accent);
}

.mission-card h4 {
    color: var(--primary-accent);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Blogs */
.blog-section {
    padding: 6rem 5%;
}

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

.blog-card {
    background: var(--surface-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-accent);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Rankings */
.rankings-section {
    padding: 6rem 5%;
    background: var(--surface-dark);
}

.rankings-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.rankings-header {
    display: grid;
    grid-template-columns: 80px 1fr 200px 200px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px 200px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface-card);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
    transition: background 0.3s ease;
}

.ranking-row:hover {
    background: rgba(247, 147, 30, 0.05);
}

.ranking-row:last-child {
    border-radius: 0 0 12px 12px;
}

.rank-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-accent);
}

.rank-num.top {
    background: var(--gradient-energy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-name {
    font-weight: 600;
}

.company-service {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.company-link {
    color: var(--secondary-accent);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.company-link:hover {
    color: var(--primary-accent);
}

/* Contact */
.contact-section {
    padding: 6rem 5%;
    position: relative;
    min-height: calc(100vh - 80px);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(33, 38, 45, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.contact-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-accent);
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-energy);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
}

/* Footer */
footer {
    padding: 4rem 5% 2rem;
    background: var(--surface-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--primary-accent);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* Footer Contact/Office Section */
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.office-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.office-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.office-item strong {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.office-item p {
    margin-bottom: 0.25rem;
}

.office-item a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-item a:hover {
    color: #fff;
}

.footer-email {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-email a {
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: #fff;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.95);
    z-index: 2000;
    overflow-y: auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.blog-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.modal-content {
    max-width: 900px;
    width: 100%;
    background: var(--surface-card);
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
}

.modal-img {
    width: 100%;
    height: 350px;
    position: relative;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
    border: none;
}

.modal-close:hover {
    background: var(--primary-accent);
}

.modal-body {
    padding: 2.5rem;
}

.modal-category {
    display: inline-block;
    background: rgba(247, 147, 30, 0.1);
    color: var(--primary-accent);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.modal-text p {
    margin-bottom: 1.5rem;
}

.modal-text h3 {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .rankings-header, .ranking-row {
        grid-template-columns: 60px 1fr 150px;
    }
    .rankings-header > *:last-child,
    .ranking-row > *:last-child {
        display: none;
    }
    .video-player-container {
        flex-direction: column;
    }
    .video-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .insights-content {
        grid-template-columns: 1fr;
    }
    .insight-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .insight-stat {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface-dark);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links li a {
        display: block;
        padding: 1rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .rankings-header, .ranking-row {
        grid-template-columns: 50px 1fr;
    }
    .rankings-header > *:nth-child(3),
    .ranking-row > *:nth-child(3) {
        display: none;
    }
    .video-link-btn {
        width: 60px;
        height: 60px;
    }
    .contact-card {
        padding: 2rem;
    }
    .why-choose-us,
    .industry-insights {
        padding: 4rem 5%;
    }
    .why-item {
        padding: 1.5rem;
    }
    .why-item h3 {
        font-size: 1.2rem;
    }
    .insight-text h3 {
        font-size: 1.5rem;
    }
    .insight-stats {
        flex-direction: column;
    }
    .help-section {
        padding: 4rem 5%;
    }
    .help-content {
        padding: 0 1rem;
    }
    .help-content p {
        font-size: 0.95rem;
    }
}

/* Extra small devices (phones under 400px) */
@media (max-width: 400px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content {
        padding: 0 4%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-email {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    nav {
        padding: 0.75rem 4%;
    }
    
    .video-link-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-link-btn .video-number {
        font-size: 1.2rem;
    }
}

/* =====================================================
   CHATBOT WIDGET STYLES
   ===================================================== */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #e55a2b 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.chatbot-toggle svg {
    fill: #fff;
}

.chatbot-container {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 120px);
    background: var(--surface-dark);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-container.open {
    display: flex;
}

.close-icon {
    display: none;
}

.close-icon.visible {
    display: block;
}

.chat-icon.hidden {
    display: none;
}

.chatbot-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-accent) 0%, #e55a2b 100%);
    color: #fff;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 12px;
}

.chatbot-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
    color: #90EE90;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    max-width: 85%;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.user .message-content {
    background: var(--primary-accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-message.bot .message-content {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border-bottom-left-radius: 4px;
}

.message-content p {
    margin: 0 0 0.5rem 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content a {
    color: var(--primary-accent);
    text-decoration: underline;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.chat-quick-replies button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-accent);
    background: transparent;
    color: var(--primary-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-quick-replies button:hover {
    background: var(--primary-accent);
    color: #fff;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input input:focus {
    border-color: var(--primary-accent);
}

.chatbot-input input::placeholder {
    color: var(--text-muted);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chatbot-input button:hover {
    background: #e55a2b;
}

.chatbot-input button svg {
    fill: #fff;
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 20px);
        right: -10px;
        height: 450px;
    }
    
    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }
}

/* Footer website link */
.footer-website {
    margin-top: 1rem;
}

.footer-website a {
    color: var(--primary-accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-website a:hover {
    color: #fff;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-choose-us {
    padding: 5rem 5%;
    background: var(--surface-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-item {
    background: var(--surface-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--primary-accent);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.why-item p {
    color: #c9d1d9;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   INDUSTRY INSIGHTS SECTION
   ===================================================== */
.industry-insights {
    padding: 5rem 5%;
    background: var(--primary-dark);
}

.insights-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
}

.insight-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insight-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-stat {
    background: var(--surface-card);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-accent);
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-content {
        grid-template-columns: 1fr;
    }
    
    .insight-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .insight-stat {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .insight-stats {
        flex-direction: column;
    }
}

/* =====================================================
   UX ENHANCEMENTS — SCROLL ANIMATIONS & VISIBILITY
   ===================================================== */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 1.05s; opacity: 1; transform: translateY(0); }

/* Navbar shrink on scroll */
nav.scrolled {
    padding: 0.5rem 5%;
    background: rgba(13, 17, 23, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(247, 147, 30, 0.2);
}

nav.scrolled .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

nav.scrolled .logo-text {
    font-size: 1rem;
}

nav {
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.logo-icon {
    transition: width 0.3s ease, height 0.3s ease, font-size 0.3s ease;
}

.logo-text {
    transition: font-size 0.3s ease;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-energy);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(247, 147, 30, 0.6);
}

/* Enhanced service card hover */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(247, 147, 30, 0.15);
    border-color: rgba(247, 147, 30, 0.3);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-img img {
    transition: transform 0.5s ease;
}

/* Enhanced why-item card glow */
.why-item {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-energy);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    border-color: rgba(247, 147, 30, 0.3);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.1);
}

/* Stat number animation pulse */
.stat-number {
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-accent);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Hero badge pulse animation */
.hero-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.3); }
    50% { box-shadow: 0 0 20px 5px rgba(247, 147, 30, 0.15); }
}

/* Insight stat card hover */
.insight-stat {
    transition: transform 0.3s ease, background 0.3s ease;
}

.insight-stat:hover {
    transform: translateY(-5px);
    background: rgba(247, 147, 30, 0.15);
}

/* Section label animated underline */
.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-accent);
    margin: 8px auto 0;
    transition: width 0.4s ease;
}

.section-label:hover::after {
    width: 80px;
}

/* Loading animation for page */
@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

.main-content {
    animation: fadeInPage 0.6s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stagger-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-badge {
        animation: none;
    }
    .main-content {
        animation: none;
    }
}
