:root {
--primary: #2563eb;
--primary-light: #f1f7ff;
--primary-dark: #1d4ed8;
--text-main: #0f172a;
--text-muted: #64748b;
--bg-header: rgba(255, 255, 255, 0.95);
--border-color: #f1f5f9;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
font-family: 'Inter', sans-serif;
background-color: #ffffff;
color: var(--text-main);
overflow-x: hidden;
}

/* Top Bar */
.top-bar {
background-color: #f8fafc;
border-bottom: 1px solid var(--border-color);
padding: 8px 0;
font-size: 13px;
font-weight: 500;
color: var(--text-muted);
}

/* Header Main */
.site-header {
background-color: var(--bg-header);
backdrop-filter: saturate(180%) blur(20px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-color);
height: 80px;
display: flex;
align-items: center;
transition: var(--transition);
}

.site-header.scrolled {
height: 70px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}

/* Logo */
.logo {
text-decoration: none;
display: flex;
align-items: center;
gap: 12px;
min-width: 160px;
}

.logo-symbol {
width: 36px;
height: 36px;
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 18px;
}

.logo-text {
font-size: 24px;
font-weight: 800;
color: var(--text-main);
letter-spacing: -1px;
}

.logo-text span {
color: var(--primary);
}

/* Navigation */
.nav-main {
display: flex;
list-style: none;
height: 100%;
align-items: center;
gap: 10px;
}

.nav-item {
height: 80px;
display: flex;
align-items: center;
}

.site-header.scrolled .nav-item {
height: 70px;
}

.nav-link {
text-decoration: none;
color: var(--text-main);
font-size: 14px;
font-weight: 600;
padding: 0 16px;
display: flex;
align-items: center;
gap: 6px;
height: 100%;
transition: var(--transition);
position: relative;
}

.nav-link:hover {
color: var(--primary);
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 16px;
right: 16px;
height: 2px;
background-color: var(--primary);
transform: scaleX(0);
transition: var(--transition);
}

.nav-item:hover .nav-link::after {
transform: scaleX(1);
}

/* MEGA MENU */
.mega-menu {
position: absolute;
top: 100%;
left: 50%;
width: 100vw;
background: white;
border-bottom: 1px solid var(--border-color);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transform: translateX(-50%) translateY(10px);
transition: var(--transition);
padding: 30px 0;
}

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

.mega-menu-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
display: flex;
flex-direction: column;
gap: 24px;
}

.mega-section {
display: flex;
flex-wrap: nowrap;
gap: 20px;
overflow-x: auto;
padding-bottom: 10px;
}

.menu-card {
flex: 1;
min-width: 280px;
text-decoration: none;
display: flex;
align-items: flex-start;
gap: 16px;
padding: 20px;
border-radius: 12px;
border: 1px solid transparent;
transition: var(--transition);
background-color: #f8fafc;
}

.menu-card:hover {
background-color: white;
border-color: var(--primary-light);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
transform: translateY(-2px);
}

.menu-card-icon {
width: 48px;
height: 48px;
background-color: white;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 20px;
flex-shrink: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.menu-card:hover .menu-card-icon {
background-color: var(--primary);
color: white;
}

.menu-card-info h4 {
font-size: 15px;
font-weight: 700;
color: var(--text-main);
margin-bottom: 4px;
}

.menu-card-info p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.4;
}

.section-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 800;
color: var(--primary);
margin-bottom: 8px;
display: block;
}

/* Action Buttons */
.actions {
display: flex;
align-items: center;
gap: 16px;
}

.btn-link {
text-decoration: none;
color: var(--text-main);
font-size: 14px;
font-weight: 600;
}

.btn-primary {
background-color: var(--primary);
color: white;
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: var(--transition);
}

.btn-primary:hover {
background-color: var(--primary-dark);
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}



.pf-footer{
    background:#0f172a;
    color:#cbd5f5;
    margin-top:0px;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* container */
.pf-footer-container{
    max-width:1300px;
    margin:auto;
    padding:70px 25px 50px;
    display:grid;
    grid-template-columns: 1.6fr repeat(4,1fr);
    gap:50px;
}

/* brand */
.pf-footer-logo{
    font-size:22px;
    font-weight:700;
    color:white;
    margin-bottom:18px;
}

.pf-footer-text{
    font-size:14px;
    line-height:1.7;
    opacity:.8;
    max-width:320px;
}

/* social */
.pf-footer-social{
    display:flex;
    gap:14px;
    margin-top:22px;
}

.pf-footer-social a{
    width:34px;
    height:34px;
    border-radius:8px;
    background:rgba(255,255,255,0.05);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:13px;
    transition:.25s;
}

.pf-footer-social a:hover{
    background:#2563eb;
}

/* columns */
.pf-footer-col h4{
    color:white;
    font-size:15px;
    margin-bottom:18px;
}

.pf-footer-col a{
    display:block;
    text-decoration:none;
    color:#cbd5f5;
    font-size:14px;
    margin-bottom:10px;
    opacity:.8;
    transition:.2s;
}

.pf-footer-col a:hover{
    opacity:1;
    color:white;
}

.pf-footer-col p{
    font-size:14px;
    margin-bottom:8px;
    opacity:.8;
}

/* bottom bar */
.pf-footer-bottom{
    border-top:1px solid rgba(255,255,255,0.06);
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1300px;
    margin:auto;
    font-size:13px;
    opacity:.7;
}

.pf-footer-legal{
    display:flex;
    gap:20px;
}

.pf-footer-legal a{
    text-decoration:none;
    color:#cbd5f5;
}

/* responsive */
@media(max-width:1000px){
    .pf-footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){
    .pf-footer-container{
        grid-template-columns:1fr;
    }

    .pf-footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}



.philosophy-section{
    background:#f8fafc;
    padding:90px 25px;
}

.philosophy-container{
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* title */
.philosophy-title{
    font-size:28px;
    line-height:1.4;
    font-weight:600;
    color:#0f172a;
    margin-bottom:60px;
}

.philosophy-title span{
    display:block;
    color:#64748b;
    font-weight:400;
    margin-top:6px;
}

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

/* item */
.philosophy-item{
    padding-top:18px;
    transition:.3s ease;
}

.philosophy-item:hover{
    transform: translateY(-6px);
}

/* top line accent */
.philosophy-line{
    width:40px;
    height:2px;
    background:#2563eb;
    margin:0 auto 18px;
    transition:.3s;
}

.philosophy-item:hover .philosophy-line{
    width:60px;
}

/* text */
.philosophy-item h4{
    font-size:16px;
    color:#0f172a;
    margin-bottom:8px;
}

.philosophy-item p{
    font-size:14px;
    color:#64748b;
    line-height:1.6;
}

/* responsive */
@media(max-width:800px){
    .philosophy-grid{
        grid-template-columns:1fr;
        gap:35px;
    }
}


/* section */
.srvx-section{
    background:#ffffff;
    padding:120px 25px;
}

/* container */
.srvx-container{
    max-width:1200px;
    margin:auto;
}

/* header */
.srvx-header{
    text-align:center;
    max-width:720px;
    margin:0 auto 80px;
}

.srvx-label{
    display:block;
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#64748b;
    margin-bottom:12px;
}

.srvx-header h2{
    font-size:36px;
    font-weight:600;
    color:#0f172a;
    margin-bottom:14px;
}

.srvx-header p{
    color:#64748b;
    line-height:1.7;
}

/* grid */
.srvx-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* card */
.srvx-card{
    position:relative;
    background:#f8fafc;
    padding:38px;
    border-radius:10px;
    text-decoration:none;
    border:1px solid rgba(15,23,42,0.05);
    transition:.35s ease;
    overflow:hidden;
}

/* top accent */
.srvx-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    opacity:0;
    transition:.35s;
}

.srvx-card:hover::before{
    opacity:1;
}

/* background icon watermark */
.srvx-bg-icon{
    position:absolute;
    right:-10px;
    bottom:-10px;
    font-size:120px;
    color:#0f172a;
    opacity:0.04;
    pointer-events:none;
    transition:.5s ease;
}

.srvx-card:hover .srvx-bg-icon{
    transform:scale(1.1) translate(-5px,-5px);
    opacity:0.06;
}

/* hover card */
.srvx-card:hover{
    background:white;
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* small icon */
.srvx-icon{
    width:48px;
    height:48px;
    border-radius:8px;
    background:rgba(37,99,235,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#2563eb;
    margin-bottom:20px;
    transition:.3s;
}

.srvx-card:hover .srvx-icon{
    background:#2563eb;
    color:white;
}

/* title */
.srvx-card h3{
    font-size:19px;
    color:#0f172a;
    margin-bottom:10px;
}

/* text */
.srvx-card p{
    font-size:14px;
    color:#64748b;
    line-height:1.6;
    margin-bottom:18px;
}

/* link */
.srvx-link{
    font-size:13px;
    font-weight:500;
    color:#2563eb;
}

/* responsive */
@media(max-width:900px){
    .srvx-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .srvx-grid{
        grid-template-columns:1fr;
    }

    .srvx-header h2{
        font-size:28px;
    }
}

#content{
min-height:500px;
overflow:hidden;
}


/*ss*/
.domain-section {
    margin:0 auto;
    padding:80px 20px;
    text-align:center;
    background:#ffffff;
	background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
	background-size: 24px 24px;
    color:#111827;
}

.domain-container {
    max-width:820px;
    margin:0 auto;
}

.domain-title {
    font-size:42px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:-0.5px;
}

.domain-subtitle {
    font-size:17px;
    color:#6b7280;
    margin-bottom:60px;
}

.domain-form {
    display:flex;
    justify-content:center;
    align-items:center;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 30px rgba(0,0,0,0.04);
}

.domain-input {
    flex:1;
    height:64px;
    border:none;
    padding:0 22px;
    font-size:17px;
    outline:none;
}

.domain-button {
    height:64px;
    padding:0 34px;
    border:none;
    background:#111827;
    color:#fff;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:0.2s ease;
}

.domain-button:hover {
    background:#000;
}

.domain-note {
    margin-top:12px;
    font-size:13px;
    color:#9ca3af;
    font-weight:400;
}

.domain-tlds {
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:40px;
}

.tld-item {
    display:flex;
    align-items:baseline;
    gap:10px;
    padding:6px 0;
    border-bottom:1px solid transparent;
    transition:0.2s ease;
    cursor:pointer;
}

.tld-item:hover {
    border-color:#111827;
}

.tld-name {
    font-size:18px;
    font-weight:600;
    color:#2563eb;
}

.tld-price {
    font-size:16px;
    color:#374151;
}

.tld-price small {
    font-size:13px;
    color:#9ca3af;
}

/*Hosting Section*/
.hosting-section {
    margin:0 auto;
    padding:80px 20px;
    text-align:center;
    
}

.hosting-container {
    max-width:1100px;
    margin:0 auto;
}

.hosting-title {
    font-size:38px;
    font-weight:600;
    margin-bottom:15px;
    color:#111827;
}

.hosting-subtitle {
    font-size:16px;
    color:#6b7280;
    margin-bottom:70px;
}

.hosting-table-wrapper {
    overflow:hidden;
    border:1px solid #e5e7eb;
    border-radius:16px;
}

.hosting-table {
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.hosting-table th,
.hosting-table td {
    padding:22px 20px;
    border-bottom:1px solid #f1f5f9;
    text-align:center;
    font-size:15px;
}

.hosting-table th:first-child,
.hosting-table td:first-child {
    text-align:left;
    font-weight:500;
    color:#374151;
    width:25%;
}

.hosting-table thead th {
    font-size:16px;
    font-weight:600;
    background:#f9fafb;
    color:#111827;
}

.price-row td {
    font-size:26px;
    font-weight:600;
    color:#111827;
}

.price-row span {
    font-size:14px;
    font-weight:400;
    color:#6b7280;
}

.featured {
    background:#fafafa;
}

.button-row td {
    padding:30px 20px;
}

.table-button {
    display:inline-block;
    padding:12px 28px;
    border:1px solid #111827;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    color:#111827;
    transition:0.2s ease;
}

.table-button:hover {
    background:#111827;
    color:#fff;
}

.featured-btn {
    background:#111827;
    color:#fff;
}

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

.hosting-more-link {
    display:inline-block;
    font-size:15px;
    font-weight:500;
    color:#111827;
    text-decoration:none;
    padding-bottom:4px;
    border-bottom:1px solid #111827;
    transition:0.2s ease;
}

.hosting-more-link:hover {
    opacity:0.7;
}

.trust-section {
    margin:0px auto;
    padding:100px 20px;
	background:#f8fafc;
}

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

.trust-header {
    text-align:center;
    margin-bottom:70px;
}

.trust-header h2 {
    font-size:34px;
    font-weight:600;
    color:#111827;
    margin-bottom:12px;
}

.trust-header p {
    font-size:16px;
    color:#6B7280;
}

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

.trust-item {
    text-align:center;
    padding:40px 25px;
    border:1px solid #E5E7EB;
    border-radius:14px;
    transition:0.25s ease;
}

.trust-item:hover {
    border-color:#111827;
}

.trust-number {
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
    letter-spacing:1px;
}

.trust-item h3 {
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.trust-item p {
    font-size:14px;
    color:#6B7280;
    line-height:1.6;
}


.domain-result-section {
    max-width:1200px;
    margin:20px auto;
    padding:0 20px;
}

.domain-result-container {
    background:linear-gradient(180deg,#ffffff 0%, #f9fafb 100%);
    border-radius:0px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    border:1px solid #f1f1f1;
}

/* TOP */

.result-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.result-domain-area {
    display:flex;
    align-items:center;
    gap:20px;
}

.result-domain {
    font-size:36px;
    font-weight:700;
    color:#111827;
}

.result-badge {
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.available {
    background:#ecfdf5;
    color:#047857;
}

.taken{
    background:#fef2f2;
    color:#b91c1c;
}

.result-price {
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.result-price span {
    font-size:14px;
    font-weight:400;
    color:#6b7280;
}

/* BUTTONS */

.add-to-cart {
    background:#111827;
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:0px;
    font-size:14px;
    cursor:pointer;
    transition:0.25s ease;
}

.add-to-cart:hover {
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.add-to-cart.added {
    background:#ecfdf5;
    color:#047857;
    border:1px solid #047857;
}

/* ALT SECTION */

.result-alt-section h3 {
    font-size:18px;
    margin-bottom:30px;
}

.result-alt-list {
    display:flex;
    flex-direction:column;
    gap:18px;
}

.alt-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 25px;
    border-radius:0px;
    background:#fff;
    border:1px solid #f0f0f0;
    transition:0.25s ease;
}

.alt-row:hover {
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

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

.alt-domain {
    font-weight:600;
    color:#111827;
}

.alt-status {
    font-size:12px;
    padding:6px 14px;
    border-radius:0px;
    font-weight:600;
}

.alt-right {
    display:flex;
    align-items:center;
    gap:20px;
}

.alt-price {
    font-size:14px;
    color:#6b7280;
}

/* CART SUMMARY */

.cart-summary {
    margin-top:60px;
    padding:25px 35px;
    border-radius:0px;
    background:#111827;
    color:#fff;
    display:flex;
    justify-content:space-between;
    font-size:15px;
}

.domain-research-section {
    max-width:1200px;
    margin:30px auto 0px auto;
    padding:0 20px;
}

.domain-research-container {
    background:#ffffff;
    border:1px solid #f0f0f0;
    border-radius:0px;
    padding:25px 35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.domain-research-form {
    display:flex;
    align-items:center;
    gap:15px;
}

.domain-research-form input {
    flex:1;
    padding:16px 20px;
    font-size:14px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    outline:none;
    transition:0.2s ease;
}

.domain-research-form input:focus {
    border-color:#111827;
}

.domain-research-form button {
    background:#111827;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    font-size:14px;
    cursor:pointer;
    transition:0.25s ease;
}

.domain-research-form button:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}


