/* Inter Font - Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ice Theme Colors */
    --ice-primary: #4A90E2;
    --ice-dark: #2C5F8D;
    --ice-light: #B8E0F6;
    --ice-accent: #1E88E5;
    --ice-cyan: #5BC0DE;
    --ice-sky: #87CEEB;
    --ice-pale: #E6F3FF;
    --ice-white: #FFFFFF;
    
    /* Neutrals */
    --gray-dark: #2C3E50;
    --gray-medium: #5A6C7D;
    --gray-light: #BDC3C7;
    --gray-pale: #ECF0F1;
    
    /* Functional Colors */
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--ice-white);
    overflow-x: hidden;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container.ready {
   margin-bottom: 40px !important;
   }

section {
    padding: var(--spacing-md) 0;
}



/* ============================================
   LINKS AND CLASSES
   ============================================ */

.def-a {
    text-decoration: none;
    color: #166098;
    font-weight: 700;
}

.def-a:hover {
    color: #1e85de;
}

/* ============================================
   NAVIGATION
   ============================================ */

#nav-trigger {
    height: 1px;
    width: 100%;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    /* REAL height control */
    min-height: 130px;

    /* BIG INITIAL PADDING */
    padding: 10px 30px;

    background: rgba(250, 253, 255, 0.6);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);

    border-bottom: 1px solid rgba(95, 145, 255, 0.1);
    transition:
        padding 0.25s ease,
        min-height 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

/* LOGO */
.nav-brand .logo {
    height: 110px;
    transition: height 0.25s ease;
}

.navbar.scrolled {
    /* MUCH smaller height */
    min-height: 60px;

    padding: 6px 30px; /* small top/bottom space */

    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(73, 139, 255, 0.12);
}

/* Logo shrinks REAL height (no transform hack) */
.navbar.scrolled .nav-brand .logo {
    height: 80px;
}

/* Menu text moves closer */
.navbar .nav-menu a {
    padding: 14px 0;
    transition: padding 0.25s ease;
}

.navbar.scrolled .nav-menu a {
    padding: 6px 0;
}

/* MENU */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.7rem;
    align-items: center;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
    transition: color .25s ease;
}

/* Animated underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,#4da8ff,#9ddbff);
    transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
    opacity: 0.85;
}

.nav-menu a:hover {
    color: #2984ff;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Button */
.nav-actions .btn-login {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #4A90E2 0%, #2e7bc7 100%);
    color: white;
    transition: all 0.1s ease;
}

.nav-actions .btn-login:hover {
transform: translateY(0px) scale(1.04);
    box-shadow: 0 0px 18px rgba(64, 140, 255, 1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    padding: 12px 0;
    list-style: none;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px !important;
    color: #2c3e50;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f0f9ff;
}

.dropdown-menu li a::after {
    display: none; /* Remove underline animation in dropdown */
}

.dropdown-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-text strong {
    font-size: 1rem;
    color: #1a365d;
}

.dropdown-text span {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

.dropdown-menu .view-all {
    justify-content: center;
    color: #2984ff;
}

.dropdown-menu .view-all:hover {
    background: #e8f4f8;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1rem;
    margin-top: 0.8rem;
    border-left: 3px solid #4da8ff;
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: flex;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem !important;
    color: #4a5568 !important;
    padding: 8px 0;
}

.mobile-dropdown-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.breadcrumbs {
    padding: 15px 20px;
    background: #f8fafc;
    font-size: 1rem;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumbs a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #4da8ff;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #cbd5e0;
}

.breadcrumbs .current {
    color: #2d3748;
    font-weight: 600;
}


/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */

.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(180deg, #d4ecff 0%, #b8e0f6 100%);
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    border-radius: 24px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--ice-primary);
    position: relative;
    display: inline-block;
}



.hero-subtitle {
    font-size: 1.2rem;
    color: #b1d3ff;
    margin-bottom: var(--spacing-xl);
    font-weight: var(--font-weight-semibold);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.btn-primary,
.btn-secondary {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base button - keep generic blue as fallback */
.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #2e7bc7 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #5BA0F2 0%, #3e8bd7 100%);
}

.btn-secondary {
    background-color: white;
    color: var(--ice-primary); 
    /*  border: 3px solid var(--ice-primary);  */
    /*  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6), 0 4px 8px rgba(0, 0, 0, 0.15);  */
    /*  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);  */
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4A90E2 0%, #2e7bc7 100%);
    color: white;
    transform: translateY(-4px);
    /*  box-shadow: 0 10px 28px rgba(74, 144, 226, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);   */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

css/* Base button - keep generic blue as fallback */
.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #2e7bc7 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #5BA0F2 0%, #3e8bd7 100%);
}

/* ============================================
   CATEGORY-SPECIFIC BUTTONS
   ============================================ */

/* Shared Hosting - Orange/Pink */
[data-category="shared"] .btn-primary,
.plan-card[data-category="shared"] .btn-primary,
.hosting-option[data-category="shared"] .btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8A6B 100%);
}

[data-category="shared"] .btn-primary:hover,
.plan-card[data-category="shared"] .btn-primary:hover,
.hosting-option[data-category="shared"] .btn-primary:hover {
    background: linear-gradient(135deg, #FF7BAD 0%, #FF9A7B 100%);
    transform: translateY(-4px);
}

/* WordPress Hosting - Blue */
[data-category="wordpress"] .btn-primary,
.plan-card[data-category="wordpress"] .btn-primary,
.hosting-option[data-category="wordpress"] .btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #2e7bc7 100%);
}

[data-category="wordpress"] .btn-primary:hover,
.plan-card[data-category="wordpress"] .btn-primary:hover,
.hosting-option[data-category="wordpress"] .btn-primary:hover {
    background: linear-gradient(135deg, #5BA0F2 0%, #3e8bd7 100%);
    transform: translateY(-4px);
}

/* Cloud Hosting - Purple */
[data-category="cloud"] .btn-primary,
.plan-card[data-category="cloud"] .btn-primary,
.hosting-option[data-category="cloud"] .btn-primary {
    background: linear-gradient(135deg, #7B68EE 0%, #6858DE 100%);
}

[data-category="cloud"] .btn-primary:hover,
.plan-card[data-category="cloud"] .btn-primary:hover,
.hosting-option[data-category="cloud"] .btn-primary:hover {
    background: linear-gradient(135deg, #8B78FE 0%, #7868EE 100%);
    transform: translateY(-4px);
}

/* Dedicated Hosting - Green */
[data-category="dedicated"] .btn-primary,
.plan-card[data-category="dedicated"] .btn-primary,
.hosting-option[data-category="dedicated"] .btn-primary {
    background: linear-gradient(135deg, #2f8f5f 0%, #3fa76f 100%);
}

[data-category="dedicated"] .btn-primary:hover,
.plan-card[data-category="dedicated"] .btn-primary:hover,
.hosting-option[data-category="dedicated"] .btn-primary:hover {
    background: linear-gradient(135deg, #3aa96d 0%, #4fcf86 100%);
    transform: translateY(-4px);
}


.hero-badges {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.2rem 1rem;
    font-weight: var(--font-weight-semibold);
    font-size: 1.05rem;
    transition: all 0.3s 
ease;
    color: #fff;
}

/* .badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(74, 144, 226, 0.25), 0 4px 10px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
} */

.badge-image {
    width: 70px;
    height: auto;
    transition: transform 0.3s ease;
}

.badge-icon {
    font-size: 1.4rem;
    color: var(--ice-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.section-header p.page-header {
    text-align: left; 
    margin-top: 10px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

/* ============================================
   SERVICES / PLANS SECTION - VIBRANT & COLORFUL
   FIXED VERSION - Card alignment corrected
   ============================================ */


.datacenter-info-box {
    background: linear-gradient(90deg, #ffffff 0% 0%, #378ce321 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
    transition: opacity 0.3s ease;
    border-left: 4px solid #bbe0ff;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-header .flag-icon {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.info-header h4 {
    margin: 0;
    color: #458cdd;
    font-size: 1.1rem;
}

.info-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-points li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.info-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #458cdd;
    font-weight: bold;
    font-size: 1.1rem;
}

.info-points li strong {
    color: #333;
}

/* Currency & Cycle Switcher Styles */
.pricing-controls {
    display: flex;
    gap: 2rem;
    justify-content: center; /* Changed from center */
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-controls.domains-only {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-controls.domains-only .control-group {
    max-width: 620px;
}

.control-group label {
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switcher {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.switcher button {
    padding: 0.6rem 1.2rem;
    border: none;
    background: transparent;
    color: var(--gray-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.switcher button:hover {
    background: rgba(74, 144, 226, 0.1);
}

.switcher button.active {
    background: linear-gradient(135deg, var(--ice-primary), var(--ice-accent));
    color: white;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-breakdown {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.6;
}

.services {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 40px;
}

/* ============================================
   PLAN CARD - FIXED ALIGNMENT
   ============================================ */

.plan-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    height: 100%;
}

.plan-card .plan-description {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Always show 3 lines */
    -webkit-box-orient: vertical;
    min-height: 4.5em; /* 3 lines × 1.5 line-height */
    line-height: 1.5;
}

/* Colorful top accent bars - DEFAULT for shared */
.plan-card::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 3px;
    width: 98%;
    height: 8px;
    border-radius: 50px;
    transition: height 0.3s ease;
}

/* Shared Hosting - Orange accent */
[data-category="shared"] .plan-card::before {
    background: linear-gradient(90deg, #FF6B9D, #FFA06B);
}

/* WordPress Hosting - Blue accent */
[data-category="wordpress"] .plan-card::before {
    background: linear-gradient(90deg, #4A90E2, #5BC0DE, #87CEEB);
}

/* Cloud Hosting - Purple accent */
[data-category="cloud"] .plan-card::before {
    background: linear-gradient(90deg, #7B68EE, #9B7BEC);
}

/* Dedicated Hosting - Red accent */
[data-category="dedicated"] .plan-card::before {
    background: linear-gradient(90deg, #863838, #e37373);
}

/* Featured card - Extra special!
.plan-card.featured {
    background: linear-gradient(145deg, #4A90E2 0%, #1E88E5 100%);
    border: 3px solid #5BC0DE;
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: scale(1.05);
}

.plan-card.featured::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(135, 206, 235, 0.3));
    height: 100%;
} 

.plan-card.featured .plan-description,
.plan-card.featured .plan-features li,
.plan-card.featured .period {
    color: rgba(255, 255, 255, 0.9) !important;
}

.plan-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 25px 70px rgba(74, 144, 226, 0.5);
}*/

.featured-tag {
    position: absolute;
    top: 20px;
    right: -6px;
    color: #ffffff;
    padding: 15px 15px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 0;
    border-radius: 4px;
}

/* ============================================
   CATEGORY-SPECIFIC FEATURED TAGS
   ============================================ */

/* Shared Hosting - Orange/Pink */
[data-category="shared"] .featured-tag,
.plan-card[data-category="shared"] .featured-tag {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* WordPress Hosting - Blue */
[data-category="wordpress"] .featured-tag,
.plan-card[data-category="wordpress"] .featured-tag {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Cloud Hosting - Purple */
[data-category="cloud"] .featured-tag,
.plan-card[data-category="cloud"] .featured-tag {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
}

/* Dedicated Hosting - Red */
[data-category="dedicated"] .featured-tag,
.plan-card[data-category="dedicated"] .featured-tag {
    background: linear-gradient(135deg, #C85A5A, #e37373);
    box-shadow: 0 4px 15px rgba(200, 90, 90, 0.4);
}

/* ============================================
   PLAN HEADER - FIXED WITH MIN-HEIGHT
   ============================================ */

.plan-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    position: relative;
    min-height: 280px; /* CRITICAL FIX: Keeps all headers same height */
}

.plan-icon {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.plan-image {
    width: clamp(90px, 15vw, 160px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s cubic-bezier(1, -0.27, 0, 1.65);
}

.bear-push {
    margin-top: 0px;
}

.plan-card:hover .plan-image {
    transform: scale(1.1);
}

.plan-card.featured .plan-image {
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
}

.plan-card h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   SHARED HOSTING - Orange/Pink
   ============================================ */
[data-category="shared"] .plan-card h3,
.plan-card[data-category="shared"] h3 {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="shared"] .plan-pricing,
.plan-card[data-category="shared"] .plan-pricing {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(255, 160, 107, 0.08));
}

[data-category="shared"] .price,
.plan-card[data-category="shared"] .price {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="shared"] .plan-card::before,
.plan-card[data-category="shared"]::before {
    background: linear-gradient(90deg, #FF6B9D, #FFA06B);
}

/* ============================================
   WORDPRESS HOSTING - Blue
   ============================================ */
[data-category="wordpress"] .plan-card h3,
.plan-card[data-category="wordpress"] h3 {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="wordpress"] .plan-pricing,
.plan-card[data-category="wordpress"] .plan-pricing {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(135, 206, 235, 0.05));
}

[data-category="wordpress"] .price,
.plan-card[data-category="wordpress"] .price {
    background: linear-gradient(135deg, #4A90E2, #1E88E5);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="wordpress"] .plan-card::before,
.plan-card[data-category="wordpress"]::before {
    background: linear-gradient(90deg, #4A90E2, #5BC0DE, #87CEEB);
}

/* ============================================
   CLOUD HOSTING - Purple
   ============================================ */
[data-category="cloud"] .plan-card h3,
.plan-card[data-category="cloud"] h3 {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="cloud"] .plan-pricing,
.plan-card[data-category="cloud"] .plan-pricing {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08), rgba(155, 123, 236, 0.08));
}

[data-category="cloud"] .price,
.plan-card[data-category="cloud"] .price {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="cloud"] .plan-card::before,
.plan-card[data-category="cloud"]::before {
    background: linear-gradient(90deg, #7B68EE, #9B7BEC);
}

/* ============================================
   DEDICATED HOSTING - Green
   ============================================ */
[data-category="dedicated"] .plan-card h3,
.plan-card[data-category="dedicated"] h3 {
    background: linear-gradient(135deg, #2f7d5b, #6fcf97);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="dedicated"] .plan-pricing,
.plan-card[data-category="dedicated"] .plan-pricing {
    background: linear-gradient(
        135deg,
        rgba(34, 111, 85, 0.12),
        rgba(92, 191, 140, 0.12)
    );
}


[data-category="dedicated"] .price,
.plan-card[data-category="dedicated"] .price {
    background: linear-gradient(135deg, #2f7d5b, #6fcf97);
    background-clip: text;
    -webkit-background-clip: text;
}

[data-category="dedicated"] .plan-card::before,
.plan-card[data-category="dedicated"]::before {
    background: linear-gradient(90deg, #2f7d5b, #6fcf97);
}


/* Featured card title - White */
.plan-card.featured h3 {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}
/* ============================================
   PLAN DESCRIPTION - FIXED WITH MIN-HEIGHT
   ============================================ */

.plan-description {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
    min-height: 3em; /* CRITICAL FIX: Forces 2-line height minimum */
}

/* ============================================
   PLAN PRICING - FIXED WITH MIN-HEIGHT
   ============================================ */

.server-location-wrapper {
    margin-bottom: 25px;
}

.server-label {
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    /* color: #5a6370; */
}

.server-location-switcher {
    display: flex;
    gap: 10px;
}

.server-location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e0e6f0;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s ease;
    color: #444;
}

.server-location-btn:hover {
    background: #f4f7fc;
}

.server-location-btn.active {
    background: linear-gradient(90deg, #4da8ff, #6dc1ff);
    color: #fff;
    border-color: #4da8ff;
    box-shadow: 0 4px 12px rgba(77,168,255,0.3);
}

/* SVG Flag icons */
.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
}

.flag-icon-inline {
    width: 20px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px; /* Use margin-right: 6px if flag is before text */
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.plan-pricing {
    text-align: center;
    padding: 2rem 1.5rem;
    margin: 1rem 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shared Hosting - Orange/Pink */
[data-category="shared"] .plan-pricing {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(255, 160, 107, 0.08));
}

/* WordPress Hosting - Blue */
[data-category="wordpress"] .plan-pricing {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(135, 206, 235, 0.05));
}

/* Cloud Hosting - Purple */
[data-category="cloud"] .plan-pricing {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.08), rgba(155, 123, 236, 0.08));
}

/* Dedicated Hosting - Green */
[data-category="dedicated"] .plan-pricing {
    background: linear-gradient(135deg, rgb(126 238 104 / 8%), rgb(140 236 123 / 8%))
);

}

/* Featured card pricing */
.plan-card.featured .plan-pricing {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover .plan-pricing::before {
    opacity: 1;
}

.price {
    font-size: 2.3rem;
    font-weight: var(--font-weight-bold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.price-small {
    font-size: 11px;
    color: #6b7280;
}

.price.btc-price {
    font-size: 2rem !important;
}

/* Shared Hosting - Orange/Pink */
[data-category="shared"] .price {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    background-clip: text;
    -webkit-background-clip: text;
}

/* WordPress Hosting - Blue */
[data-category="wordpress"] .price {
    background: linear-gradient(135deg, #4A90E2, #1E88E5);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Cloud Hosting - Purple */
[data-category="cloud"] .price {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Dedicated Hosting - Green */
[data-category="dedicated"] .price {
    background: linear-gradient(135deg, #2f7d5b, #6fcf97);
    background-clip: text;
    -webkit-background-clip: text;
}

/* Featured card pricing - White */
.plan-card.featured .price {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
}

.plan-card.featured .price {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.1rem;
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
    display: block;
    margin-top: 0.5rem;
}

/* ============================================
   PLAN FEATURES - FIXED WITH FLEX-GROW
   ============================================ */

.plan-features {
    list-style: none;
    padding: 0 2rem 1.5rem;
    margin-bottom: 0;
    flex-grow: 1; /* CRITICAL FIX: Takes remaining space, pushes button down */
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.2s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    padding-left: 10px;
    color: var(--ice-primary);
}

.plan-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-card.featured .plan-features li:hover {
    color: white;
}

/* ============================================
   PLAN BUTTON - FIXED WITH MARGIN-TOP AUTO
   ============================================ */

.plan-button {
    display: block;
    text-align: center;
    padding: 1.2rem 2rem;
    margin: 0 1.5rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: var(--font-weight-bold);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.plan-button:hover {
    transform: translateY(-2px);
}

/* ============================================
   CATEGORY-SPECIFIC PLAN BUTTONS
   ============================================ */

/* Shared Hosting - Orange/Pink */
[data-category="shared"] .plan-button,
.plan-card[data-category="shared"] .plan-button {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

[data-category="shared"] .plan-button:hover,
.plan-card[data-category="shared"] .plan-button:hover {
    background: linear-gradient(135deg, #FF7BAD, #FFB07B);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* WordPress Hosting - Blue */
[data-category="wordpress"] .plan-button,
.plan-card[data-category="wordpress"] .plan-button {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

[data-category="wordpress"] .plan-button:hover,
.plan-card[data-category="wordpress"] .plan-button:hover {
    background: linear-gradient(135deg, #5BA0F2, #6BD0EE);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Cloud Hosting - Purple */
[data-category="cloud"] .plan-button,
.plan-card[data-category="cloud"] .plan-button {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

[data-category="cloud"] .plan-button:hover,
.plan-card[data-category="cloud"] .plan-button:hover {
    background: linear-gradient(135deg, #8B78FE, #AB8BFC);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
}

/* Dedicated Hosting - Green */
[data-category="dedicated"] .plan-button,
.plan-card[data-category="dedicated"] .plan-button {
    background: linear-gradient(135deg, #2f7d5b, #6fcf97);
    box-shadow: 0 4px 15px rgba(47, 125, 91, 0.35);
}

[data-category="dedicated"] .plan-button:hover,
.plan-card[data-category="dedicated"] .plan-button:hover {
    background: linear-gradient(135deg, #3a9d72, #8be5b0);
    box-shadow: 0 6px 20px rgba(47, 125, 91, 0.45);
}


/* Featured card button - White/Light */
.plan-card.featured .plan-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.plan-card.featured .plan-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.plan-button:hover::before {
    left: 100%;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.plan-card:nth-child(1) .plan-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.plan-card:nth-child(3) .plan-button:hover {
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.4);
}

.plan-card.featured .plan-button:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
    color: var(--ice-dark);
}

/* Add floating animation for polar bears */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}



/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: linear-gradient(180deg, #eff8ff 0%, var(--ice-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 144, 226, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--ice-primary);
}

.feature-image {
    width: clamp(150px, 15vw, 250px);
    height: auto;
    transition: transform 0.3s ease;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonials-section {
    padding: 100px 0 20px 0;
    background: linear-gradient(to bottom,#f5fbff,#e6f4ff);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #607184;
    font-size: 1.2rem;
}

.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow: hidden;
    padding: 20px 20px 60px 20px;
}

/* === Base Card Layout (Desktop) === */
.testimonial-card {
    position: relative;
    background: var(--ice-white);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 8px 30px rgba(0, 60, 120, 0.06);
    scroll-snap-align: center;
    min-width: 360px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 45, 90, 0.22);
}

/* --- Header Section (Bear + Nameplate) --- */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bear Icon */
.testimonial-bear {
    width: 110px;
    height: auto;
    margin-bottom: 1rem;
}

/* Nameplate */
.testimonial-nameplate {
    display: grid;
    grid-template-rows: auto minmax(1.2rem, auto) auto; /* Fixed height for role row */
    gap: 0.25rem;
    align-content: start;
}

.testimonial-nameplate .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-nameplate .role {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.testimonial-nameplate .review-date {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-top: 0.15rem;
}

/* --- Stars --- */
.testimonial-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(247, 183, 51, 0.4));
    transition: transform 0.2s ease;
}

.star-icon:hover {
    transform: scale(1.1);
}

/* --- Quote Text --- */
.testimonial-text {
    font-size: 1.1rem;
    color: #244;
    line-height: 1.65;
    font-weight: 400;
    font-style: italic;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, #5BA0F2, #6BD0EE);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 3px;
}

.testimonial-nav.next {
    right: 3px;
}

/* FOUNDER */

/* ============================================
   FOUNDER MESSAGE (No Reviews Fallback)
   ============================================ */
.founder-message-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.founder-message-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 50px;
}

.founder-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.founder-bear-container {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.founder-bear-large {
    width: 250px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: gentle-float 4s 
ease-in-out infinite;
}

.founder-symbol-image {
width: 70px;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.founder-content {
    padding: 50px;
}

.founder-quote {
    position: relative;
    margin-bottom: 40px;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: #e8f4f8;
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-quote p {
    font-size: 1.3rem;
    color: #2d3748;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.founder-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 5px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.founder-cta {
    border-top: 2px solid #e8f4f8;
    padding-top: 30px;
}

.founder-closing {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
}

.founder-guarantee {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #4da8ff;
}

.guarantee-badge {
    font-size: 3rem;
    flex-shrink: 0;
}

.founder-guarantee strong {
    font-size: 1.2rem;
    color: #1a365d;
    display: block;
    margin-bottom: 5px;
}

.founder-guarantee p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
}



.terms-section {
    padding: 70px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.terms-section .container {
    max-width: 1000px;
}

.terms-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-section .section-header h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.terms-section .section-header p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Quick Navigation */
.terms-nav {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.terms-nav h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.terms-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.terms-nav-grid a {
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.terms-nav-grid a:hover {
    background: #e8f4f8;
    color: #2984ff;
}

.about-section {
    padding: 70px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-section .container {
    max-width: 1000px;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section .section-header h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.about-section .section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}


/* Terms Content */
.terms-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.terms-section-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.terms-section-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section-item h2 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    color: #1d83dc;
    font-weight: 700;
}

.terms-section-item h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 25px 0 15px 0;
}

.terms-section-item p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section-item ul {
    margin: 15px 0 15px 30px;
    color: #4a5568;
    line-height: 1.8;
}

.terms-section-item ul li {
    margin-bottom: 8px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 60%, #e7f4ff 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #1d84dc;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin: 0 0 15px 0;
}

.value-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.tech-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 25px solid #468ad8;
}

.tech-item strong {
    display: block;
    color: #1a365d;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tech-item p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.prohibited-list li {
    padding-left: 10px;
}

/* Special Boxes */
.info-highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.warning-box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
    color: #721c24;
}

.info-box {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
    color: #0c5460;
}

.contact-list {
    list-style: none;
    margin-left: 0 !important;
}

.contact-list li {
    margin-bottom: 12px;
}

.contact-list a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Agreement Notice */
.terms-agreement {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.terms-agreement p {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

/* Links */
.terms-content a {
    color: #4a90e2;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-bear-container {
        padding: 40px;
    }

    .founder-bear-large {
        width: 180px;
        height: 180px;
    }

    .founder-content {
        padding: 35px 25px;
    }

    .founder-values {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .founder-quote p {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 60px;
        top: -15px;
        left: -10px;
    }
}



@media (max-width: 768px) {

    .about-section {
        padding: 80px 15px 60px;
    }

    .about-section .section-header h1 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: 80%;
    }
    
        .founder-card {
        padding: 30px 25px;
    }

    .founder-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .founder-icon {
        width: 80px;
        height: 80px;
    }

    .founder-text h2 {
        font-size: 1.6rem;
    }

    .founder-features {
        grid-template-columns: 1fr;
    }

    .terms-section {
        padding: 80px 15px 60px;
    }

    .terms-section .section-header h1 {
        font-size: 2rem;
    }

    .terms-nav {
        padding: 20px;
    }

    .terms-nav-grid {
        grid-template-columns: 1fr;
    }

    .terms-content {
        padding: 25px 20px;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }

    .terms-section-item h3 {
        font-size: 1.2rem;
    }
    
    .pricing-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .control-group {
        width: 100%;
    }
    
    /* Currency stays horizontal (only 4 options) */
    #currency-switcher {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        border-radius: 16px;
    }
    
    #currency-switcher button {
        justify-content: center;
    }
    
    /* Billing Cycle stacks in 2 columns */
    #cycle-switcher {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        border-radius: 16px;
    }
    
    #cycle-switcher button {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .savings-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
        margin-left: 0;
        margin-top: 4px;
    }
    
}

/* Tablet: Keep horizontal but allow wrapping */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .switcher {
        flex-wrap: wrap;
    }
}



/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--ice-primary) 0%, var(--ice-dark) 100%);
    color: var(--ice-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta-section .btn-primary {
    background-color: var(--ice-white);
    
}

.cta-section .btn-primary:hover {
    background-color: var(--ice-pale);
}

.cta-section .btn-secondary {
    border-color: var(--ice-white);
    color: var(--ice-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-section .btn-secondary:hover {
    background-color: var(--ice-white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(180deg, #18232d 0%, #364859 100%);
    padding: 80px 0 40px;
    color: #d9e4ee;
    position: relative;
}

.footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 45px;
    position: absolute;
    top: -30px;
    left: 0;
    background: url('/img/ice-divider.svg') repeat-x;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: .5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
    position: relative;
}

.footer-column a {
    color: #cbd6e2;
    text-decoration: none;
    font-size: 1rem;
    padding-left: 0;
    display: inline-block;
    transition: color .25s, transform .25s;
}

.footer-column a:hover {
    color: #64baff;
    transform: translateX(4px);
}

.footer-column li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #4da8ff;
    border-radius: 50%;
    opacity: .35;
    transition: .25s;
}

.footer-column a:hover + li::before,
.footer-column li:hover::before {
    opacity: 1;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.92rem;
    color: #aab7c5;
}

/* Footer Bottom - 3 Column Layout (LEFT | CENTER | RIGHT) */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Social Icons - LEFT */
.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    color: #64baff;
    background: rgba(80, 200, 255, 0.1);
    transform: translateY(-2px);
}

/* Copyright - CENTER */
.footer-bottom-content > p {
    margin: 0;
    flex: 1;
    text-align: center;
}

/* Badges - RIGHT */
.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-badge-link {
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-badge-link img {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.footer-badge-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        order: 1;
    }
    
    .footer-bottom-content > p {
        order: 2;
    }
    
    .footer-badges {
        order: 3;
        position: static;
    }
}

/* ============================================
   HOSTING PAGE
   ============================================ */

.hosting-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url(../img/bg_hosting.webp) center center no-repeat;
    background-size: 100% auto;
    margin: 0;
    padding: 0;
    background-position: center 40%;
}

/* Hosting Options */
.hosting-options {
    background: #f8fafc;
}

.hosting-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto 80px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1200px;
    width: 100%;
}

/* ============================================
   HOSTING OPTIONS - Category Colors
   ============================================ */

/* Shared Hosting */
.hosting-option[data-category="shared"] h3 {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-option[data-category="shared"] .price {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* WordPress Hosting */
.hosting-option[data-category="wordpress"] h3 {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-option[data-category="wordpress"] .price {
    background: linear-gradient(135deg, #4A90E2, #1E88E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cloud Hosting */
.hosting-option[data-category="cloud"] h3 {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-option[data-category="cloud"] .price {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dedicated Hosting */
.hosting-option[data-category="dedicated"] h3 {
    background: linear-gradient(135deg, #388656, #73e380);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosting-option[data-category="dedicated"] .price {
    background: linear-gradient(135deg, #388656, #73e380);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.option-image {
    width: 100%;
    max-width: 500px; /* Limit maximum width */
}

.option-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

.option-content {
    width: 100%;
}

/* For option-right, just swap the order visually */
.hosting-option.option-right .option-image {
    order: 2;
}

.hosting-option.option-right .option-content {
    order: 1;
}

.bear-bounce {
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.option-content h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.option-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.option-pricing {
    display: block;  /* Changed from flex */
    margin-bottom: 25px;
}

.option-pricing > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
}

.option-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

/* BTC price - smaller font */
.option-pricing .price.btc-price {
    font-size: 1.2rem !important; /* Adjust this to your liking */
}

.option-pricing-discount {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 6px;
}

.option-pricing-discount .price-highlight {
    font-weight: 500;
}

.option-pricing .period {
    font-size: 1rem;
    color: #718096;
    display: inline-block
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.option-features li {
    padding: 8px 0;
    color: #2d3748;
    font-size: 1rem;
}

.option-buttons {
    display: flex;
    gap: 15px;
}

.option-buttons .btn-primary,
.option-buttons .btn-secondary {
    flex: 1; /* Makes both buttons equal width */
    text-align: center;
    min-width: 150px; /* Ensures minimum width */
}

/* Comparison Table */
.hosting-comparison {
   
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    margin: 0 -20px; /* Extend to screen edges on mobile */
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    min-width: 600px; /* Force minimum width so it scrolls instead of crushing */
}

/* Keep comparison table prices normal size */
.comparison-table .price, .comparison-table .btc-price {
    font-weight: var(--font-weight-bold);
    font-size: inherit !important;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.comparison-table td {
    font-size: 1rem; /* Consistent table font size */
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.comparison-table thead th {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Feature column - neutral */
.comparison-table thead th:nth-child(1) {
    background: #434343;
}

/* Shared Hosting - Pink gradient */
.comparison-table thead th:nth-child(2) {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
}

/* WordPress Hosting - Blue gradient */
.comparison-table thead th:nth-child(3) {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
}

/* Cloud Hosting - Teal/Cyan gradient */
.comparison-table thead th:nth-child(4) {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
}

/* Dedicated Server Hosting - Green gradient */
.comparison-table thead th:nth-child(5) {
    background: linear-gradient(135deg, #863838, #e37373);
}

/* Match the View Plans buttons to the same colors */
.comparison-table tbody tr:last-child td:nth-child(2) .btn-primary {
    background: linear-gradient(135deg, #FF6B9D, #FFA06B);
}

.comparison-table tbody tr:last-child td:nth-child(3) .btn-primary {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
}

.comparison-table tbody tr:last-child td:nth-child(4) .btn-primary {
    background: linear-gradient(135deg, #7B68EE, #9B7BEC);
}

.comparison-table tbody tr:last-child td:nth-child(5) .btn-primary {
    background: linear-gradient(135deg, #863838, #e37373);
}


/* ============================================
   FAQ
   ============================================ */

.faq-section {
    padding: 70px 20px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-section .section-header h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 20px;
}

.faq-section .section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Category Sections */
.faq-category {
    margin-bottom: 60px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e2e8f0;
}

.category-icon {
    width: 100px;
    height: 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #667eea;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   DOMAINS PAGE STYLES
   ========================================== */

.domains-hero {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.domains-hero .hero-content {
    position: relative;
    z-index: 1;
}

.domains-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #64c8ff, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.domains-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

.domains-content {
    padding: 4rem 0;
}

.domains-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.domains-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.domains-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.sortable:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sort-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
    opacity: 0.5;
}

.sortable:hover .sort-arrow {
    opacity: 1;
}

/* Domain pricing table fixes */
.domain-price {
    font-size: 1rem !important;
    font-weight: 600;
    color: #333;
}

.tld-price .period {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.domain-table .tld-price {
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    margin: 5rem 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-symbol {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Iceland .IS Highlight */
.is-domain-highlight {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(91, 192, 222, 0.08));
    border-radius: 16px;
    padding: 3rem;
    margin: 5rem 0;
    border-left: 4px solid #4A90E2;
}

.is-domain-highlight h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.is-domain-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.is-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.is-feature {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.is-feature strong {
    color: #4A90E2;
    font-size: 1.1rem;
}

.is-feature span {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

/* Domain Pricing Table */
.domain-pricing-section {
    margin: 5rem 0;
}

.domain-pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.domain-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.domain-table thead {
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    color: white;
}

.domain-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.domain-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.domain-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

.domain-table td {
    padding: 1.2rem;
    font-size: 1rem;
}

.tld-name {
    font-weight: 600;
    color: #4A90E2;
    font-size: 1.1rem;
}

.tld-price {
    color: var(--gray-dark);
}

.category-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Popular - Special highlighting */
.category-popular {
    background: rgba(255, 107, 157, 0.15);
    color: #FF6B9D;
}

/* All other categories - Mild, subtle styling */
.category-entertainment,
.category-business,
.category-geographic,
.category-sports,
.category-tech,
.category-services,
.category-finance,
.category-education,
.category-food,
.category-leisure,
.category-shopping,
.category-realestate,
.category-novelty,
.category-other {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Transfer Section */
.transfer-section {
    margin: 5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transfer-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.transfer-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.transfer-steps {
    display: grid;
    gap: 2rem;
}

.transfer-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #5BC0DE);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* CTA Section */
.domain-cta-section {
    text-align: center;
    margin: 5rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(91, 192, 222, 0.05));
    border-radius: 16px;
}

.domain-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.domain-cta-section > p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.domain-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .domains-hero h1 {
        font-size: 2rem;
    }
    
    .domains-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .is-features {
        grid-template-columns: 1fr;
    }
    
    .domain-table {
        font-size: 0.9rem;
    }
    
    .domain-table th,
    .domain-table td {
        padding: 0.8rem;
    }
    
    .transfer-step {
        flex-direction: column;
    }
    
    .domain-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 20px 80px;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

/* Contact Wrapper */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 350px 1fr; 
    gap: 60px; */
    align-items: start;
}

/* Polar Bear Section */
.contact-bear {
    position: sticky;
    top: 120px;
}

.bear-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.bear-speech-bubble {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.bear-speech-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.bear-speech-bubble p {
    margin: 0;
    font-size: 1.1rem;
    color: #2d3748;
    text-align: center;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Department Selector */
.department-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.department-label {
    cursor: pointer;
}

.department-label input[type="radio"] {
    display: none;
}

.department-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    border-radius: 15px;
    border: 3px solid transparent;
    background: #f8fafc;
    transition: all 0.3s ease;
    text-align: center;
}

.department-icon {
    font-size: 2.5rem;
}

.department-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}


/* Department Colors - Unselected (faded versions) */
.department-card.general {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f9ff 100%); /* Faded blue */
}

.department-card.sales {
    background: linear-gradient(135deg, #e0f7f4 0%, #e8fff9 100%); /* Faded green */
}

.department-card.abuse {
    background: linear-gradient(135deg, #ffebee 0%, #ffe5e5 100%); /* Faded red */
}

/* Selected State - Using inset box-shadow instead of border */
.department-label input[type="radio"]:checked + .department-card.general {
    border: none;
    background: linear-gradient(90deg, #4A90E2, #5BC0DE, #87CEEB);
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 0 3px #4A90E2, /* Blue border */
        0 8px 25px rgba(74, 144, 226, 0.4);
}

.department-label input[type="radio"]:checked + .department-card.sales {
    border: none;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 0 3px #11998e, /* Teal/green border */
        0 8px 25px rgba(17, 153, 142, 0.4);
}

.department-label input[type="radio"]:checked + .department-card.abuse {
    border: none;
    background: linear-gradient(90deg, #863838, #e37373);
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 0 3px #863838, /* Dark red border */
        0 8px 25px rgba(134, 56, 56, 0.4);
}

.department-label input[type="radio"]:checked + .department-card .department-name {
    color: white;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4da8ff;
    box-shadow: 0 0 0 4px rgba(77, 168, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.btn-submit {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

/* Hover state */
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

/* Keep the arrow animation */
.submit-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 8px;
}

.btn-submit:hover .submit-arrow {
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e8f4f8;
}

.info-note {
    font-size: 0.95rem;
    color: #64748b;
    text-align: center;
}

.info-note a {
    color: #4da8ff;
    text-decoration: none;
    font-weight: 600;
}

.info-note a:hover {
    text-decoration: underline;
}

.field-note {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 5px;
    font-style: italic;
}




/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hosting-hero {
        height: 300px; /* Shorter on mobile */
    }
    
    .hosting-option {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 30px;
        padding: 30px 20px; /* Reduce padding on mobile */
    }
    
    /* Reset order for mobile - no alternating needed */
    .hosting-option.option-right .option-image {
        order: 0;
    }
    
    .hosting-option.option-right .option-content {
        order: 0;
    }
    
    .option-image {
        text-align: center;
        max-width: 300px; /* Limit bear size on mobile */
        margin: 0 auto; /* Center it */
    }
    
    .option-image img {
        max-width: 100%; /* Ensure image stays within container */
        height: auto;
    }
    
    .option-content h3 {
        font-size: 1.5rem; /* Smaller heading on mobile */
    }
    
    .option-description {
        font-size: 1rem; /* Smaller description */
    }
    
    .option-pricing .price {
        font-size: 2rem; /* Smaller price on mobile */
    }
    
    .option-buttons {
        justify-content: center;
        flex-direction: column; /* Stack buttons vertically */
    }
    
    .option-buttons .btn-primary,
    .option-buttons .btn-secondary {
        width: 100%; /* Full width buttons on mobile */
    }

    .hosting-hero h1 {
        font-size: 2.2rem;
    }
    
    .comparison-table-wrapper {
        position: relative;
        
        padding: 20px;
        background: linear-gradient(to right, #e8f4f8 0%, #f0f9ff 50%, #e8f4f8 100%);
        border-radius: 15px;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
    }
    
    /* Styled scrollbar */
    .comparison-table-wrapper::-webkit-scrollbar {
        height: 12px;
    }
    
    .comparison-table-wrapper::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
        margin: 10px;
    }
    
    .comparison-table-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 10px;
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #5568d3, #6a3f8f);
    }
    
    .comparison-table {
        font-size: 0.85rem;
        min-width: 700px;
        background: white;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        white-space: nowrap;
    }
    
    .comparison-table td:first-child {
        white-space: normal;
        min-width: 120px;
        position: sticky;
        left: 0;
        background: white;
        z-index: 10;
        box-shadow: 2px 0 5px rgba(0,0,0,0.05);
    }
    
    .comparison-table thead th:first-child {
        position: sticky;
        left: 0;
        z-index: 11;
    }
    
    /* Scroll indicator arrows */
    .comparison-table-wrapper::before {
        content: '?';
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: #667eea;
        font-weight: bold;
        animation: pulse-arrow 2s ease-in-out infinite;
        pointer-events: none;
        z-index: 5;
        text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    }
    
    @keyframes pulse-arrow {
        0%, 100% { 
            opacity: 0.4;
            transform: translateY(-50%) translateX(0);
        }
        50% { 
            opacity: 1;
            transform: translateY(-50%) translateX(10px);
        }
    }
    
    /* Scroll hint text */
    .comparison-table-wrapper::after {
        content: 'Swipe to compare all plans ?';
        display: block;
        text-align: center;
        padding: 15px 10px 5px;
        color: #667eea;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
        .footer-column {
        padding-left: 30px; /* Pushes bullets away from edge */
    }
    
        .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-bear {
        position: static;
        text-align: center;
    }

    .bear-image {
        max-width: 200px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .department-selector {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
    
    
}


/* Hide desktop menu on mobile */
@media (max-width: 1280px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 10px;
        z-index: 1100;
        margin-right: 25px;
    }

    .mobile-toggle span {
        width: 28px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all .3s ease;
    }
    
        .dropdown-menu {
        display: none !important; /* Hide desktop dropdown on mobile */
    }
}

/* Mobile menu dropdown */
    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: linear-gradient(180deg, #dcf7ff, #ffffff);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        z-index: 1090;
        transition: right .35s 
    ease;
    }

.mobile-menu-panel.open {
    right: 0;
}

.mobile-menu-panel a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    z-index: 11000;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.mobile-close:hover {
    opacity: 1;
}

/* Mobile dropdown - split click area */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-link {
    flex: 1;
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 0; /* Remove padding since parent handles spacing */
}

/* Mobile dropdown divider */
.mobile-dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    margin: 0.5rem 0;
}

/* View All Plans link styling */
.mobile-sub-link.view-all-link {
    justify-content: center;
    background: rgba(102, 126, 234, 0.05);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    color: #667eea;
    font-weight: 600;
}

.mobile-sub-link.view-all-link:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.5);
}

.mobile-dropdown-toggle {
    background: rgba(102, 126, 234, 0.1); /* Light purple background */
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #667eea; /* Purple color */
    font-size: 1.8rem; /* Bigger! */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    min-width: 48px;
    transition: all 0.2s ease;
}

.mobile-dropdown-toggle:active {
    background: rgba(102, 126, 234, 0.2);
}

.mobile-arrow {
    display: inline-block;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

/* Hide dropdown content by default */
.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    padding-top: 0.5rem;
}

/* Show when active */
.mobile-dropdown.active .mobile-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Sub-links styling */
.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-sub-link:hover {
    background: rgba(102, 126, 234, 0.1);
}

.mobile-dropdown-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@media (max-width: 768px) {

   .about-section {
        padding: 80px 15px 60px;
    }

    .about-section .section-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 25px 20px;
    }

    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        padding: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .bear-push {
    margin-top: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    .faq-section {
        padding: 80px 20px 60px;
    }

    .faq-section .section-header h1 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 25px 20px;
    }  
    
}

@media (max-width: 650px) {
    .testimonial-bear {
        width: 140px;
        margin: 0 auto 1rem auto;
        display: block;
    }
    
        .testimonial-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .testimonial-nameplate {
        width: 90%;
        text-align: center;
    }
    
        .testimonial-stars,
    .testimonial-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
            .testimonial-card {
        min-width: calc(100% - 40px); /* full width minus padding */
        scroll-snap-align: center;
    }

    .testimonial-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial-card {
        width: 85%;
        margin-left: 7.5%;
        margin-right: 7.5%;
    }
    
    .testimonial-nav.prev {
        left: 5px;
    }

    .testimonial-nav.next {
        right: 5px;
    }
    
    .section-title {
    padding: var(--spacing-sm);
    }
    .section-subtitle {
    padding: var(--spacing-xs);
    }
}
    
    
}