/* ================================================
   RESET & BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-support {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-support:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--dark-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-1 {
    top: 50px;
    left: 50px;
}

.card-2 {
    top: 150px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    left: 100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features {
    padding: 100px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
}

/* ================================================
   PRICING PREVIEW (Homepage)
   ================================================ */
.pricing-preview {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-color);
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-color);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================================
   PAGE HEADER (Hosting & VPS Pages)
   ================================================ */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header.vps-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* ================================================
   BILLING TOGGLE (Hosting Page)
   ================================================ */
.billing-toggle-section {
    padding: 40px 0;
    background: white;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.toggle-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* ================================================
   HOSTING & VPS PACKAGES - 4 Column Layout
   ================================================ */
.hosting-packages,
.vps-packages {
    padding: 60px 0 100px;
    background: var(--light-color);
}

.packages-grid,
.vps-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.package-card,
.vps-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover,
.vps-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.package-card.featured,
.vps-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.package-icon,
.vps-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.package-icon i,
.vps-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.gradient-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-icon i {
    color: white;
}

.package-header h3,
.vps-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.package-subtitle,
.vps-subtitle {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.package-price,
.vps-price {
    text-align: center;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

.package-features,
.vps-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-features h4,
.vps-features h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.package-features ul,
.vps-features ul {
    list-style: none;
}

.package-features li,
.vps-features li {
    padding: 0.65rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child,
.vps-features li:last-child {
    border-bottom: none;
}

.package-features li i,
.vps-features li i {
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.package-features .fa-check,
.vps-features .fa-check {
    color: #10b981;
}

.package-features .fa-times {
    color: #ef4444;
}

/* ================================================
   VPS SPECIFIC COMPONENTS
   ================================================ */

/* VPS Info Section */
.vps-info {
    padding: 100px 0;
    background: white;
}

.vps-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vps-info-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.vps-info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.info-features {
    display: grid;
    gap: 1.5rem;
}

.info-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.info-feature h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.info-feature p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

/* Server Illustration */
.server-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.server-unit {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: serverPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.server-unit:nth-child(2) {
    animation-delay: 1s;
}

.server-unit:nth-child(3) {
    animation-delay: 2s;
}

.server-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes serverPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.server-lights {
    display: flex;
    gap: 0.5rem;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.light.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.server-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

/* OS Selection */
.os-selection {
    margin-bottom: 3rem;
}

.os-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.os-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.os-tab i {
    font-size: 1.5rem;
}

.os-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.os-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* VPS Specs - 4 Column Optimized */
.vps-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding: 0.85rem;
    background: var(--light-color);
    border-radius: 8px;
}

.spec-item i {
    font-size: 1.35rem;
    color: var(--primary-color);
}

.spec-item strong {
    display: block;
    color: var(--dark-color);
    font-size: 1rem;
}

.spec-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Technical Features */
.vps-technical {
    padding: 100px 0;
    background: white;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.technical-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.technical-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.technical-icon i {
    font-size: 2rem;
    color: white;
}

.technical-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.technical-card p {
    color: var(--text-color);
}

/* OS Options */
.os-options {
    padding: 100px 0;
    background: var(--light-color);
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.os-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.os-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.os-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.os-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.case-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.case-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.case-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow);
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--dark-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: 12px 0 0 0;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.featured-col {
    background: rgba(37, 99, 235, 0.05);
}

.text-success {
    color: #10b981;
}

.text-danger {
    color: #ef4444;
}

/* ================================================
   ADDITIONAL FEATURES
   ================================================ */
.additional-features {
    padding: 100px 0;
    background: var(--light-color);
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   RIPPLE & TOOLTIP EFFECTS
   ================================================ */

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Package Tooltip */
.package-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
    margin-bottom: 0.5rem;
}

.package-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--dark-color);
}

/* ================================================
   RESPONSIVE DESIGN - 4 Column Layout
   ================================================ */

/* Large Desktops (1400px+) - 4 columns */
@media (min-width: 1400px) {
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .package-card,
    .vps-card {
        padding: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Desktop (1200px - 1399px) - 4 columns */
@media (min-width: 1200px) and (max-width: 1399px) {
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .package-card,
    .vps-card {
        padding: 1.75rem;
    }
}

/* Medium Desktop (992px - 1199px) - 3 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .vps-info-grid {
        grid-template-columns: 1fr;
    }
    
    .server-illustration {
        display: none;
    }
}

/* Tablet (768px - 991px) - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .vps-specs {
        grid-template-columns: 1fr;
    }
}

/* Mobile (576px - 767px) - 1 column */
@media (min-width: 576px) and (max-width: 767px) {
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card,
    .vps-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Small Mobile & General Mobile (max 767px) */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid,
    .pricing-grid,
    .packages-grid,
    .vps-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Small Mobile (max 575px) */
@media (max-width: 575px) {
    .package-card,
    .vps-card {
        padding: 1.5rem;
    }
    
    .package-header h3,
    .vps-header h3 {
        font-size: 1.35rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .vps-specs {
        grid-template-columns: 1fr;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
    
    .os-tabs {
        flex-direction: column;
    }
    
    .os-tab {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Mobile (max 400px) */
@media (max-width: 400px) {
    .package-card,
    .vps-card {
        padding: 1.25rem;
    }
    
    .package-features li,
    .vps-features li {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ================================================
   DOMAIN PAGE STYLES
   ================================================ */

/* Domain Header */
.domain-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Domain Search Section */
.domain-search-section {
    padding: 80px 0;
    background: white;
}

.domain-search-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.domain-search-box h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.domain-search-box p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.domain-search-form {
    margin-bottom: 2rem;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.search-input-group i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 1rem 0;
}

.search-input-group .btn {
    margin-left: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

/* Popular Extensions */
.popular-extensions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.popular-extensions span {
    font-weight: 600;
    color: var(--text-color);
}

.extension-tag {
    padding: 0.5rem 1.5rem;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s;
}

.extension-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Search Result */
.search-result {
    margin-top: 3rem;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-card.available {
    border-color: #10b981;
    background: linear-gradient(to right, #ecfdf5, white);
}

.result-card.unavailable {
    border-color: #ef4444;
    background: linear-gradient(to right, #fef2f2, white);
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-card.available .result-icon {
    background: #10b981;
}

.result-card.unavailable .result-icon {
    background: #ef4444;
}

.result-icon i {
    font-size: 2.5rem;
    color: white;
}

.result-info {
    flex: 1;
    text-align: left;
}

.result-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.result-status {
    font-size: 1.1rem;
    font-weight: 600;
}

.result-card.available .result-status {
    color: #10b981;
}

.result-card.unavailable .result-status {
    color: #ef4444;
}

.result-price {
    text-align: center;
    padding: 0 2rem;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-color);
}

/* Alternative Domains */
.alternative-domains {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
}

.alternative-domains h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.alternatives-grid {
    display: grid;
    gap: 1rem;
}

.alternative-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.alternative-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.alt-domain {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.alt-price {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-add-alt {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-alt:hover {
    background: var(--primary-color);
    color: white;
}

/* Domain Pricing */
.domain-pricing {
    padding: 100px 0;
    background: var(--light-color);
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-tab:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Pricing Content */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Domain Pricing Grid */
.domain-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.domain-price-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.domain-price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.domain-price-card.featured {
    border-color: #10b981;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.domain-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.domain-price-card.featured .domain-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.domain-extension {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.domain-price {
    margin-bottom: 0.5rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-old {
    font-size: 1.2rem;
    color: var(--text-color);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.domain-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.domain-features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.domain-features-list li:last-child {
    border-bottom: none;
}

.domain-features-list i {
    color: #10b981;
    font-size: 1rem;
}

/* Domain Transfer */
.domain-transfer {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.transfer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transfer-text i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.transfer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.transfer-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.transfer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.transfer-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.transfer-features i {
    font-size: 1.5rem;
    color: #10b981;
}

/* Transfer Steps */
.transfer-steps {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
}

.transfer-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.transfer-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Domain Features Section */
.domain-features-section {
    padding: 100px 0;
    background: white;
}

.domain-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.domain-feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.domain-feature-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-large i {
    font-size: 2rem;
    color: white;
}

.domain-feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.domain-feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ================================================
   DOMAIN PAGE RESPONSIVE
   ================================================ */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .domain-pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .domain-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .domain-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .domain-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .domain-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transfer-content {
        grid-template-columns: 1fr;
    }
    
    .transfer-illustration {
        order: -1;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .domain-search-box h2 {
        font-size: 2rem;
    }
    
    .search-input-group {
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
    }
    
    .search-input-group input {
        width: 100%;
        padding: 1rem;
    }
    
    .search-input-group .btn {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .result-card {
        flex-direction: column;
        text-align: center;
    }
    
    .result-info {
        text-align: center;
    }
    
    .result-price {
        border: none;
        padding: 1rem 0;
    }
    
    .domain-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tabs {
        flex-direction: column;
    }
    
    .pricing-tab {
        width: 100%;
        justify-content: center;
    }
    
    .transfer-content {
        grid-template-columns: 1fr;
    }
    
    .transfer-text i {
        font-size: 3rem;
    }
    
    .transfer-text h2 {
        font-size: 2rem;
    }
    
    .domain-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   ABOUT PAGE STYLES
   ================================================ */

/* About Header */
.about-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* About Story */
.about-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-text p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-info strong {
    display: block;
    font-size: 1.8rem;
    color: var(--dark-color);
    font-weight: 800;
}

.stat-info span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Story Image */
.story-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 8rem;
    color: #cbd5e1;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--text-color);
}

.badge-1 {
    top: 20px;
    left: -20px;
}

.badge-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 30px;
    left: 20px;
    animation-delay: 2s;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mission .mv-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.vision .mv-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
}

.mv-list i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.why-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem 2rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar i {
    font-size: 3rem;
    color: white;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: white;
    color: var(--primary-color);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.value-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: 1.25rem;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s;
}

.achievement-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.achievement-card:hover .achievement-icon {
    background: white;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: white;
}

.achievement-card:hover .achievement-icon i {
    color: var(--primary-color);
}

.achievement-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.achievement-info p {
    font-size: 0.9rem;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* ================================================
   ABOUT PAGE RESPONSIVE
   ================================================ */

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
    }
    
    .story-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-image {
        display: none;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   CONTACT PAGE STYLES
   ================================================ */

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
    margin-top: -50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-link:hover {
    gap: 0.75rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-header-left h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-header-left p {
    color: var(--text-color);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.75rem;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    animation: slideDown 0.5s ease-out;
}

.success-message {
    background: #ecfdf5;
    border: 2px solid #10b981;
    color: #065f46;
}

.success-message i {
    font-size: 1.5rem;
    color: #10b981;
}

.error-message {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.error-message i {
    font-size: 1.5rem;
    color: #ef4444;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.sidebar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sidebar-icon i {
    font-size: 1.5rem;
    color: white;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.sidebar-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Sidebar Social */
.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Contact Details */
.contact-details ul {
    list-style: none;
    text-align: left;
}

.contact-details ul li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-details ul li:last-child {
    border-bottom: none;
}

.contact-details ul li i {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details ul li div {
    flex: 1;
}

.contact-details ul li strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-details ul li span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: white;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 450px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-width: 350px;
}

.map-info-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.map-info-content p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.map-info-content p i {
    color: var(--primary-color);
}

.map-info-content .btn {
    margin-top: 1rem;
    width: 100%;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

/* ================================================
   CONTACT PAGE RESPONSIVE
   ================================================ */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        position: static;
        max-width: 100%;
        margin-top: 2rem;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper {
        border-radius: 12px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-info {
        position: static;
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
}