/* ============================================
   ClearSkyHosting - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385db;
    --secondary-color: #00b8d4;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --text-muted: #9a9a9a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-medium);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.text-muted {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
}

.btn-login {
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 0.375rem;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-with-image {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.93) 0%, rgba(0, 76, 153, 0.90) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: var(--bg-white);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
}

.hero-feature-item .feature-icon {
    font-weight: bold;
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero .btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.hero .btn-secondary:hover {
    background-color: transparent;
    color: var(--bg-white);
}

/* Trust Stats Section */
.trust-stats {
    background-color: var(--bg-light);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-with-image {
    min-height: 350px;
    display: flex;
    align-items: center;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 76, 153, 0.89) 100%);
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    font-size: 2.75rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: var(--bg-white);
    opacity: 0.98;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.services-overview .section-subtitle {
    text-align: center;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 2rem;
}

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

.service-card h3 {
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Compliance Section */
.compliance {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.compliance h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.compliance .section-subtitle {
    text-align: center;
}

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

.compliance-badge {
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.compliance-badge h4 {
    margin-bottom: 0.5rem;
}

.compliance-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

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

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.feature-enhanced {
    background-color: var(--bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-enhanced:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-enhanced:hover .feature-image img {
    transform: scale(1.08);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-with-bg {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 76, 153, 0.88) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Service Detail Pages */
.service-content,
.compliance-content,
.about-content,
.contact-content {
    padding: 4rem 0;
}

.content-intro,
.content-main {
    margin-bottom: 3rem;
}

.features-list,
.why-list {
    margin: 2rem 0;
}

.feature-item,
.why-item {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
}

.feature-item h3,
.why-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Compact Feature Lists */
.feature-list-compact {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list-compact li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.feature-list-compact li:last-child {
    border-bottom: none;
}

.feature-list-compact li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.feature-list-compact li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Key Features Pills */
.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.feature-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    transition: var(--transition);
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

.compliance-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.compliance-card .compliance-icon {
    width: 50px;
    height: 50px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.compliance-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.compliance-card h3 {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.compliance-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.compliance-card li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.compliance-commitment {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

/* About Page */
.about-values {
    margin: 3rem 0;
}

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

.value-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.company-info-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

.company-details p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.25rem;
}

.contact-info li {
    list-style: none;
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-checkbox label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Login Page */
.login-page {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
}

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

.login-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    margin-bottom: 0.5rem;
}

.login-info {
    background-color: var(--warning-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    text-align: center;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

/* CTA Box */
.cta-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.footer-content {
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--bg-light);
    font-size: 0.875rem;
}

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

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

.footer-section a {
    color: var(--bg-light);
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cert-badge {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 2rem 0;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-menu.active li {
        width: 100%;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 1rem 1.5rem;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1,
    .hero-with-image h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-with-image {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .services-grid,
    .compliance-grid,
    .features-grid,
    .features-grid-enhanced,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-image,
    .feature-image {
        height: 180px;
    }
    
    .cta-section h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .page-header {
        padding: 3rem 0;
    }
    
    .login-box,
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
    }
}

/* ============================================
   Service Pages - Enhanced Styles
   ============================================ */

/* Product Grid (cards used across Hosting/Services/Pricing/Support) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.product-card {
    display: block;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at 20% 0%, rgba(0, 102, 204, 0.12), transparent 40%),
                radial-gradient(600px circle at 80% 120%, rgba(0, 184, 212, 0.12), transparent 35%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 204, 0.35);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card * {
    position: relative;
    z-index: 1;
}

.product-card .product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 0 auto 1.25rem auto;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.08) 100%);
    transform: scale(1.05);
}

.product-card .product-card__icon,
.product-card__icon {
    font-size: 2.5rem;
    margin: 0 auto 1.25rem auto;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    color: var(--primary-color);
    transition: var(--transition);
}

.product-card:hover .product-card__icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.08) 100%);
    transform: scale(1.05);
}

.product-card h3,
.product-card h4 {
    margin-bottom: 0.5rem;
}

.product-card p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.product-card .product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-card.product-card-static {
    cursor: default;
}

.product-card.product-card-static:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--border-color);
}

/* Secondary CTA Buttons */
.secondary-cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Split section */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2.5rem 0;
    align-items: center;
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.75rem;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
}

/* Status page */
.status-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 0.45rem;
    background: var(--success-color);
    box-shadow: 0 0 0 6px rgba(40, 167, 69, 0.15);
    flex: 0 0 auto;
}

.status-banner.status-ok h2 {
    margin-bottom: 0.25rem;
}

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

.status-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

.status-name {
    font-weight: 600;
    color: var(--text-dark);
}

.status-pill {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid;
}

.status-pill.ok {
    color: #146c2e;
    background: rgba(40, 167, 69, 0.12);
    border-color: rgba(40, 167, 69, 0.25);
}

.notice-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
}

.notice-card h4 {
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    .section-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-image {
        order: -1;
    }
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-card p {
    font-size: 1rem;
    opacity: 0.95;
    color: white;
    margin: 0;
}

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

.price-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(51, 133, 219, 0.05));
    box-shadow: var(--shadow-md);
    position: relative;
}

.price-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

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

.price-card ul li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tech-item {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.tech-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.tech-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tech-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* SLA Grid */
.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sla-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--success-color);
}

.sla-item h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.sla-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Simple List */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.simple-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.simple-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.trust-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

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

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 2.5rem;
    margin: 0 auto 1rem auto;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.trust-item h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Feature Items */
.feature-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 768px) {
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .highlight-card {
        padding: 1.5rem 1rem;
    }
    
    .highlight-card h3 {
        font-size: 2rem;
    }
    
    .pricing-grid,
    .tech-grid,
    .sla-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .price-card,
    .tech-item,
    .sla-item {
        padding: 1rem;
    }
}

