/* 
   Jamihost "Light Tech" Styles 
   Font: Plus Jakarta Sans
*/

:root {
    --primary-color: #2563eb;
    /* Electric Blue */
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    /* Slate 900 */
    --accent-color: #3b82f6;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    /* Slate 50 */
    --text-main: #334155;
    /* Slate 700 */
    --text-dark: #0f172a;
    --border-color: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--bg-gray);
    color: var(--primary-dark);
}

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

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

.full-width {
    width: 100%;
    display: block;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i,
.client-area i {
    margin-right: 5px;
}

.client-area a:hover {
    color: white;
}

/* Navbar */
.navbar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-tech {
    display: inline-block;
    background: #dbeafe;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-indicators i {
    color: var(--success);
}

.floating-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Domain Search */
.domain-search {
    padding: 80px 0;
    background: #ffffff;
}

.search-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-box h2 {
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.search-box p {
    color: #64748b;
    margin-bottom: 40px;
}

.domain-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    box-shadow: var(--shadow-lg);
    border-radius: 50px;
    padding: 8px;
    background: white;
    border: 1px solid var(--border-color);
}

.input-group input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    outline: none;
    border-radius: 50px 0 0 50px;
}

.input-group select {
    border: none;
    border-left: 1px solid var(--border-color);
    padding: 0 20px;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.input-group .btn {
    border-radius: 40px;
    padding: 12px 40px;
}

.domain-result {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.domain-result.available {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.domain-result.taken {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.tlds-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tld-item {
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-width: 100px;
    transition: var(--transition);
}

.tld-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tld-item .ext {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.tld-item .price {
    font-size: 0.9rem;
    color: #64748b;
}

.tld-item.is-featured {
    background: #eff6ff;
    border-color: #bfdbfe;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: start;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

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

.plan-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.price-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--secondary-color);
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 2px;
}

.price-box .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-box .period {
    color: #94a3b8;
    font-size: 1rem;
    margin-left: 5px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features li i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 5px;
}

/* Services */
.services-section {
    padding: 100px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.service-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: #0f172a;
    color: white;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-form-col {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    color: var(--text-main);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: white;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    font-size: 2rem;
    display: flex;
    gap: 15px;
    color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--secondary-color);
}

.close-modal {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-body {
    padding: 30px;
}

.btn-paypal {
    background-color: #0070ba;
    color: white;
    font-weight: 700;
}

.btn-paypal:hover {
    background-color: #005ea6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

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

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

.whatsapp-float i {
    margin-top: 2px;
}