/* ========================================
   KLEACORE Web Theme
   Font: Outfit (Google Fonts)
   ======================================== */

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

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: #212f43;
    color: white;
    padding: 12px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.top-bar a:hover {
    color: #60a5fa;
}

/* ========================================
   HEADER
   ======================================== */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

header .container,
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mega Menu */
.mega-menu {
    position: static;
}

nav {
    position: relative;
}

.mega-menu.sub-dropdown {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid #e8ecf0;
    border-top: none;
    min-width: 250px;
    margin-top: 0;
}

.wrapper-inner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: 1px solid #e8ecf0;
    border-top: none;
    width: calc(100vw - 40px);
    max-width: 1200px;
    overflow: hidden;
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu:hover .wrapper-inner {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.25s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 45px;
}

nav {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav > ul > li {
    position: relative;
}

.mega-menu > a {
    position: relative;
    z-index: 1000;
}

.mega-menu:hover > a {
    color: #3b82f6;
}

nav a {
    color: #313d4f;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}

nav a:hover {
    color: #3b82f6;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid #e8ecf0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #313d4f;
    font-size: 14px;
    transition: all 0.25s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f4f8fb;
    color: #3b82f6;
    border-left-color: #3b82f6;
    padding-left: 25px;
}

/* Mega Menu - Additional styles */
.wrapper-inner .container {
    padding: 40px 0 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.wrapper-menu {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    gap: 30px;
    padding-right: 0;
}

/* Sunucu mega menu - promo kutusu olmadığında kartları ortala */
.wrapper-menu.server-menu-only {
    justify-content: center;
}

.wrapper-menu.server-menu-only .mega-menu-services-grid {
    margin-right: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mega-menu-services {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
    margin-right: 20px;
}

.mega-menu-service-card {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mega-menu-service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.mega-menu-service-card.featured {
    border-color: #3b82f6;
    background: #f0f7ff;
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212f43;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.mega-menu-service-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    width: 100%;
}

.mega-menu-footer {
    background: #212f43;
    color: white;
    padding: 20px 30px;
    border-radius: 0;
    margin-top: 0;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: -40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mega-menu-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.mega-menu-footer strong {
    color: #3b82f6;
    font-weight: 700;
}

.wrapper-menu-primary,
.wrapper-menu-secondary {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
    overflow: visible;
}

.wrapper-title {
    font-size: 18px;
    color: #212f43;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ecf0;
    display: block;
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu-item {
    margin-bottom: 20px;
    width: 100%;
}

.sub-menu-item:last-child {
    margin-bottom: 0;
}

.sub-menu-link {
    display: block;
    color: #212f43;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.25s;
    text-decoration: none;
    width: 100%;
}

.sub-menu-link:hover {
    color: #3b82f6;
}

.sub-menu-text {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
}

.mega-menu-column h4 {
    font-size: 18px;
    color: #212f43;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ecf0;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 12px;
}

.mega-menu-column a {
    display: block;
    padding: 10px 0;
    color: #555;
    font-size: 15px;
    transition: all 0.25s;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.mega-menu-column a:hover {
    color: #3b82f6;
    border-left-color: #3b82f6;
    padding-left: 20px;
}

/* Mega Menu Promo Box */
.mega-menu-promo,
.wrapper-menu-tertiary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 40px 35px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    min-height: 500px;
    width: 320px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    overflow: hidden;
}

.wrapper-menu-tertiary h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.promo-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    flex: 1;
}

.check-icon {
    font-size: 22px;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.promo-button {
    background: white;
    color: #10b981;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: auto;
}

.promo-button:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: white;
}

.promo-illustration {
    display: none;
}

.illustration-shield {
    display: none;
}

.wrapper-menu-tertiary img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.promo-badge {
    background: white;
    color: #212f43;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.promo-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.promo-discount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.promo-suffix {
    font-size: 20px;
    font-weight: 400;
    margin-left: 5px;
}

.promo-footer {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.95;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.cart-icon:hover {
    background: #e8e8e8;
    color: #2d3748;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff6b35;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.cart-count:empty {
    display: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.btn-primary {
    background: #3b82f6;
    border: 2px solid #3b82f6;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: #313d4f;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f0f5 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Slider Styles */
.slider-hero {
    position: relative;
    min-height: 400px;
    padding-bottom: 60px;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

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

.slide h1 {
    font-size: 52px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.slide .highlight {
    color: #3b82f6;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    pointer-events: auto;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: #3b82f6;
    border-color: #3b82f6;
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.trustpilot {
    margin-bottom: 25px;
}

.trustpilot .stars {
    color: #3b82f6;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.trustpilot p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.hero h1 {
    font-size: 52px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
}

.features-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 18px;
}

.btn-success {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s;
    margin-bottom: 0;
}

.btn-success:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ========================================
   INFO BAR
   ======================================== */
.info-bar {
    background-color: #212f43;
    color: white;
    padding: 18px 0;
    text-align: center;
    font-size: 15px;
}

/* ========================================
   DOMAIN SEARCH
   ======================================== */
.domain-search {
    padding: 70px 0;
    background: white;
}

.domain-intro {
    text-align: center;
    margin-bottom: 35px;
    font-size: 16px;
    color: #555;
}

.highlight {
    background: #ffd54f;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.search-box {
    display: flex;
    max-width: 850px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.search-box input:focus {
    outline: none;
}

.btn-search {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 20px 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

.btn-search:hover {
    background: #2563eb;
}

.domain-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 50px;
}

.domain-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.domain-extensions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.extension {
    background: white;
    border: 2px solid #e8f0f5;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.25s;
}

.extension:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.extension span {
    font-size: 22px;
    font-weight: 700;
    color: #212f43;
    display: block;
    margin-bottom: 12px;
}

.extension p {
    color: #666;
    font-size: 13px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 90px 0;
    background: #f4f8fb;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-content {
    padding: 50px;
}

.badge {
    display: inline-block;
    background: #e3f2fd;
    color: #2196F3;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.service-content h2 {
    font-size: 34px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.service-content > p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 15px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 14px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.check {
    color: #3b82f6;
    font-weight: bold;
    font-size: 18px;
}

.service-cta {
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-support {
    margin-bottom: 35px;
}

.support-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-cta h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 600;
}

.service-cta p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #ddd;
}

.service-cta a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.btn-contact {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-top: 25px;
    font-size: 15px;
    transition: all 0.25s;
}

.btn-contact:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
    padding: 90px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.trustpilot-large {
    margin-bottom: 25px;
}

.trustpilot-large .stars {
    color: #3b82f6;
    font-size: 35px;
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.trustpilot-large p {
    color: #666;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 40px;
    color: #212f43;
    margin-bottom: 18px;
    font-weight: 700;
}

.section-header > p {
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

.review-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 35px;
}

.carousel-btn {
    background: #f4f8fb;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    color: #313d4f;
    transition: all 0.25s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.review-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    min-height: 250px;
    overflow: hidden;
}

.review-card {
    background: #f4f8fb;
    padding: 45px;
    border-radius: 12px;
    max-width: 650px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.review-card.active {
    display: block;
    opacity: 1;
    position: relative;
}

.review-card .stars {
    color: #3b82f6;
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
}

.review-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf0;
}

.review-author strong {
    display: block;
    color: #212f43;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-author span {
    color: #999;
    font-size: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dots .dot:hover {
    background: #3b82f6;
    transform: scale(1.2);
}

.carousel-dots .dot.active {
    background: #3b82f6;
    width: 32px;
    border-radius: 6px;
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */
.technology {
    padding: 90px 0;
    background: #f4f8fb;
}

.technology .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.tech-card {
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    padding: 90px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 50px rgba(33, 47, 67, 0.3);
}

.tech-content .badge {
    background: #fff3e0;
    color: #ff9800;
}

.tech-content h2 {
    font-size: 34px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.tech-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* ========================================
   BUSINESS SECTION
   ======================================== */
.business {
    padding: 90px 0;
    background: white;
}

.business .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.business-content .badge {
    background: #e8f5e9;
    color: #3b82f6;
}

.business-content h2 {
    font-size: 34px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.business-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.business-card {
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    padding: 90px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 50px rgba(33, 47, 67, 0.3);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 90px 0;
    background: #f4f8fb;
}

.faq h2 {
    font-size: 40px;
    color: #212f43;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-intro {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item {
    background: white;
    padding: 28px 35px;
    margin-bottom: 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #3b82f6;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #212f43;
    flex: 1;
    line-height: 1.5;
}

.faq-toggle {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle:hover {
    transform: rotate(180deg);
    color: #3b82f6;
}

/* ========================================
   FOOTER CTA
   ======================================== */
.footer-cta {
    background: linear-gradient(135deg, #212f43 0%, #2d3e52 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.footer-cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background: #3b82f6;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ========================================
   MAIN FOOTER
   ======================================== */
footer {
    background: #1a252f;
    color: white;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

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

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s;
}

.footer-column a:hover {
    color: #3b82f6;
}

.contact-info .logo {
    margin-bottom: 25px;
}

.contact-info .logo img {
    height: 38px;
}

.contact-info p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.office-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.office-images img {
    width: 100%;
    border-radius: 6px;
}

.phone {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-block;
    font-size: 26px;
    transition: transform 0.25s;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.qr-code {
    margin-top: 25px;
}

.qr-code img {
    width: 110px;
    height: 110px;
    border-radius: 8px;
}

.footer-bottom {
    background: #151d24;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #25D366;
    color: white;
    padding: 18px 25px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.25s;
}

.whatsapp-button a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.whatsapp-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero .container,
    .service-card,
    .technology .container,
    .business .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .domain-extensions {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    nav {
        display: none;
    }
    
    .dropdown-menu,
    .mega-menu-content,
    .wrapper-inner {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: transparent;
        display: block;
        width: 100%;
        max-width: 100%;
    }
    
    .wrapper-inner .container {
        padding: 20px;
    }
    
    .wrapper-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .mega-menu-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .wrapper-menu-tertiary {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
    }
    
    .mega-menu-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a,
    .mega-menu-column a,
    .sub-menu-link {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .mega-menu-column h4,
    .wrapper-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .mega-menu-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mega-menu-service-card {
        padding: 20px 15px;
    }
    
    .mega-menu-service-card h4 {
        font-size: 15px;
    }
    
    .mega-menu-service-card p {
        font-size: 12px;
    }
    
    .mega-menu-promo,
    .wrapper-menu-tertiary {
        margin-top: 20px;
        min-height: 300px;
        padding: 25px 20px;
        width: 100%;
    }
    
    .wrapper-menu-tertiary h3 {
        font-size: 20px;
    }
    
    .promo-illustration {
        font-size: 80px;
        bottom: 15px;
        right: 15px;
    }
    
    .promo-discount {
        font-size: 48px;
    }
    
    .sub-menu-item {
        margin-bottom: 15px;
    }

    .hero h1,
    .slide h1 {
        font-size: 40px;
    }

    .slider-hero {
        min-height: 350px;
        padding-bottom: 50px;
    }

    .slider-dots {
        bottom: 0;
    }

    .section-header h2,
    .faq h2 {
        font-size: 32px;
    }

    .service-content h2,
    .tech-content h2,
    .business-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .domain-extensions {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-text h3 {
        font-size: 24px;
    }

    .footer-cta-text p {
        font-size: 14px;
    }

    .tech-card,
    .business-card {
        padding: 60px;
    }

    .service-content,
    .service-cta {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .domain-extensions {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .whatsapp-button {
        left: 20px;
        bottom: 20px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }

    .vds-servers {
        padding: 40px 0;
    }

    .packages-intro h2 {
        font-size: 24px;
    }

    .vds-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }

    .vds-spec {
        text-align: center;
    }

    .vds-price {
        text-align: center;
        font-size: 20px;
    }

    .vds-badge {
        left: 15px;
        font-size: 11px;
        padding: 4px 15px;
    }

    .hero h1,
    .slide h1 {
        font-size: 32px;
    }

    .slider-hero {
        min-height: 300px;
        padding-bottom: 40px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots .dot.active {
        width: 28px;
    }

    .section-header h2,
    .faq h2 {
        font-size: 28px;
    }

    .vds-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .vds-package {
        justify-content: center;
    }

    .vds-price {
        text-align: center;
    }

    .btn-vds {
        width: 100%;
    }
}

/* ========================================
   PAGE HEADER (For inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #212f43 0%, #2d3e52 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content {
    padding: 60px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #f4f8fb;
    border-radius: 12px;
    transition: transform 0.25s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 42px;
    color: #3b82f6;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #666;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.mission-content h2 {
    font-size: 32px;
    color: #212f43;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-values {
    margin: 80px 0;
    text-align: center;
}

.about-values h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    transition: all 0.25s;
}

.value-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.about-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.team-content h2 {
    font-size: 32px;
    color: #212f43;
    margin: 20px 0;
}

.team-images img {
    width: 100%;
    border-radius: 12px;
}

/* ========================================
   ABOUT PAGE SECTIONS
   ======================================== */
.about-content-section {
    padding: 80px 0;
    background: white;
}

.about-info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-info-block:last-child {
    margin-bottom: 0;
}

.about-info-block.reverse {
    direction: rtl;
}

.about-info-block.reverse > * {
    direction: ltr;
}

.about-text-content {
    padding: 40px 0;
}

.about-text-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212f43;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

.about-image-content {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.image-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.about-image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

.about-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-stats-section .stat-card {
    text-align: center;
    padding: 50px 30px;
    background: #f4f8fb;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-stats-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    background: white;
}

.about-stats-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stats-section .stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */
.privacy-policy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e8ecf0;
}

.intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 28px;
    color: #212f43;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8ecf0;
}

.privacy-section h3 {
    font-size: 20px;
    color: #3b82f6;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.privacy-list li strong {
    color: #212f43;
    font-weight: 600;
}

.contact-info-box {
    background: #f4f8fb;
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid #3b82f6;
}

.contact-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.privacy-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f2f7 100%);
    border-radius: 16px;
    text-align: center;
}

.privacy-cta h3 {
    font-size: 28px;
    color: #212f43;
    margin-bottom: 15px;
    font-weight: 700;
}

.privacy-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   CAREER PAGE
   ======================================== */
.career-positions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.career-position-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8ecf0;
}

.position-header h3 {
    font-size: 24px;
    color: #212f43;
    margin: 0;
    font-weight: 700;
}

.position-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f7ff;
    color: #3b82f6;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.position-details {
    margin-top: 20px;
}

.position-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.position-location,
.position-type {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.position-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.position-requirements {
    margin-bottom: 25px;
}

.position-requirements h4 {
    font-size: 18px;
    color: #212f43;
    margin-bottom: 15px;
    font-weight: 600;
}

.career-position-card .privacy-list {
    margin: 15px 0;
}

.career-position-card .privacy-list li {
    font-size: 15px;
    padding: 8px 0 8px 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #212f43;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.mission-vision-section {
    padding: 100px 0;
    background: #f4f8fb;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
}

.mv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mv-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f7ff;
    color: #3b82f6;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mv-icon {
    font-size: 48px;
    opacity: 0.1;
}

.mv-card h2 {
    font-size: 28px;
    color: #212f43;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mv-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
}

.check-icon {
    color: #3b82f6;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.values-section {
    padding: 100px 0;
    background: white;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f2f7 100%);
}

.team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-content {
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f7ff;
    color: #3b82f6;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.team-content h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.team-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.team-stat-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
    line-height: 1;
}

.team-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.team-visual {
    position: relative;
}

.team-visual-card {
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.visual-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
}

.team-visual-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-visual-card p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.value-icon {
    font-size: 40px;
    filter: brightness(0) invert(1);
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #3b82f6;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.value-card h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.mission-image-placeholder,
.vision-image-placeholder,
.team-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #212f43 0%, #313d4f 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.mission-image-placeholder p,
.vision-image-placeholder p,
.team-image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.about-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-features {
    margin-top: 30px;
}

.vision-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.vision-feature .feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.vision-feature h4 {
    font-size: 18px;
    color: #212f43;
    margin-bottom: 8px;
    font-weight: 600;
}

.vision-feature p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.team-stat {
    text-align: center;
    padding: 20px;
    background: #f4f8fb;
    border-radius: 8px;
}

.team-stat h4 {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f7ff;
    color: #3b82f6;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.mission-content h2,
.vision-content h2,
.team-content h2 {
    font-size: 32px;
    color: #212f43;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.mission-content p,
.vision-content p,
.team-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.mission-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
}

.mission-list .check {
    color: #3b82f6;
    font-weight: 700;
    font-size: 18px;
}

.about-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f2f7 100%);
    border-radius: 16px;
    margin: 60px 0;
}

.about-cta h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info {
    padding: 60px 0;
    background: #f4f8fb;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 10px;
}

.info-card p {
    color: #3b82f6;
    font-weight: 600;
    margin: 5px 0;
}

.info-card p a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.info-card p a:hover {
    text-decoration: underline;
}

.info-detail {
    color: #999 !important;
    font-size: 14px;
    font-weight: 400 !important;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.form-content h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #313d4f;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: none;
}

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

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

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-side-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-side-section h3 {
    font-size: 22px;
    color: #212f43;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-container-side {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card {
    background: #f4f8fb;
    padding: 40px 30px;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 22px;
    color: #212f43;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 25px;
    color: #666;
}

.contact-card button {
    width: 100%;
    margin-bottom: 12px;
}

.contact-hours {
    background: white;
    padding: 30px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
}

.contact-hours h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 20px;
}

.contact-hours ul {
    list-style: none;
}

.contact-hours li {
    padding: 10px 0;
    border-bottom: 1px solid #e8ecf0;
}

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

.contact-hours .note {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
}

.map-section {
    margin: 60px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 32px;
    color: #212f43;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-faq {
    padding: 80px 0;
    background: #f4f8fb;
}

.contact-faq h2 {
    text-align: center;
    font-size: 32px;
    color: #212f43;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-quick {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.faq-quick h4 {
    color: #212f43;
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-quick p {
    color: #666;
    font-size: 15px;
}

/* ========================================
   HOSTING PAGE
   ======================================== */
.hosting-packages {
    padding: 60px 0;
}

.packages-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.packages-intro h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 30px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.tab-btn:hover,
.tab-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.package-content {
    display: none;
}

.package-content.active {
    display: block;
}

.server-content {
    display: none;
}

.server-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.25s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #212f43;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.package-badge.popular {
    background: #3b82f6;
}

.pricing-card h3 {
    font-size: 28px;
    color: #212f43;
    margin: 20px 0;
}

.price {
    margin: 30px 0;
}

.price .currency {
    font-size: 24px;
    color: #666;
}

.price .amount {
    font-size: 52px;
    font-weight: 700;
    color: #212f43;
}

.price .period {
    font-size: 18px;
    color: #999;
}

.package-desc {
    color: #666;
    margin-bottom: 30px;
    min-height: 45px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

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

/* ========================================
   PACKAGE COMPARISON TABLE
   ======================================== */
.package-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    min-width: 800px;
}

.comparison-table thead {
    background: #212f43;
    color: white;
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table th.feature-col {
    text-align: left;
    background: #1a252f;
    width: 30%;
}

.comparison-table th.package-col {
    width: 23.33%;
    position: relative;
}

.comparison-table th.package-col.featured {
    background: #3b82f6;
}

.package-badge-table {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #212f43;
    color: white;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.package-price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e8ecf0;
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 15px;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #212f43;
    background: #f8f9fa;
    width: 30%;
}

.comparison-table td.featured-cell {
    background: #f0f7ff;
    color: #3b82f6;
    font-weight: 600;
}

.comparison-table .action-row td {
    padding: 30px 20px;
    background: #f8f9fa;
}

.comparison-table .action-row td.featured-cell {
    background: #f0f7ff;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.features-comparison {
    padding: 80px 0;
    background: #f4f8fb;
}

.features-comparison h2 {
    text-align: center;
    font-size: 32px;
    color: #212f43;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    border: 2px solid #e8ecf0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.feature-icon {
    font-size: 48px;
    display: block;
    line-height: 1;
}

.feature-item h4 {
    color: #212f43;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   HOSTING FAQ SECTION
   ======================================== */
.hosting-faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.hosting-faq .faq-item {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block !important;
    padding: 0 !important;
}

.hosting-faq .faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.hosting-faq .faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
}

.hosting-faq .faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.hosting-faq .faq-question:hover {
    background: #f8f9fa;
}

.hosting-faq .faq-item.active .faq-question {
    background: #f0f7ff;
}

.hosting-faq .faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #212f43;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.hosting-faq .faq-item h3 {
    display: none !important;
}

.hosting-faq .faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #3b82f6;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    margin-left: 0 !important;
}

.hosting-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.hosting-faq .faq-toggle:hover {
    transform: none !important;
    color: #3b82f6 !important;
}

.hosting-faq .faq-item.active .faq-toggle:hover {
    transform: rotate(45deg) !important;
}

.hosting-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.hosting-faq .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.hosting-faq .faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-top: 15px;
}

.hosting-cta {
    padding: 80px 0;
    text-align: center;
}

.hosting-cta h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.hosting-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   VDS SERVERS SECTION
   ======================================== */
.vds-servers {
    padding: 80px 0;
    background: #f4f8fb;
}

.vds-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.vds-row {
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 1fr 150px 140px;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.vds-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.vds-row.featured {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.vds-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #212f43;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}

.vds-package {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.vds-icon {
    font-size: 24px;
}

.vds-name {
    font-size: 18px;
    color: #212f43;
}

.vds-row.featured .vds-name {
    color: white;
}

.vds-spec {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vds-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vds-row.featured .vds-label {
    color: rgba(255,255,255,0.8);
}

.vds-value {
    font-size: 15px;
    color: #212f43;
    font-weight: 500;
}

.vds-row.featured .vds-value {
    color: white;
}

.vds-price {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
    text-align: right;
}

.vds-row.featured .vds-price {
    color: white;
}

.vds-period {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-left: 3px;
}

.vds-row.featured .vds-period {
    color: rgba(255,255,255,0.8);
}

.btn-vds {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-vds:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.vds-row.featured .btn-vds {
    background: white;
    color: #3b82f6;
}

.vds-row.featured .btn-vds:hover {
    background: #f0f0f0;
    color: #2563eb;
}

/* ========================================
   BLOG PAGE
   ======================================== */
.blog-categories {
    padding: 40px 0 20px;
    background: #f4f8fb;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
}

.category-btn:hover,
.category-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.featured-post {
    padding: 60px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.post-category {
    color: #3b82f6;
    font-weight: 600;
}

.featured-content h2 {
    font-size: 32px;
    color: #212f43;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.blog-posts {
    padding: 80px 0;
    background: #f4f8fb;
}

.blog-posts h2 {
    text-align: center;
    font-size: 36px;
    color: #212f43;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}

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

.blog-image .post-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #3b82f6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    color: #357f54;
}

.load-more {
    text-align: center;
    margin-top: 50px;
}

.newsletter {
    padding: 80px 0;
}

.newsletter-card {
    background: linear-gradient(135deg, #212f43 0%, #2d3e52 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.newsletter-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.newsletter-privacy {
    font-size: 13px;
    opacity: 0.8;
}

.newsletter-privacy a {
    color: #3b82f6;
    text-decoration: none;
}

.popular-tags {
    padding: 60px 0;
    background: #f4f8fb;
}

.popular-tags h3 {
    text-align: center;
    font-size: 24px;
    color: #212f43;
    margin-bottom: 30px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 25px;
    color: #313d4f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
}

.tag:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* ========================================
   RESPONSIVE - NEW PAGES
   ======================================== */
@media (max-width: 992px) {
    .stats-grid,
    .values-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 700px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px;
        font-size: 14px;
    }

    .package-price {
        font-size: 24px;
    }

    .about-info-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-info-block.reverse {
        direction: ltr;
    }

    .about-text-content h2 {
        font-size: 28px;
    }

    .about-text-content p {
        font-size: 16px;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .about-stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .team-wrapper {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission,
    .about-vision,
    .about-team,
    .contact-wrapper,
    .featured-card {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .blog-grid,
    .info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content-section {
        padding: 60px 0;
    }

    .about-info-block {
        margin-bottom: 50px;
    }

    .about-text-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-text-content p {
        font-size: 15px;
    }

    .about-image-placeholder {
        height: 250px;
    }

    .image-icon {
        font-size: 60px;
    }

    .about-stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats-section .stat-card {
        padding: 35px 20px;
    }

    .about-stats-section .stat-number {
        font-size: 36px;
    }

    .privacy-content {
        padding: 0 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }

    .contact-info-box {
        padding: 20px;
    }

    .privacy-cta {
        padding: 35px 25px;
    }

    .career-position-card {
        padding: 30px 20px;
    }

    .position-header {
        flex-direction: column;
        gap: 15px;
    }

    .position-header h3 {
        font-size: 20px;
    }

    .position-meta {
        flex-direction: column;
        gap: 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .package-name {
        font-size: 18px;
    }

    .package-price {
        font-size: 20px;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .package-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

/* ========================================
   DOMAIN PAGE
   ======================================== */
.domain-search-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f2f7 100%);
}

.search-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.search-intro h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.search-intro p {
    font-size: 18px;
    color: #666;
}

.domain-search-box-large {
    max-width: 900px;
    margin: 0 auto;
}

.search-form-large {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    background: white;
    border: 3px solid #e8ecf0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.search-input-wrapper:focus-within {
    border-color: #3b82f6;
}

.search-prefix {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #f8f9fa;
    color: #999;
    font-weight: 500;
    font-size: 16px;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: 20px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    outline: none;
}

.extension-select {
    border: none;
    border-left: 2px solid #e8ecf0;
    padding: 0 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #212f43;
    cursor: pointer;
    background: white;
    outline: none;
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
    white-space: nowrap;
}

.search-icon {
    font-size: 18px;
    margin-right: 8px;
}

.search-suggestions {
    text-align: center;
    color: #666;
}

.search-suggestions p {
    margin-bottom: 15px;
    font-size: 14px;
}

.suggestion-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.suggestion-tag {
    padding: 8px 18px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s;
}

.suggestion-tag:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* Search Results */
.search-results {
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.result-main {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #f4f8fb;
    border-radius: 12px;
    margin-bottom: 40px;
}

.result-status {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
}

.result-status h3 {
    font-size: 28px;
    color: #212f43;
}

.availability {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.availability.available {
    background: #d4edda;
    color: #155724;
}

.availability.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.result-price {
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #212f43;
}

.price-period {
    color: #999;
    font-size: 14px;
}

.alternative-results h4 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 25px;
}

.alternatives-grid {
    display: grid;
    gap: 15px;
}

.alternative-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.25s;
}

.alternative-item:hover {
    background: #e8f2f7;
}

.alt-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.alt-info strong {
    font-size: 16px;
    color: #212f43;
}

.alt-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.alt-status.available {
    background: #d4edda;
    color: #155724;
}

.alt-status.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.alt-price {
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 20px;
}

/* Domain Pricing */
.domain-pricing {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 18px;
    color: #666;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.pricing-tab-btn:hover,
.pricing-tab-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.pricing-table {
    display: none;
}

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

.domain-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.domain-table thead {
    background: #212f43;
    color: white;
}

.domain-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.domain-table tbody tr {
    border-bottom: 1px solid #e8ecf0;
    transition: background 0.25s;
}

.domain-table tbody tr:hover {
    background: #f4f8fb;
}

.domain-table tbody tr:last-child {
    border-bottom: none;
}

.domain-table td {
    padding: 20px;
}

.domain-table td strong {
    font-size: 18px;
    color: #212f43;
}

.domain-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
}

.domain-badge.popular {
    background: #3b82f6;
    color: white;
}

.domain-badge.local {
    background: #ff6b6b;
    color: white;
}

.domain-badge.new {
    background: #4ecdc4;
    color: white;
}

.price-cell {
    font-size: 18px;
    font-weight: 600;
    color: #3b82f6;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Domain Transfer */
.domain-transfer {
    padding: 80px 0;
    background: #f4f8fb;
}

.transfer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.transfer-content h2 {
    font-size: 36px;
    color: #212f43;
    margin: 20px 0;
}

.transfer-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.transfer-features {
    display: grid;
    gap: 25px;
}

.transfer-feature {
    display: flex;
    align-items: start;
    gap: 20px;
}

.transfer-feature .feature-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.transfer-feature h4 {
    color: #212f43;
    margin-bottom: 5px;
    font-size: 18px;
}

.transfer-feature p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.transfer-form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.transfer-form-card h3 {
    font-size: 24px;
    color: #212f43;
    margin-bottom: 30px;
}

.transfer-form .form-group {
    margin-bottom: 25px;
}

.transfer-form label {
    display: block;
    margin-bottom: 8px;
    color: #313d4f;
    font-weight: 500;
}

.transfer-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: border-color 0.25s;
}

.transfer-form input:focus {
    outline: none;
    border-color: #3b82f6;
}

.transfer-form small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #999;
}

.transfer-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f4f8fb;
    border-radius: 8px;
    margin-bottom: 25px;
}

.transfer-price span {
    color: #666;
}

.transfer-price strong {
    color: #3b82f6;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.transfer-note {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.transfer-note p {
    margin: 0;
    font-size: 14px;
    color: #856404;
}

/* Domain Features */
.domain-features {
    padding: 80px 0;
}

.domain-features h2 {
    text-align: center;
    font-size: 36px;
    color: #212f43;
    margin-bottom: 60px;
}

.features-grid-domain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card-domain {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    transition: all 0.25s;
}

.feature-card-domain:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-card-domain h3 {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 15px;
}

.feature-card-domain p {
    color: #666;
    line-height: 1.6;
}

/* Domain FAQ */
.domain-faq {
    padding: 80px 0;
    background: #f4f8fb;
}

.domain-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #212f43;
    margin-bottom: 60px;
}

.faq-grid-domain {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item-domain {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.faq-item-domain h4 {
    font-size: 18px;
    color: #212f43;
    margin-bottom: 15px;
}

.faq-item-domain p {
    color: #666;
    line-height: 1.6;
}

/* Domain CTA */
.domain-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #212f43 0%, #2d3e52 100%);
    color: white;
}

.domain-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.domain-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   RESPONSIVE - DOMAIN PAGE
   ======================================== */
@media (max-width: 992px) {
    .transfer-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-domain {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid-domain {
        grid-template-columns: 1fr;
    }

    .search-form-large {
        flex-direction: column;
    }

    .domain-table {
        font-size: 14px;
    }

    .domain-table th,
    .domain-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .features-grid-domain {
        grid-template-columns: 1fr;
    }

    .search-input-wrapper {
        flex-direction: column;
    }

    .search-prefix {
        padding: 15px 20px;
        border-bottom: 2px solid #e8ecf0;
    }

    .extension-select {
        border-left: none;
        border-top: 2px solid #e8ecf0;
        padding: 15px 20px;
    }

    .result-main {
        flex-direction: column;
        text-align: center;
    }

    /* Make table scrollable on mobile */
    .domain-table-wrapper {
        overflow-x: auto;
    }

    .domain-table {
        min-width: 600px;
    }

    .pricing-tabs {
        flex-direction: column;
    }

    .pricing-tab-btn {
        width: 100%;
    }
}

/* ========================================
   AUTH PAGES (LOGIN/REGISTER)
   ======================================== */
.auth-page {
    min-height: calc(100vh - 200px);
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f8fb 0%, #e8f0f5 100%);
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-wrapper-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: none;
}

.auth-wrapper-centered .auth-form-container {
    max-width: 500px;
    width: 100%;
}

/* Left Side - Info */
.auth-info {
    padding: 40px;
}

.auth-logo {
    margin-bottom: 40px;
}

.auth-logo img {
    height: 50px;
}

.auth-info h2 {
    font-size: 36px;
    color: #212f43;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.auth-info > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.feature-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
}

.auth-feature-item h4 {
    font-size: 18px;
    color: #212f43;
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Right Side - Form */
.auth-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auth-form-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.auth-form-card h3 {
    font-size: 28px;
    color: #212f43;
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 35px;
}

.auth-form {
    margin-top: 30px;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #313d4f;
    font-weight: 500;
    font-size: 14px;
}

.auth-form .form-group input,
.auth-form .form-group select,
.auth-form .form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.25s;
    background: white;
}

.auth-form .form-group input:focus,
.auth-form .form-group select:focus,
.auth-form .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #999;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    font-size: 20px;
    z-index: 1;
    pointer-events: none;
}

.input-with-icon input {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.25s;
    background: white;
}

.input-with-icon input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-with-icon .toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.25s;
}

.input-with-icon .toggle-password:hover {
    transform: scale(1.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3b82f6;
}

.forgot-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s;
}

.forgot-link:hover {
    color: #357f54;
    text-decoration: underline;
}

.form-message {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

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

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

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 16px 30px;
    font-size: 16px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #999;
    font-size: 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e8ecf0;
}

.auth-divider span {
    padding: 0 20px;
}

.social-login {
    margin-bottom: 30px;
}

.social-btn {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s;
}

.google-btn {
    color: #333;
}

.google-btn:hover {
    border-color: #4285F4;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.15);
}

.social-btn svg {
    flex-shrink: 0;
}

.auth-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #e8ecf0;
}

.auth-footer p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.auth-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s;
}

.auth-footer a:hover {
    color: #357f54;
    text-decoration: underline;
}

.auth-help {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.auth-help p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.auth-help a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.25s;
}

.auth-help a:hover {
    color: #357f54;
    text-decoration: underline;
}

/* Responsive - Auth Pages */
@media (max-width: 992px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .auth-info {
        text-align: center;
        padding: 30px 20px;
    }

    .auth-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .auth-page {
        padding: 40px 0;
    }

    .auth-form-card {
        padding: 30px 20px;
    }

    .auth-info h2 {
        font-size: 28px;
    }

    .auth-form-card h3 {
        font-size: 24px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .forgot-link {
        margin-top: 5px;
    }

    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ONBOARDING REGISTER PAGE
   ======================================== */
.onboarding-page {
    padding: 60px 0;
}

.onboarding-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Steps */
.onboarding-progress {
    margin-bottom: 50px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e8ecf0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.step-item.active .step-number {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: scale(1.1);
}

.step-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.step-item.active .step-label {
    color: #3b82f6;
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e8ecf0;
    min-width: 80px;
    transition: all 0.3s;
}

.step-line.completed {
    background: #3b82f6;
}

/* Form Container */
.onboarding-form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.onboarding-form-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.onboarding-step {
    display: none;
}

.onboarding-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.onboarding-step h2 {
    font-size: 32px;
    color: #212f43;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.step-description {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Account Type Selection */
.account-type-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.account-type-card {
    border: 3px solid #e8ecf0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.account-type-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.account-type-card.selected {
    border-color: #3b82f6;
    background: #f0f9f4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.type-icon {
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1;
}

.account-type-card h3 {
    font-size: 24px;
    color: #212f43;
    margin: 0;
    font-weight: 700;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8ecf0;
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 20px;
    color: #212f43;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 25px;
    font-style: italic;
}

/* Phone Input with Country Code */
.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 0 0 120px;
    padding: 16px 15px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    background: white;
    cursor: pointer;
    transition: border-color 0.25s;
}

.country-code:focus {
    outline: none;
    border-color: #3b82f6;
}

.phone-input input {
    flex: 1;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 18px;
    border: 2px solid #e8ecf0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.25s;
    background: white;
}

.password-input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-input-wrapper .toggle-password {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.25s;
}

.password-input-wrapper .toggle-password:hover {
    transform: scale(1.1);
}

/* Onboarding Actions */
.onboarding-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8ecf0;
}

.onboarding-actions .btn-success,
.onboarding-actions .btn-outline {
    min-width: 150px;
}

/* Input Error State */
input.error,
select.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Responsive - Onboarding */
@media (max-width: 992px) {
    .account-type-selection {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step-line {
        min-width: 40px;
    }

    .step-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .onboarding-form-card {
        padding: 30px 20px;
    }

    .onboarding-step h2 {
        font-size: 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 11px;
    }

    .type-icon {
        font-size: 64px;
    }

    .account-type-card {
        padding: 30px 20px;
    }

    .onboarding-actions {
        flex-direction: column;
        gap: 15px;
    }

    .onboarding-actions .btn-success,
    .onboarding-actions .btn-outline {
        width: 100%;
    }
}