:root {
    /* Brand Colors */
    --primary: #f78c1e; /* Host256 Orange */
    --primary-dark: #e67e00;
    --secondary: #001f3f; /* Host256 Navy Blue */
    --secondary-light: #002d5c;
    --accent: #00d4ff;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #1a1a1a;
    --text: #333333;
    
    /* Functional Colors */
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    
    /* Shadows & Effects */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    --glass: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 3rem;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* --- Layout Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

/* --- Navigation --- */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-item {
    position: relative;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--secondary);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 140, 30, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #003366 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9) 0%, rgba(0, 51, 102, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}


.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: var(--fs-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- Domain Search Bar --- */
.domain-search {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
}

.domain-search input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-size: var(--fs-base);
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

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

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* --- Pricing Cards --- */
.pricing-card {
    border-top: 5px solid var(--primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
}

.price span {
    font-size: var(--fs-sm);
    color: var(--gray);
}

/* --- Footer --- */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: var(--fs-lg);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    opacity: 0.8;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: var(--fs-sm);
    opacity: 0.7;
}

/* --- Partners Grid --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.partner-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nav-container {
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        gap: 1.5rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }

    .hero {
        text-align: center;
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.bg-light { background-color: var(--light); }
.text-primary { color: var(--primary); }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    background-color: #128c7e;
}

/* --- New Pricing & Feature Styles --- */
.badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: var(--fs-xs);
    font-weight: 700;
    box-shadow: var(--shadow);
}

.feature-list {
    text-align: left;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1rem;
}

.card-header h3 {
    margin-bottom: 0.5rem;
}

.card-header .price {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}


