/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #10b981;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header
   ============================================ */
.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
    transition: var(--transition);
}

/* Logo SVG Animations */
.logo-server-top {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.6s ease-out 0.1s forwards;
}

.logo-server-mid {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.6s ease-out 0.3s forwards;
}

.logo-server-bottom {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInLeft 0.6s ease-out 0.5s forwards;
}

.logo-dot {
    opacity: 0;
    animation: fadeInScale 0.4s ease-out 0.7s forwards;
}

.logo-node {
    opacity: 0;
    transform: scale(0);
}

.logo-node:nth-of-type(1) {
    animation: nodePop 0.4s ease-out 0.8s forwards;
}

.logo-node:nth-of-type(2) {
    animation: nodePop 0.4s ease-out 0.9s forwards;
}

.logo-node:nth-of-type(3) {
    animation: nodePop 0.4s ease-out 1s forwards;
}

.logo-arc {
    opacity: 0;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
}

.logo-arc:nth-of-type(1) {
    animation: drawArc 0.5s ease-out 1.1s forwards;
}

.logo-arc:nth-of-type(2) {
    animation: drawArc 0.5s ease-out 1.2s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nodePop {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawArc {
    to {
        opacity: 0.6;
        stroke-dashoffset: 0;
    }
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo-text-domain {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Logo Hover Effects */
.logo:hover .logo-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.4));
}

.logo:hover .logo-text-main {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-text-domain {
    color: var(--primary-color);
}

.logo:hover .logo-node {
    animation: nodePulse 1s ease-in-out infinite;
}

.logo:hover .logo-node:nth-of-type(1) {
    animation-delay: 0s;
}

.logo:hover .logo-node:nth-of-type(2) {
    animation-delay: 0.33s;
}

.logo:hover .logo-node:nth-of-type(3) {
    animation-delay: 0.66s;
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Logo Active State */
.logo:active .logo-container {
    transform: scale(0.95);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-text-main {
        font-size: 1.2rem;
    }
    
    .logo-text-domain {
        font-size: 0.8rem;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.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.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav.active .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background-color: var(--bg-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

#reseller .section-header::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

#ircd-hosting .section-header::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

/* ============================================
   Animated Logos
   ============================================ */
.animated-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
}

.animated-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.animated-logo svg * {
    transform-origin: 50% 50%;
}

/* Web Hosting Logo Animations */
.web-logo .logo-circle {
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    animation: drawCircle 2s ease-in-out forwards;
}

.web-logo .logo-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 1s ease-in-out 1.5s forwards;
}

.web-logo .logo-dot {
    opacity: 0;
    animation: fadeInScale 0.5s ease-in-out 2.5s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reseller Logo Animations */
.reseller-logo .logo-box {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: drawBox 1.5s ease-in-out forwards;
}

.reseller-logo .logo-box-inner {
    opacity: 0;
    transform: scale(0);
}

.reseller-logo .logo-box-inner:nth-child(2) {
    animation: boxPop 0.4s ease-in-out 1.5s forwards;
}

.reseller-logo .logo-box-inner:nth-child(3) {
    animation: boxPop 0.4s ease-in-out 1.7s forwards;
}

.reseller-logo .logo-box-inner:nth-child(4) {
    animation: boxPop 0.4s ease-in-out 1.9s forwards;
}

.reseller-logo .logo-box-inner:nth-child(5) {
    animation: boxPop 0.4s ease-in-out 2.1s forwards;
}

@keyframes drawBox {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes boxPop {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* IRCd Logo Animations */
.ircd-logo .logo-ring {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: drawRing 1.5s ease-in-out forwards;
}

.ircd-logo .logo-diamond {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawDiamond 1s ease-in-out 1.5s forwards;
}

.ircd-logo .logo-center {
    opacity: 0;
    animation: pulseCenter 0.5s ease-in-out 2.5s forwards;
}

.ircd-logo .logo-node {
    opacity: 0;
    transform: scale(0);
}

.ircd-logo .logo-node:nth-child(4) {
    animation: nodePop 0.3s ease-in-out 2.7s forwards;
}

.ircd-logo .logo-node:nth-child(5) {
    animation: nodePop 0.3s ease-in-out 2.9s forwards;
}

.ircd-logo .logo-node:nth-child(6) {
    animation: nodePop 0.3s ease-in-out 3.1s forwards;
}

.ircd-logo .logo-node:nth-child(7) {
    animation: nodePop 0.3s ease-in-out 3.3s forwards;
}

@keyframes drawRing {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawDiamond {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseCenter {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nodePop {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Effects */
.animated-logo:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.web-logo:hover .logo-circle {
    animation: rotateCircle 2s linear infinite;
    transform-origin: 50% 50%;
}

.reseller-logo:hover .logo-box-inner {
    animation: boxBounce 0.5s ease-in-out infinite;
}

.reseller-logo:hover .logo-box-inner:nth-child(2) {
    animation-delay: 0s;
}

.reseller-logo:hover .logo-box-inner:nth-child(3) {
    animation-delay: 0.1s;
}

.reseller-logo:hover .logo-box-inner:nth-child(4) {
    animation-delay: 0.2s;
}

.reseller-logo:hover .logo-box-inner:nth-child(5) {
    animation-delay: 0.3s;
}

.ircd-logo:hover .logo-node {
    animation: nodePulse 1s ease-in-out infinite;
}

.ircd-logo:hover .logo-node:nth-child(4) {
    animation-delay: 0s;
}

.ircd-logo:hover .logo-node:nth-child(5) {
    animation-delay: 0.25s;
}

.ircd-logo:hover .logo-node:nth-child(6) {
    animation-delay: 0.5s;
}

.ircd-logo:hover .logo-node:nth-child(7) {
    animation-delay: 0.75s;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes boxBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Linux Sunucu Logo Animations */
.linux-logo .logo-frame {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: drawFrame 1.5s ease-in-out forwards;
}

.linux-logo .logo-terminal {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawTerminal 1s ease-in-out 1.5s forwards;
}

.linux-logo .logo-core {
    opacity: 0;
    animation: fadeInCore 0.5s ease-in-out 2.5s forwards;
}

.linux-logo .logo-cross {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawCross 0.5s ease-in-out 3s forwards;
}

@keyframes drawFrame {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawTerminal {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInCore {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawCross {
    to {
        stroke-dashoffset: 0;
    }
}

.linux-logo:hover .logo-core {
    animation: corePulse 1s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Masaüstü Sunucu Logo Animations */
.desktop-logo .logo-monitor {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: drawMonitor 1.5s ease-in-out forwards;
}

.desktop-logo .logo-stand {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: drawStand 0.5s ease-in-out 1.5s forwards;
}

.desktop-logo .logo-base {
    opacity: 0;
    animation: fadeInBase 0.3s ease-in-out 2s forwards;
}

.desktop-logo .logo-screen {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawScreen 0.8s ease-in-out 2.3s forwards;
}

.desktop-logo .logo-cursor {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCursor 0.5s ease-in-out 3.1s forwards;
}

@keyframes drawMonitor {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawStand {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes drawScreen {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCursor {
    to {
        stroke-dashoffset: 0;
    }
}

.desktop-logo:hover .logo-cursor {
    animation: cursorMove 1s ease-in-out infinite;
}

@keyframes cursorMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(3px, -3px);
    }
}

/* Dedicated Sunucu Logo Animations */
.dedicated-logo .logo-server {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: drawServer 1.5s ease-in-out forwards;
}

.dedicated-logo .logo-slot {
    opacity: 0;
    transform: translateX(-10px);
}

.dedicated-logo .logo-slot:nth-child(2) {
    animation: slotSlide 0.4s ease-in-out 1.5s forwards;
}

.dedicated-logo .logo-slot:nth-child(3) {
    animation: slotSlide 0.4s ease-in-out 1.7s forwards;
}

.dedicated-logo .logo-slot:nth-child(4) {
    animation: slotSlide 0.4s ease-in-out 1.9s forwards;
}

.dedicated-logo .logo-slot:nth-child(5) {
    animation: slotSlide 0.4s ease-in-out 2.1s forwards;
}

.dedicated-logo .logo-led {
    opacity: 0;
}

.dedicated-logo .logo-led:nth-child(6) {
    animation: ledBlink 0.3s ease-in-out 2.3s forwards;
}

.dedicated-logo .logo-led:nth-child(7) {
    animation: ledBlink 0.3s ease-in-out 2.4s forwards;
}

.dedicated-logo .logo-led:nth-child(8) {
    animation: ledBlink 0.3s ease-in-out 2.5s forwards;
}

.dedicated-logo .logo-led:nth-child(9) {
    animation: ledBlink 0.3s ease-in-out 2.6s forwards;
}

@keyframes drawServer {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes slotSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 0.3;
        transform: translateX(0);
    }
}

@keyframes ledBlink {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dedicated-logo:hover .logo-led {
    animation: ledPulse 1s ease-in-out infinite;
}

.dedicated-logo:hover .logo-led:nth-child(6) {
    animation-delay: 0s;
}

.dedicated-logo:hover .logo-led:nth-child(7) {
    animation-delay: 0.25s;
}

.dedicated-logo:hover .logo-led:nth-child(8) {
    animation-delay: 0.5s;
}

.dedicated-logo:hover .logo-led:nth-child(9) {
    animation-delay: 0.75s;
}

@keyframes ledPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Hosting Gallery
   ============================================ */
.hosting-gallery {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   Hosting Sections
   ============================================ */
.hosting-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Web Hosting Section - Özel Efekt */
#web-hosting {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    position: relative;
}

#web-hosting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="webGrid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(37,99,235,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23webGrid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Reseller Section - Özel Efekt */
#reseller {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.1) 100%);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    position: relative;
}

#reseller::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="resellerGrid" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="50" height="50" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23resellerGrid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* IRCd Hosting Section - Özel Efekt */
#ircd-hosting {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(124, 58, 237, 0.1) 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    position: relative;
}

#ircd-hosting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ircdGrid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 0 0 L 100 100 M 100 0 L 0 100" stroke="rgba(139,92,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23ircdGrid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hosting-section.alt {
    background-color: var(--bg-light);
}

.hosting-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hosting-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.hosting-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

#reseller .hosting-info h3::after {
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

#ircd-hosting .hosting-info h3::after {
    background: linear-gradient(90deg, #8b5cf6, transparent);
}

.hosting-info > p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hosting-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hosting-feature {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hosting-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.hosting-feature:hover::before {
    opacity: 1;
}

.hosting-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

/* Web Hosting özellikleri için özel renk */
#web-hosting .hosting-feature:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
}

/* Reseller özellikleri için özel renk */
#reseller .hosting-feature:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

/* IRCd özellikleri için özel renk */
#ircd-hosting .hosting-feature:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3);
}

.hosting-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hosting-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hosting-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* IRCd Packages */
.ircd-packages {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.ircd-packages h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.ircd-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ircd-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ircd-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ircd-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ircd-item h5 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.ircd-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   Packages Section
   ============================================ */
.packages {
    background-color: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background-color: var(--bg-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.package-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -10px;
}

.package-badge.best {
    background-color: var(--accent-color);
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.package-footer {
    text-align: center;
}

/* ============================================
   Features Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background-color: var(--bg-light);
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Web Hosting paketleri için özel efekt */
#pricing .pricing-category:first-child .pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

/* Reseller paketleri için özel efekt */
#pricing .pricing-category:nth-child(2) .pricing-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

#pricing .pricing-category:nth-child(2) .pricing-card::before {
    background: linear-gradient(90deg, var(--accent-color), #059669);
}

/* IRCd paketleri için özel efekt */
#pricing .pricing-category:nth-child(3) .pricing-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.3);
}

#pricing .pricing-category:nth-child(3) .pricing-card::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.price-option {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.price-option:first-child {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================
   Support Section
   ============================================ */
.support {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.support-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.support-icon {
    font-size: 1.5rem;
}

.support-image {
    display: flex;
    justify-content: center;
}

.support-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.support-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.support-card p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.support-server {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: var(--transition);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-color);
}

.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(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.contact-form {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Floating Helper Character
   ============================================ */
.floating-helper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    animation: floatMove 20s ease-in-out infinite;
}

.helper-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    position: relative;
    animation: bounce 2s ease-in-out infinite;
    transition: var(--transition);
}

.helper-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}

.helper-face {
    font-size: 2.5rem;
    animation: wave 3s ease-in-out infinite;
}

.helper-bubble {
    position: absolute;
    bottom: 85px;
    right: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    max-width: 250px;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
    animation: bubblePulse 2s ease-in-out infinite;
}

.helper-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.helper-bubble p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bg-color);
}

/* Animations */
@keyframes floatMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-50px, -30px);
    }
    50% {
        transform: translate(-100px, 0);
    }
    75% {
        transform: translate(-50px, 30px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes bubblePulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    }
}

/* ============================================
   Package Info Modal
   ============================================ */
.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.package-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--bg-color);
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--bg-light);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin: 0;
}

.modal-body {
    padding: 2rem;
}

.package-prices {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.price-item-name {
    font-weight: 600;
    color: var(--text-color);
}

.price-item-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.account-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.account-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.account-details p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.8;
}

.account-details strong {
    color: var(--text-color);
    margin-right: 0.5rem;
}

.account-details span {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.payment-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.payment-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-helper {
        bottom: 20px;
        right: 20px;
    }

    .helper-avatar {
        width: 60px;
        height: 60px;
    }

    .helper-face {
        font-size: 2rem;
    }

    .helper-bubble {
        bottom: 75px;
        min-width: 180px;
        max-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .helper-bubble p {
        font-size: 0.8rem;
    }

    .modal-content {
        max-width: 100%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-image {
        height: 200px;
    }

    .animated-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .packages-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hosting-features-grid {
        grid-template-columns: 1fr;
    }

    .ircd-list {
        grid-template-columns: 1fr;
    }

    .price-option {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    .package-card,
    .pricing-card {
        padding: 1.5rem;
    }
}
