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

/* Image loading optimizations */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Skeleton/placeholder for images while loading */
img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 0.7;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Ensure images maintain aspect ratio during loading */
img[data-src] {
    min-height: 200px;
    object-fit: cover;
}

/* Error state for failed images */
img.error {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.9rem;
}

img.error::after {
    content: "Image unavailable";
}

/* Loading state improvements */
img.lazy-loading {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

/* Smooth transitions for all image states */
img {
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Critical images (above the fold) should load immediately */
.hero-image img,
.nav-logo img {
    loading: eager;
}

/* Page loading state */
body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: white;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 28px;
    height: 28px;
    display: block;
}

.nav-logo h2 {
    color: #0066cc;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

/* Differentiators */
.differentiators {
    padding: 80px 0;
}

.differentiators h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diff-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.diff-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #0066cc;
}

.service-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.services-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #0066cc;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

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

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

.cta-section .btn-primary {
    background-color: white;
    color: #0066cc;
}

.cta-section .btn-primary:hover {
    background-color: #f8fafc;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* Footer */
.footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #0066cc;
}

.footer-section h4 a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section h4 a:hover {
    color: #004499;
    text-decoration: underline;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.page-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    margin: 0;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.3;
}

.page-content {
    padding: 80px 0;
}

/* Terms of Service specific styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.terms-section h2 {
    color: #1a202c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

.terms-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.terms-section strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #0066cc;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

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

/* Technical specs table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table th {
    background-color: #0066cc;
    color: white;
    font-weight: 600;
}

.specs-table tr:hover {
    background-color: #f8fafc;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #0066cc;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-card .price-period {
    color: #666;
    font-size: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Facility tour gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-content {
    padding: 1.5rem;
}

.gallery-item h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

/* Booking calendar */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Scroll indicator */
.scroll-indicator {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border: 1px solid #cbd5e0;
    animation: pulse-glow 2s ease-in-out infinite;
}

.scroll-indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #0066cc;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 102, 204, 0.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.calendar-day {
    background: white;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: none;
    border: 1px solid #e2e8f0;
    position: relative;
}

.calendar-day:hover {
    background-color: #f8fafc;
    transform: scale(1.05);
    z-index: 1;
    border-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.calendar-day.available {
    background-color: #e6f7ff;
    color: #0066cc;
    border-color: #b3d9ff;
}

.calendar-day.booked {
    background-color: #ffebee;
    color: #d32f2f;
    cursor: not-allowed;
    border-color: #ffcdd2;
}

.calendar-day.selected {
    background-color: #0066cc;
    color: white;
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.calendar-day.dragging {
    background-color: #004499;
    color: white;
    transform: scale(1.05);
    z-index: 1;
}

.calendar-day.adjacent-month {
    background-color: #f7fafc;
    color: #a0aec0;
    opacity: 0.7;
}

.calendar-day.adjacent-month:hover {
    background-color: #edf2f7;
    color: #4a5568;
    opacity: 0.9;
}

.calendar-day.adjacent-month.selected {
    background-color: #0066cc;
    color: white;
    opacity: 1;
}

/* Multi-day booking styles */
.multi-day-toggle {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.multi-day-toggle .checkbox-label {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.calendar-instructions {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

.selected-dates-display {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e6f7ff;
    border-radius: 10px;
    border: 1px solid #0066cc;
}

.selected-dates-display h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.selected-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-date {
    background: #0066cc;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.multi-day-fields {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.multi-day-fields h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span:first-child {
    color: #666;
}

.pricing-row span:last-child {
    font-weight: 600;
    color: #0066cc;
}

/* Additional styles for services page */
.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.3rem 0;
    color: #666;
}

.service-card ul li:before {
    content: "✓ ";
    color: #0066cc;
    font-weight: bold;
}

.service-features {
    margin: 4rem 0;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.testing-process {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.consulting-services {
    margin: 4rem 0;
}

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

.consulting-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0066cc;
}

.consulting-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.consulting-card ul {
    list-style: none;
    margin: 1rem 0;
}

.consulting-card ul li {
    padding: 0.3rem 0;
    color: #666;
}

.consulting-card ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.enterprise-services {
    margin: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    border-radius: 10px;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.enterprise-text {
    margin-left: 2rem;
}

.enterprise-text h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.enterprise-text ul {
    list-style: none;
    margin: 1rem 0;
}

.enterprise-text ul li {
    padding: 0.3rem 0;
    color: #666;
}

.enterprise-text ul li:before {
    content: "✓ ";
    color: #0066cc;
    font-weight: bold;
}

.enterprise-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 10px;
}

.services-cta h2 {
    margin-bottom: 1rem;
}

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

.services-cta .btn-primary {
    background-color: white;
    color: #0066cc;
}

.services-cta .btn-primary:hover {
    background-color: #f8fafc;
}

.services-cta .btn-secondary {
    border-color: white;
    color: white;
}

.services-cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* Active navigation link */
.nav-menu a.active {
    color: #0066cc;
    font-weight: 600;
}

/* Technical specifications page styles */
.spec-section {
    margin: 4rem 0;
}

.spec-section h2 {
    color: #0066cc;
    margin-bottom: 2rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.spec-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

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

.layout-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.layout-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.layout-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.layout-item ul {
    list-style: none;
    text-align: left;
}

.layout-item ul li {
    padding: 0.3rem 0;
    color: #666;
}

.layout-item ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

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

.connectivity-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.connectivity-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.connectivity-item ul {
    list-style: none;
}

.connectivity-item ul li {
    padding: 0.3rem 0;
    color: #666;
}

.connectivity-item ul li:before {
    content: "✓ ";
    color: #0066cc;
    font-weight: bold;
}

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

.safety-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #0066cc;
}

.safety-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.safety-item ul {
    list-style: none;
}

.safety-item ul li {
    padding: 0.3rem 0;
    color: #666;
}

.safety-item ul li:before {
    content: "• ";
    color: #666;
}

/* Emojis for Dosimetry section headings */
.dosimetry-realtime h3:before {
    content: "📊 ";
}

.dosimetry-area h3:before {
    content: "📡 ";
}

.dosimetry-personnel h3:before {
    content: "🧑‍⚕️ ";
}

/* Safety item emojis */
.safety-item.radiation-monitoring h3:before {
    content: "☢️ ";
}

.safety-item.access-control h3:before {
    content: "🛡️ ";
}

.safety-item.emergency-systems h3:before {
    content: "🚨 ";
}

/* Fallback for other safety items (like ITAR) */
.safety-item:not(.dosimetry-realtime):not(.dosimetry-area):not(.dosimetry-personnel):not(.radiation-monitoring):not(.access-control):not(.emergency-systems) h3:before {
    content: "🛡️ ";
}

.material-handling {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.handling-content h3 {
    color: #0066cc;
    margin: 1.5rem 0 1rem;
}

.handling-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.handling-content ul li {
    padding: 0.3rem 0;
    color: #666;
}

.handling-content ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

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

.shielding-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shielding-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.shielding-item ul {
    list-style: none;
}

.shielding-item ul li {
    padding: 0.3rem 0;
    color: #666;
}

.shielding-item ul li:before {
    content: "✓ ";
    color: #0066cc;
    font-weight: bold;
}

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

.publication-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.publication-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.publication-item ul {
    list-style: none;
}

.publication-item ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e2e8f0;
}

.publication-item ul li:last-child {
    border-bottom: none;
}

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

.download-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.download-item:hover {
    border-color: #0066cc;
}

.download-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.download-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.custom-requirements {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.custom-requirements h2 {
    margin-bottom: 1rem;
    border-bottom: none;
}

.custom-requirements p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.custom-requirements .btn-primary {
    background-color: white;
    color: #0066cc;
}

.custom-requirements .btn-primary:hover {
    background-color: #f8fafc;
}

.custom-requirements .btn-secondary {
    border-color: white;
    color: white;
}

.custom-requirements .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* Booking page styles */
.booking-overview {
    margin: 4rem 0;
}

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

.booking-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.booking-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-feature h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.booking-calendar-section {
    margin: 4rem 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-controls {
    display: flex;
    gap: 1rem;
}

.calendar-legend {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background-color: #e6f7ff;
    border: 1px solid #0066cc;
}

.legend-color.booked {
    background-color: #ffebee;
    border: 1px solid #d32f2f;
}

.legend-color.selected {
    background-color: #0066cc;
}

.booking-form {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 4rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.pricing-summary {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.pricing-summary h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-item.premium {
    color: #d32f2f;
    font-weight: 500;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    border-top: 2px solid #0066cc;
    margin-top: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.alternative-booking {
    margin: 4rem 0;
    text-align: center;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-method h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.booking-faq {
    margin: 4rem 0;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

/* Pricing page styles */
.pricing-section {
    margin: 4rem 0;
}

.premium-pricing {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.premium-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.premium-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.premium-rate {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 1rem;
}

.block-rates {
    margin: 4rem 0;
    scroll-margin-top: 2rem;
}

.block-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Block Rate Slider */
.block-slider-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.slider-header {
    text-align: center;
    margin-bottom: 2rem;
}

.slider-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    width: 100%;
    max-width: 300px;
    position: relative;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: #2563eb;
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    width: 100%;
    position: relative;
}

.slider-labels span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    transform: translateX(-50%);
}

.slider-labels span:nth-child(1) {
    left: 12px;
}

.slider-labels span:nth-child(2) {
    left: calc(25% + 6px);
}

.slider-labels span:nth-child(3) {
    left: 50%;
}

.slider-labels span:nth-child(4) {
    left: calc(75% - 6px);
}

.slider-labels span:nth-child(5) {
    left: calc(100% - 12px);
}

.block-card-dynamic {
    text-align: center;
}

.block-card-dynamic .block-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.block-card-dynamic .discount {
    background: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.block-card-dynamic ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.block-card-dynamic ul li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.block-card-dynamic ul li.empty {
    opacity: 0;
    pointer-events: none;
}

.block-card-dynamic ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.block-card-dynamic .total-cost {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.additional-services {
    margin: 4rem 0;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.payment-terms {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.term-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.term-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.term-item ul {
    list-style: none;
}

.term-item ul li {
    padding: 0.3rem 0;
    color: #666;
}

.term-item ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.pricing-calculator {
    margin: 4rem 0;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calculator-form {
    max-width: 500px;
    margin: 0 auto;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.calc-row label {
    font-weight: 500;
    color: #333;
}

.calc-row input,
.calc-row select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    width: 200px;
}

.calc-result {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.calc-result h3 {
    color: #0066cc;
}

.pricing-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 10px;
}

.pricing-cta h2 {
    margin-bottom: 1rem;
}

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

.pricing-cta .btn-primary {
    background-color: white;
    color: #0066cc;
}

.pricing-cta .btn-primary:hover {
    background-color: #f8fafc;
}

.pricing-cta .btn-secondary {
    border-color: white;
    color: white;
}

.pricing-cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* About page styles */
.company-story {
    margin: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
}

.mission-item h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.mission-item p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.team-section {
    margin: 4rem 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.team-member h4 {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.advisory-board {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.advisory-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advisory-member h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.advisory-member h4 {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-section {
    margin: 4rem 0;
}

.timeline {
    position: relative;
    margin: 2rem 0;
}

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

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 150px;
    text-align: center;
    font-weight: 600;
    color: #0066cc;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 2rem;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.location-advantages {
    margin: 4rem 0;
}

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

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.advantage-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.values-section {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.value-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    text-align: center;
}

.value-item p {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.about-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border-radius: 10px;
}

.about-cta h2 {
    margin-bottom: 1rem;
}

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

.about-cta .btn-primary {
    background-color: white;
    color: #0066cc;
}

.about-cta .btn-primary:hover {
    background-color: #f8fafc;
}

.about-cta .btn-secondary {
    border-color: white;
    color: white;
}

.about-cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

/* Contact page styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-method h2 {
    color: #0066cc;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: 1.25rem;
}

/* Contact method highlighting for all blocks */
#general-inquiries,
#enterprise-sales,
#consulting-services,
#investor-relations {
    position: relative;
    transition: all 0.3s ease;
    scroll-margin-top: 6rem;
}

#general-inquiries.highlighted,
#enterprise-sales.highlighted,
#consulting-services.highlighted,
#investor-relations.highlighted {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

#general-inquiries.highlighted h2,
#enterprise-sales.highlighted h2,
#consulting-services.highlighted h2,
#investor-relations.highlighted h2 {
    color: white;
}

#general-inquiries.highlighted p,
#enterprise-sales.highlighted p,
#consulting-services.highlighted p,
#investor-relations.highlighted p,
#general-inquiries.highlighted .contact-details p,
#enterprise-sales.highlighted .contact-details p,
#consulting-services.highlighted .contact-details p,
#investor-relations.highlighted .contact-details p {
    color: rgba(255, 255, 255, 0.9);
}

#general-inquiries.highlighted strong,
#enterprise-sales.highlighted strong,
#consulting-services.highlighted strong,
#investor-relations.highlighted strong {
    color: white;
}

/* Blue gradient halo effect for all contact blocks */
#general-inquiries.highlighted::before,
#enterprise-sales.highlighted::before,
#consulting-services.highlighted::before,
#investor-relations.highlighted::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 68, 153, 0.2) 100%);
    border-radius: 15px;
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Contact link styling */
a[href^="mailto:"], a[href^="tel:"] {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="mailto:"]:hover, a[href^="tel:"]:hover {
    color: #004499;
    text-decoration: underline;
}

/* Ensure contact links maintain styling in highlighted sections */
#general-inquiries.highlighted a[href^="mailto:"],
#enterprise-sales.highlighted a[href^="mailto:"],
#consulting-services.highlighted a[href^="mailto:"],
#investor-relations.highlighted a[href^="mailto:"],
#general-inquiries.highlighted a[href^="tel:"],
#enterprise-sales.highlighted a[href^="tel:"],
#consulting-services.highlighted a[href^="tel:"],
#investor-relations.highlighted a[href^="tel:"] {
    color: white;
}

#general-inquiries.highlighted a[href^="mailto:"]:hover,
#enterprise-sales.highlighted a[href^="mailto:"]:hover,
#consulting-services.highlighted a[href^="mailto:"]:hover,
#investor-relations.highlighted a[href^="mailto:"]:hover,
#general-inquiries.highlighted a[href^="tel:"]:hover,
#enterprise-sales.highlighted a[href^="tel:"]:hover,
#consulting-services.highlighted a[href^="tel:"]:hover,
#investor-relations.highlighted a[href^="tel:"]:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-form-section {
    margin: 4rem 0;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility-location {
    margin: 4rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.location-info h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.address {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.location-details h4,
.visitor-info h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.location-details ul,
.visitor-info ul {
    list-style: none;
}

.location-details ul li,
.visitor-info ul li {
    padding: 0.3rem 0;
    color: #666;
}

.location-details ul li:before,
.visitor-info ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.location-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.location-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #0066cc;
}

.location-box h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-box ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e2e8f0;
}

.location-box ul li:last-child {
    border-bottom: none;
}

.location-box ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.map-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.map-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.map-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.emergency-contact {
    margin: 4rem 0;
    background: #ffebee;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact h2 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.emergency-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-faq {
    margin: 4rem 0;
}

/* Facility tour page styles */
.tour-intro {
    margin: 4rem 0;
    text-align: center;
}

.tour-intro h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.tour-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.virtual-tour {
    margin: 4rem 0;
}

.tour-video {
    position: relative;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tour-video img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button {
    background: rgba(0, 102, 204, 0.9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 102, 204, 1);
}

.tour-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.facility-highlights {
    margin: 4rem 0;
}

.architectural-features {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

.features-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-item.featured {
    border: 2px solid #0066cc;
}

.comparison-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item ul li {
    padding: 0.5rem 0;
    color: #666;
}

.comparison-item ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.safety-features {
    margin: 4rem 0;
}

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

.safety-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.safety-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.safety-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #0066cc;
}

.safety-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.equipment-showcase {
    margin: 4rem 0;
}

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

.equipment-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.equipment-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #0066cc;
}

.equipment-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

.schedule-tour {
    margin: 4rem 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.schedule-tour h2 {
    margin-bottom: 2rem;
}

.tour-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    text-align: left;
}

.tour-details h3,
.tour-requirements h3 {
    color: white;
    margin-bottom: 1rem;
}

.tour-details ul,
.tour-requirements ul {
    list-style: none;
}

.tour-details ul li,
.tour-requirements ul li {
    padding: 0.3rem 0;
    opacity: 0.9;
}

.tour-details ul li:before,
.tour-requirements ul li:before {
    content: "• ";
    color: white;
    font-weight: bold;
}

.tour-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.schedule-tour .btn-primary {
    background-color: white;
    color: #0066cc;
}

.schedule-tour .btn-primary:hover {
    background-color: #f8fafc;
}

.schedule-tour .btn-secondary {
    border-color: white;
    color: white;
}

.schedule-tour .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
}

.tour-testimonials {
    margin: 4rem 0;
}

/* Blog/Resources page styles */
.featured-article {
    margin: 4rem 0;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-card.featured img {
    height: 300px;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-date {
    color: #666;
}

.article-category {
    background: #0066cc;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-content h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.resource-categories {
    margin: 4rem 0;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0066cc;
}

.category-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card ul li {
    padding: 0.3rem 0;
    color: #666;
}

.category-card ul li:before {
    content: "• ";
    color: #0066cc;
    font-weight: bold;
}

.recent-articles {
    margin: 4rem 0;
}

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

.educational-resources {
    margin: 4rem 0;
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 10px;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.resource-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.resource-item ul {
    list-style: none;
}

.resource-item ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.resource-item ul li:last-child {
    border-bottom: none;
}

.resource-item ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-item ul li a:hover {
    color: #0066cc;
}

.publications {
    margin: 4rem 0;
}

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

.publication-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.publication-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.publication-item ul {
    list-style: none;
}

.publication-item ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e2e8f0;
}

.publication-item ul li:last-child {
    border-bottom: none;
}

.newsletter-signup {
    margin: 4rem 0;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.newsletter-signup h2 {
    margin-bottom: 1rem;
}

.newsletter-signup p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.newsletter-form .btn-primary {
    background-color: white;
    color: #0066cc;
    border: none;
}

.newsletter-form .btn-primary:hover {
    background-color: #f8fafc;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.content-contact {
    margin: 4rem 0;
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 10px;
}

.content-contact h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.content-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        bottom: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Smooth scrolling for mobile menu */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Ensure menu items are properly spaced for scrolling */
    .nav-menu li:first-child {
        margin-top: 0.5rem;
    }
    
    .nav-menu li:last-child {
        margin-bottom: 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 60px 0 20px;
        min-height: 140px;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-grid,
    .diff-grid,
    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-section,
    .premium-pricing {
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        overflow: hidden;
    }
    
    .pricing-grid {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        position: relative;
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
    
    .pricing-card {
        flex: 0 0 280px;
        margin: 0 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Premium grid mobile horizontal scroll */
    .premium-grid {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        position: relative;
        width: max-content;
        margin: 0 auto;
        justify-content: center;
    }
    
    .premium-item {
        flex: 0 0 250px;
        margin: 0 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .calendar-day {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
