/* ================================================
   DATAGEEKS CLOUD - ENHANCED CSS STYLES
   Modern, Professional Hosting Website Design
   ================================================ */

/* CSS Variables for Easy Customization */
:root {
    /* Primary Colors - New Vibrant Palette */
    --primary-color: #3A0048;
    --primary-dark: #1C0723;
    --primary-light: #F5628E;
    
    /* Secondary Colors */
    --secondary-color: #F5628E;
    --accent-color: #FFD600;
    --accent-dark: #E6C200;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #3A0048 0%, #1C0723 100%);
    --gradient-secondary: linear-gradient(135deg, #F5628E 0%, #3A0048 100%);
    --gradient-accent: linear-gradient(135deg, #FFD600 0%, #E6C200 100%);
    --gradient-dark: linear-gradient(135deg, #3A0048 0%, #1C0723 100%);
    --gradient-vibrant: linear-gradient(135deg, #F5628E 0%, #FFD600 100%);
    
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #2c3e50;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 15px;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ================================================
   GLOBAL STYLES
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================================
   CUSTOM SCROLLBAR
   ================================================ */

/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(58, 0, 72, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
    background-clip: content-box;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(58, 0, 72, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

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

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

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

/* Section Spacing */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

/* ================================================
   LOADING SCREEN
   ================================================ */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
    color: white;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

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

/* ================================================
   GDPR COOKIE BANNER
   ================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: white;
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.header {
    background: rgba(56,1,70,1.00);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.header.scrolled {
    background: rgba(28,7,35,1.00);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
    transition: padding var(--transition-normal);
}

.header.scrolled .navbar {
    padding: 10px 0;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    transition: var(--transition-normal);
}

.header.scrolled .navbar-brand .logo {
    height: 35px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-sm);
    margin: 2px 10px;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    margin-right: 10px;
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.navbar-toggler.collapsed span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Buttons */
.navbar-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    border-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-3d-graphics {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 40%;
    max-width: 500px;
    z-index: -1;
}

.server-3d {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(58, 0, 72, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 0, 72, 0.9) 0%, rgba(28, 7, 35, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 100px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.typed-text {
    color: var(--accent-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 15px 35px;
    font-size: 1.1rem;
}

.hero-features {
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { transform: translate(-50%, 15px); opacity: 1; }
    100% { transform: translate(-50%, 30px); opacity: 0; }
}

/* ================================================
   SECTION HEADERS
   ================================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing-section {
    background: var(--bg-light);
}

.plan-switcher {
    margin-bottom: 3rem;
}

.plan-switcher .btn-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.plan-switcher .btn {
    border-radius: 0;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.plan-switcher .btn-check:checked + .btn {
    background: var(--gradient-primary);
    color: white;
}

.pricing-plans {
    display: none;
}

.pricing-plans.active {
    display: block;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.pricing-card.featured::before {
    background: var(--gradient-accent);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 5px;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

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

.pricing-features li i {
    width: 20px;
    margin-right: 12px;
    color: var(--accent-color);
}

.pricing-features strong {
    color: var(--text-dark);
    min-width: 80px;
}

.pricing-footer {
    margin-top: 2rem;
}

/* ================================================
   OPERATING SYSTEMS SECTION
   ================================================ */

.operating-systems-section {
    background: var(--gradient-vibrant);
    position: relative;
    overflow: hidden;
}

.operating-systems-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('images/cloud3d.svg') no-repeat center;
    background-size: 800px;
    opacity: 0.05;
    animation: rotate 60s linear infinite;
}

.os-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.os-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.os-card:hover::before {
    transform: scaleX(1);
}

.os-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    border-color: rgba(255, 214, 0, 0.5);
}

.os-card.custom-os {
    border-color: var(--accent-color);
    background: rgba(255, 214, 0, 0.1);
}

.os-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.os-card:hover .os-icon {
    background: rgba(255, 214, 0, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.os-card h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.os-versions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.version-badge {
    background: rgba(58, 0, 72, 0.8);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.os-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================================
   LOAD BALANCING SECTION
   ================================================ */

.load-balancing-section {
    background: var(--bg-light);
}

.load-balancing-diagram {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.load-balancing-diagram svg {
    max-width: 100%;
    height: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */

.why-choose-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.premium-card .feature-badge {
    background: linear-gradient(135deg, #ff7b7b 0%, #ff416c 100%);
}

.control-panel-card .feature-badge {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 15px;
}

/* ================================================
   FREE ADD-ONS SECTION
   ================================================ */

.free-addons-section {
    background: var(--gradient-primary);
    color: white;
}

.addon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.addon-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all var(--transition-normal);
}

.addon-card:hover .addon-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.addon-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.addon-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.addon-value {
    background: var(--gradient-accent);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.total-savings {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

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

.testimonial-content {
    flex: 1;
    margin-bottom: 2rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-info h5 {
    margin: 0 0 5px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Swiper Customization */
.testimonials-swiper {
    padding: 50px 0 80px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    border-radius: var(--border-radius-md);
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: var(--border-radius-md);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   WEB HOSTING/CMS SECTION
   ================================================ */

.web-hosting-section {
    padding: 80px 0;
    background: white;
}

.cms-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.cms-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.cms-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all var(--transition-normal);
}

.cms-card:hover .cms-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(10deg);
}

.cms-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cms-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cms-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ================================================
   BEST FEATURES SECTION
   ================================================ */

.best-features-section {
    background: var(--gradient-dark);
    color: white;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

.feature-highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.highlight-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 15px;
}

/* ================================================
   PARTNERS SECTION
   ================================================ */

.partners-section {
    background: var(--bg-light);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100px;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all var(--transition-normal);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 80px 0;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.company-stats {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.company-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

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

.detail-item {
    padding: 15px;
    background: white;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-color);
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact-section {
    background: var(--bg-light);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-content h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-content a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.contact-content a:hover {
    color: var(--accent-color);
}

/* ================================================
   PAYMENT METHODS
   ================================================ */

.payment-methods {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 214, 0, 0.2);
    margin-bottom: 2rem;
}

.payment-methods h5 {
    color: var(--accent-color);
    font-weight: 600;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-img {
    max-height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.payment-img:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

.payment-security {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--gradient-dark);
    color: white;
}

.footer-widget h5 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit {
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit strong {
    color: var(--accent-color);
}

/* ================================================
   MODALS
   ================================================ */

.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.modal-body {
    padding: 2rem;
    line-height: 1.7;
}

.modal-body h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body h6:first-child {
    margin-top: 0;
}

/* ================================================
   BACK TO TOP BUTTON
   ================================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.bg-gradient {
    background: var(--gradient-primary);
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: var(--gradient-accent) 1;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes zoomIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Floating Animation */
.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ================================================
   RESPONSIVE DESIGN - will be handled in responsive.css
   ================================================ */