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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: #6b7280;
    border: 1px solid transparent;
}

.btn-ghost:hover {
    background: #f3f4f6;
    color: #374151;
}

.btn-orange {
    background: #ea580c;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.btn-orange:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px -3px rgba(234, 88, 12, 0.4);
}

.btn-hero {
    background: #ea580c;
    color: white;
    font-size: 18px;
    padding: 16px 32px;
    font-weight: 600;
    box-shadow: 0 8px 20px -4px rgba(234, 88, 12, 0.4);
}

.btn-hero:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(234, 88, 12, 0.5);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    padding: 16px 32px;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #ea580c;
    color: #ea580c;
}

.btn-outline-lg {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline-sm {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    font-size: 12px;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: #1e3a8a;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    width: 256px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu {
    padding: 16px;
}

.dropdown-item {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: #1e3a8a;
}

.coupon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    background: white;
    padding: 16px 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-item {
    display: block;
    color: #374151;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover {
    color: #1e3a8a;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-circle-1 {
    width: 128px;
    height: 128px;
    top: 80px;
    right: 80px;
}

.hero-circle-2 {
    width: 96px;
    height: 96px;
    bottom: 128px;
    left: 64px;
}

.hero-circle-3 {
    width: 64px;
    height: 64px;
    top: 50%;
    right: 25%;
}

.hero-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.hero-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-highlight {
    color: #ea580c;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Top Hosts Section */
.top-three-hosts {
	margin-top: 70px;
}

.top-three-hosts .container {
	display: flex;
	justify-content: space-between;
}

.top-host-card {
	position: relative;
	background: white;
	color: black;
	border-radius: 10px;
	margin: 0 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.top-host-card-meta {
	height: 75px;
	position: relative;
}

.top-host-card-place {
	padding: 5px;
	text-align: center;
	width: 70px;
	position: absolute;
	top: -16px;
	left: 10px;
}

.top-host-card-place svg {
	border: 5px solid white;
	border-radius: 50%;
}

.top-host-card .expert-badge {
	position: absolute;
	top: 10px;
	right: 10px;
}

.top-host-card-logo {
	display: flex;
	justify-content: center;
}

.top-host-card-content {
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-host-card-content p {
	font-size: 0.9rem;
	margin-top: 10px;
}

/* Featured Hosts Section */
.featured-hosts {
    padding: 80px 0;
    background: #f9fafb;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.hosts-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.host-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
}

.host-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.host-content {
    padding: 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
}

.host-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.host-rank {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #6b7280;
}

.host-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.host-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.host-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.host-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #d1d5db;
    font-size: 16px;
}

.star-filled {
    color: #fbbf24;
}

.rating-value {
    font-weight: 700;
    font-size: 18px;
    color: #1f2937;
}

.expert-badge, .best-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.expert-badge {
    background: #10b981;
}

.best-badge {
    background: #ea580c;
}

.host-features {
    flex: 1;
}

.highlight-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 8px;
    color: #ea580c;
    font-weight: 500;
    margin-bottom: 16px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #374151;
}

.feature svg {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.reviews-count {
    font-size: 14px;
    color: #6b7280;
}

.host-pricing {
    text-align: center;
}

.price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
}

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

.price-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.host-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.coupon-count {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Hosting Categories */
.hosting-categories {
    padding: 80px 0;
    background: white;
}

.advanced-filters {
    margin-top: 32px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.category-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.category-card:hover {
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: rgba(234, 88, 12, 0.1);
    color: #ea580c;
}

.category-name {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #ea580c;
}

.category-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.help-text {
    color: #6b7280;
    margin-bottom: 24px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.stat-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.stat-icon-blue {
    background: white;
    color: #3b82f6;
}

.stat-icon-yellow {
    background: white;
    color: #fbbf24;
}

.stat-icon-purple {
    background: white;
    color: #8b5cf6;
}

.stat-icon-green {
    background: white;
    color: #10b981;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
}

.testimonials {
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.6s ease-out;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-content {
    font-style: italic;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

.author-name {
    font-weight: 600;
    color: #1e3a8a;
}

.author-role {
    font-size: 14px;
    color: #6b7280;
}

.benefits {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.benefits-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    animation: fadeInUp 0.6s ease-out;
}

.benefit-item svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 48px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: #ea580c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ea580c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px 0;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ea580c;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .host-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .host-info {
        flex-wrap: wrap;
    }
    
    .host-pricing {
        text-align: left;
    }
	
	.top-three-hosts {
		display: none;
	}
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .featured-hosts {
        padding: 60px 0;
    }
    
    .hosting-categories {
        padding: 60px 0;
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn-hero, .btn-hero-outline {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .host-card {
        margin: 0 -16px;
        border-radius: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}