/* Global Styles */
:root {
    --primary-color: #4261ee;
    --secondary-color: #fc5a5a;
    --light-bg: #ffffff;
    --lighter-bg: #f5f7fa;
    --dark-text: #333333;
    --gray-text: #666666;
    --card-bg: #ffffff;
    --hover-color: #5471ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.primary-button, .secondary-button, .cta-button, .view-all-button, .learn-more-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: var(--primary-color);
    color: #ffffff;
}

.primary-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: transparent;
    color: var(--dark-text);
    border: 2px solid var(--dark-text);
}

.secondary-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cta-button {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 10px 24px;
}

.cta-button:hover {
    background-color: #fd7070;
}

.view-all-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
}

.view-all-button:hover {
    background-color: rgba(66, 97, 238, 0.1);
}

.learn-more-button {
    background-color: transparent;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 0;
    padding-bottom: 4px;
    border-radius: 0;
}

.learn-more-button:hover {
    opacity: 0.8;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-text);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section Styles */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, var(--lighter-bg), var(--light-bg));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(66, 97, 238, 0.15), transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-bottom: 60px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.hero-content p {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}
.stat-box {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box.highlight {
    background-color: var(--primary-color);
    color: #ffffff;
}

.stat-box h3 {
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 700;
}

.stat-box p {
    font-size: 14px;
    color: var(--gray-text);
}

.stat-box.highlight h3 {
    color: #ffffff;
}

.stat-box.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Overview Styles */
.service-overview {
    background-color: var(--lighter-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), #6a85ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(66, 97, 238, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 35px rgba(66, 97, 238, 0.3);
}

.service-card .icon i {
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--dark-text);
}

/* Enhanced Services Page Styles */
.services-overview {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(252, 90, 90, 0.05));
    z-index: 0;
}

.services-overview::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 97, 238, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-intro h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-intro p {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-top: 30px;
}

/* Services Highlights */
.services-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.highlight-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(252, 90, 90, 0.05));
    transition: height 0.5s ease;
    z-index: -1;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(66, 97, 238, 0.1);
}

.highlight-item:hover::after {
    height: 100%;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), #6a85ff);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(66, 97, 238, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: rotateY(180deg);
}

.highlight-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.highlight-text {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.5;
}

.highlight-text span {
    display: block;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), #6a85ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Core Services Section */
.core-services {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    position: relative;
    background-color: var(--lighter-bg);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.service-detail:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-detail:hover::before {
    opacity: 1;
}

.service-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.chart-container {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.chart-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.chart-container h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--dark-text);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.chart-container h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-content {
    flex: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(66, 97, 238, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
    position: relative;
}

.service-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.service-content p {
    color: var(--gray-text);
    font-size: 17px;
    line-height: 1.8;
    margin: 25px 0;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark-text);
    padding: 12px 18px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(10px);
    background-color: rgba(66, 97, 238, 0.05);
}

.service-features i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Service Process Styles */
.service-process {
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 97, 238, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.service-process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 90, 90, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.process-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: calc(100% - 50px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(66, 97, 238, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(66, 97, 238, 0.3);
}

.step-content {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.05), rgba(252, 90, 90, 0.03));
    transition: all 0.5s ease;
    z-index: 0;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.step-content:hover::before {
    width: 100%;
}

.step-icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.15;
    transition: all 0.4s ease;
}

.step-content:hover .step-icon {
    opacity: 0.25;
    transform: translateY(-50%) scale(1.2);
    color: var(--secondary-color);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
}

.step-content p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Service Package Styles */
.service-packages {
    background-color: var(--light-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-packages::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 90, 90, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.packages-grid.single-package {
    max-width: 700px;
    margin: 0 auto;
}

.single-package .package-card {
    transform: none;
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    border: 2px solid var(--primary-color);
}

.single-package .package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(66, 97, 238, 0.15);
}

.package-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 25px;
    right: -45px;
    transform: rotate(45deg);
    width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.package-header {
    padding: 50px 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.package-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(252, 90, 90, 0.1));
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.package-icon i {
    font-size: 40px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: spin 30s linear infinite;
}

.package-header h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.package-subtitle {
    color: var(--gray-text);
    font-size: 18px;
}

.package-features {
    padding: 40px;
    flex: 1;
}

.package-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--dark-text);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.package-features li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.package-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.package-cta {
    padding: 20px 40px 50px;
    text-align: center;
}

.package-cta .primary-button {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(66, 97, 238, 0.25);
    transition: all 0.4s ease;
}

.package-cta .primary-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(66, 97, 238, 0.35);
}

/* Pie Chart Styles */
.pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
}

.pie-chart-monitoring {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #f5f5f5;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 25px;
}

.segment {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    transition: all 0.5s ease;
}

.pie-chart-monitoring:hover .segment {
    transform: scale(1.05);
}

.segment.telegram {
    background: var(--primary-color);
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.segment.terabox {
    background: var(--secondary-color);
    transform: rotate(144deg);
    clip-path: polygon(50% 50%, 50% 0%, 90% 0%, 90% 90%, 50% 90%);
}

.segment.websites {
    background: #6a85ff;
    transform: rotate(234deg);
    clip-path: polygon(50% 50%, 50% 0%, 80% 0%, 80% 80%, 50% 80%);
}

.segment.other {
    background: #333333;
    transform: rotate(306deg);
    clip-path: polygon(50% 50%, 50% 0%, 60% 0%, 60% 60%, 50% 60%);
}

.chart-legend-monitoring {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.chart-legend-monitoring .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chart-legend-monitoring .legend-item:hover {
    transform: translateX(5px);
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 25px;
    font-style: italic;
}

/* Bar Chart Styles */
.bar-chart-container {
    margin: 20px auto;
    width: 100%;
}

.bar-chart-reporting {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    width: 40px;
    font-weight: 600;
    text-align: right;
    color: var(--dark-text);
}

.bar-track {
    flex-grow: 1;
    height: 22px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), #6a85ff);
    border-radius: 11px;
    position: relative;
    overflow: hidden;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bar-value {
    min-width: 30px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-text);
}

/* Donut Chart Styles */
.donut-chart-container {
    margin: 20px auto;
    width: 100%;
}

.donut-charts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.donut-chart {
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.donut-chart:hover {
    transform: translateY(-10px);
}

.donut-chart svg {
    margin: 0 auto 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.donut-chart svg circle:nth-child(1) {
    opacity: 0.2;
}

.donut-chart p {
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 600;
}

/* Stacked Bar Chart Styles */
.stacked-bar-container {
    margin: 20px auto;
    width: 100%;
}

.stacked-bar {
    height: 50px;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.stacked-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.stacked-segment:hover {
    transform: scaleY(1.1);
}

.stacked-segment::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: shimmer 3s infinite;
}

.stat-highlight {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.05), rgba(252, 90, 90, 0.05));
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--card-bg);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.4;
}

/* Single Package Style */
.packages-grid.single-package {
    max-width: 600px;
    margin: 0 auto;
}

.single-package .package-card {
    transform: none;
}

.single-package .package-card:hover {
    transform: translateY(-15px);
}

/* Animation Styles */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .hero-stats, .service-card, .report-card, .benefit-card {
    animation: fadeIn 0.6s ease forwards;
}

.package-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #6a85ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(66, 97, 238, 0.3);
}

.package-icon i {
    font-size: 30px;
    color: white;
}

.package-card.featured .package-icon {
    background: linear-gradient(135deg, var(--secondary-color), #fd7070);
    box-shadow: 0 8px 25px rgba(252, 90, 90, 0.3);
}

/* AI Detection Performance Metrics */
.metrics-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metrics-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-item {
    text-align: center;
}

.metric-circle svg {
    width: 100px;
    height: 100px;
}

.metric-circle .circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.metric-circle .circle {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke: var(--primary-color);
}

.metric-circle.accuracy .circle {
    stroke: #4261ee;
}

.metric-circle.speed .circle {
    stroke: #fc5a5a;
}

.metric-circle.coverage .circle {
    stroke: #6a85ff;
}

.metric-circle .percentage {
    fill: var(--dark-text);
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: bold;
}

.metric-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    color: var(--dark-text);
}

.platform-coverage {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-name {
    min-width: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), #6a85ff);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

/* Enhanced Footer Styles */
.enhanced-footer {
    background-color: var(--lighter-bg);
    color: var(--dark-text);
    position: relative;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.enhanced-footer .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
}

.enhanced-footer .footer-logo h2 {
    font-size: 28px;
    margin-bottom: 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enhanced-footer .footer-logo p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(to right, rgba(66, 97, 238, 0.1), rgba(252, 90, 90, 0.1));
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 15px;
}

.enhanced-footer .footer-links {
    display: flex;
    justify-content: space-between;
}

.enhanced-footer .link-column h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.enhanced-footer .link-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.enhanced-footer .link-column ul li {
    margin-bottom: 12px;
}

.enhanced-footer .link-column ul li a {
    color: var(--gray-text);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.enhanced-footer .link-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.enhanced-footer .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.enhanced-footer .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-text);
}

.contact-item i {
    width: 36px;
    height: 36px;
    background-color: rgba(66, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(66, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.enhanced-footer .social-links {
    display: flex;
    margin-top: 25px;
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--gray-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    margin: 0 10px;
    color: var(--gray-text);
}

/* Recent Reports Enhanced Styles */
.report-card {
    position: relative;
    border-radius: 12px;
    background-color: var(--card-bg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.report-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #6a85ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(66, 97, 238, 0.25);
}

.report-date {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(66, 97, 238, 0.1);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.report-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding-right: 60px;
}

.report-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.report-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.report-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-text);
}

.report-stats i {
    color: var(--primary-color);
}

.report-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.report-link:hover {
    text-decoration: underline;
}

.view-all-container {
    text-align: center;
    margin-top: 20px;
}

/* Telegram Impact Enhanced Styles */
.impact-stat-highlight {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(252, 90, 90, 0.1));
    border-radius: 10px;
    text-align: center;
}

.impact-stat-highlight .stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.impact-stat-highlight .stat-description {
    font-size: 16px;
    color: var(--dark-text);
}

/* Benefits Enhanced Styles */
.benefit-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(66, 97, 238, 0.1), rgba(66, 97, 238, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--gray-text);
}

/* Benefits Section New Layout */
.benefits-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.benefits-main {
    flex: 1;
}

.benefits-highlight {
    background: linear-gradient(135deg, #2b4cdd, #5471ff);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    color: #fff;
    box-shadow: 0 15px 30px rgba(84, 113, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.benefits-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.benefits-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefits-highlight h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-highlight p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.benefits-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.benefits-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.benefits-link:hover i {
    transform: translateX(5px);
}

.benefits-secondary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-row {
    display: flex;
    gap: 20px;
    height: 100%;
}

.benefit-row .benefit-card {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    background: var(--card-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-row .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--primary-color);
    opacity: 0.7;
}

.benefit-row .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-row .benefit-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-row .benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.benefit-row .benefit-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits-main, .benefits-secondary {
        width: 100%;
    }
    
    .benefit-row {
        flex-direction: column;
    }
}

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Responsive */
    header {
        padding: 15px 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-bg);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }
    
    .hamburger .line {
        width: 25px;
        height: 3px;
        background: var(--dark-text);
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero Section Responsive */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    /* Section Headers Responsive */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Service Overview Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
        text-align: center;
    }
    
    /* Core Services Responsive */
    .core-services {
        padding: 60px 0;
    }
    
    .service-detail {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        padding: 30px 20px;
    }
    
    .service-detail.reverse {
        flex-direction: column;
    }
    
    .service-image,
    .service-content {
        flex: none;
        width: 100%;
    }
    
    .chart-container {
        padding: 20px;
        height: auto;
    }
    
    .chart-container h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    /* Recent Reports Responsive */
    .reports-list-home {
        grid-template-columns: 1fr;
    }
    
    .report-item {
        margin-bottom: 20px;
    }
    
    .report-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Benefits Section Responsive */
    .benefits-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .benefits-main,
    .benefits-secondary {
        width: 100%;
    }
    
    .benefit-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-card {
        margin-bottom: 0;
    }
    
    /* CTA Section Responsive */
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons .primary-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer Responsive */
    .enhanced-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .enhanced-footer .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .enhanced-footer .footer-top {
        padding: 60px 0 30px;
    }
    
    .enhanced-footer .footer-logo h2 {
        font-size: 2rem;
    }
    
    .enhanced-footer .footer-logo p {
        font-size: 1rem;
    }
    
    .enhanced-footer .link-column h3 {
        font-size: 1.2rem;
    }
    
    .enhanced-footer .footer-contact h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 1rem;
    }
    
    .enhanced-footer .social-links {
        justify-content: center;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding: 0;
    }
    
    .stat-box {
        padding: 20px 15px;
        margin: 0;
        width: 100%;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
    
    .stat-box p {
        font-size: 0.9rem;
    }
    
    /* Section Headers Mobile */
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card .icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Core Services Mobile */
    .core-services {
        padding: 40px 0;
    }
    
    .service-detail {
        gap: 20px;
        margin-bottom: 40px;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .chart-container {
        padding: 15px;
    }
    
    .chart-container h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto 15px;
    }
    
    .service-features {
        text-align: left;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    /* Charts and Metrics Mobile */
    .metrics-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .metric-circle svg {
        width: 80px;
        height: 80px;
    }
    
    .platform-coverage {
        margin-top: 20px;
    }
    
    .platform-item {
        margin-bottom: 10px;
    }
    
    .platform-name {
        font-size: 0.9rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .bar-chart-reporting {
        gap: 8px;
    }
    
    .bar-item {
        margin-bottom: 8px;
    }
    
    .bar-label {
        font-size: 0.8rem;
        width: 30px;
    }
    
    .bar-value {
        font-size: 0.8rem;
    }
    
    .donut-charts {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .donut-chart svg {
        width: 120px;
        height: 120px;
    }
    
    /* Reports Mobile */
    .report-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Benefits Mobile */
    .benefits-highlight {
        padding: 25px 20px;
    }
    
    .highlight-icon i {
        font-size: 2.5rem;
    }
    
    .benefits-highlight h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    /* CTA Mobile */
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .enhanced-footer .footer-links {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .enhanced-footer .link-column {
        width: 100%;
        text-align: center;
    }
    
    .enhanced-footer .footer-logo h2 {
        font-size: 1.5rem;
    }
    
    .enhanced-footer .footer-logo p {
        font-size: 0.9rem;
    }
    
    .enhanced-footer .link-column h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .enhanced-footer .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .enhanced-footer .footer-contact {
        width: 100%;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .enhanced-footer .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .enhanced-footer .footer-top {
        padding: 50px 0 25px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Fix for missing hamburger display */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    header .container {
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 640px) {
    .hero-stats {
        padding: 0;
        margin-top: 25px;
        gap: 15px;
    }
    
    .stat-box {
        padding: 18px 12px;
        border-radius: 6px;
    }
    
    .stat-box h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .stat-box p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .reports-list-home .report-item {
        padding: 20px 15px;
    }
    
    .report-content h3 {
        font-size: 1.1rem;
    }
    
    .report-content p {
        font-size: 0.9rem;
    }
    
    .leak-detected {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .report-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Header Mobile Styles */
header {
    position: relative;
    background: var(--light-bg);
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark-text);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Hamburger Animation */
.hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Fix for Mobile Navigation */
@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--light-bg);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    body {
        padding-top: 80px; /* Account for fixed header */
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-bg);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 5px 0;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}
