/* ============================================
   DNetCorp Inc - Complete Stylesheet
   Domain: dnetcorp.snet.com.my
   Version: 3.0 - Fixed for Windows Server
   ============================================ */

/* CSS Variables */
:root {
    --primary-dark: #0A2540;
    --primary: #0056B3;
    --primary-light: #2E6EB5;
    --secondary: #D4AF37;
    --secondary-dark: #B8960F;
    --accent: #00A86B;
    --dark: #1A2C3E;
    --gray-dark: #4A5568;
    --gray: #718096;
    --gray-light: #E2E8F0;
    --gray-lighter: #F7FAFC;
    --white: #FFFFFF;
    --black: #000000;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

h1 { font-size: 52px; }
h2 { font-size: 38px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.highlight {
    color: var(--secondary);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-left a,
.top-bar-left span {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.2s;
}

.top-bar-right a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--secondary);
}

/* Site Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--secondary);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.logo-text span {
    color: var(--secondary);
}

/* Navigation */
.main-nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
}

.nav-menu > li > a i {
    font-size: 12px;
    transition: transform 0.2s;
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s;
    z-index: 100;
    list-style: none;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-dark);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--gray-lighter);
    color: var(--primary);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.2s;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 1002;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
}

.mobile-nav-menu > li {
    margin-bottom: 15px;
}

.mobile-nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0A2540 0%, #0056B3 50%, #1a4d8c 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

.hero-badge span {
    font-size: 13px;
    color: var(--white);
}

.hero-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Hero Card */
.hero-card-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    max-width: 380px;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero-card-header i {
    font-size: 28px;
    color: var(--secondary);
}

.hero-card-header span {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero-stat {
    text-align: center;
}

.hero-stat i {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.hero-card-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.rating i {
    font-size: 12px;
    color: var(--secondary);
}

.rating span {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-left: 8px;
}

/* Trusted Section */
.trusted-section {
    padding: 40px 0;
    background: var(--gray-lighter);
    text-align: center;
}

.trusted-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-item img:hover {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-text {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,86,179,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.about-image-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-image-card i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-image-card h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.about-image-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    background: var(--gray-lighter);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.service-link:hover {
    gap: 12px;
}

.services-footer {
    text-align: center;
}

/* Why Us Section */
.whyus-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.whyus-section .section-label,
.whyus-section .section-title,
.whyus-section .section-subtitle {
    color: var(--white);
}

.whyus-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.whyus-card {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.whyus-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.whyus-icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whyus-icon i {
    font-size: 32px;
    color: var(--secondary);
}

.whyus-card h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
}

.whyus-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 0;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.result-item {
    padding: 20px;
}

.result-icon i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.result-label {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.testimonial-quote i {
    font-size: 32px;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card > p {
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.author-avatar i {
    font-size: 48px;
    color: var(--gray);
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cta-wrapper {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-logo span {
    color: var(--white);
}

.footer-logo span span {
    color: var(--secondary);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 20px;
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin-bottom: 0;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 320px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    overflow: hidden;
}

.live-chat-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-chat-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    background: #00A86B;
}

.live-chat-body {
    display: none;
    flex-direction: column;
    height: 400px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: var(--gray-lighter);
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.message.agent {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-avatar i {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
}

.message.agent .message-content {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.message.user .message-content {
    background: var(--primary);
    color: var(--white);
}

.message-content strong {
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
}

.message-content p {
    margin-bottom: 0;
    font-size: 13px;
}

.message-content small {
    display: block;
    font-size: 10px;
    margin-top: 6px;
    opacity: 0.7;
}

.chat-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid var(--gray-light);
    background: var(--white);
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: 40px;
    font-family: var(--font-primary);
    font-size: 13px;
    outline: none;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    background: var(--primary);
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-send-btn:hover {
    background: var(--primary-dark);
}

.chat-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid var(--gray-light);
    background: var(--gray-lighter);
}

.chat-footer small {
    font-size: 10px;
    color: var(--gray);
}

/* WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.08);
}

.whatsapp-button i {
    font-size: 30px;
    color: var(--white);
}

.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: var(--white);
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: #075E54;
    color: var(--white);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-popup-header span {
    flex: 1;
    font-weight: 600;
}

.whatsapp-popup-header button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.whatsapp-popup-body {
    padding: 16px;
}

.whatsapp-popup-body p {
    font-size: 13px;
    margin-bottom: 12px;
}

.whatsapp-start-chat {
    width: 100%;
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 0;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-card-wrapper {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 