 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f172a;  
}

 
.navbar-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 2px solid #334155;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

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

 
.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;  
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-logo a:hover {
    color: #fbbf24;
}

 
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #f59e0b;
}

 
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f59e0b;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

 
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

 
.phone-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid #475569;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

 
.book-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.book-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
    transform: translateY(-2px);
}

 
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

 
@media (max-width: 1024px) {
    .nav-menu-wrapper {
        gap: 20px;
    }
    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    
    .nav-menu-wrapper {
        position: absolute;
        top: 74px;  
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: #1e293b;
        flex-direction: column;
        justify-content: flex-start;
        gap: 40px;
        padding: 5px 0 0 0;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    }

    .nav-menu-wrapper.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links a::after {
        display: none;  
    }

    .nav-cta-group {
        flex-direction: column;
        width: 80%;
        gap: 15px;
        margin-top: 20px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
    }

     
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #f59e0b;
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #f59e0b;
    }
}


.nav-menu-wrapper.active {
    left: 0;  
}



 
.hero-banner {
    position: relative;
    min-height: 85vh;
    background: url('images/banner.webp') no-repeat center center/cover;  
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

 
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 30%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.banner-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.banner-content {
    max-width: 750px;
}

 
.banner-content .badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

 
.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

 
.banner-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 35px;
}

 
.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #475569;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

 
.banner-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 500px;
}

.stat-item h3 {
    font-size: 28px;
    color: #f59e0b;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 2px;
}

 
@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 80px 0 60px 0;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .banner-stats {
        gap: 20px;
        justify-content: space-between;
    }

    .stat-item h3 {
        font-size: 22px;
    }
}





.search-filter-section {
    background: #0f172a; 
    padding: 60px 0;
    position: relative;
}

.filter-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    border: 1px solid rgba(245, 158, 11, 0.2); 
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
}


.filter-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.filter-subtitle {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 30px;
}


.search-box-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.input-icon-group {
    position: relative;
    flex: 1;
    width: 100%;
}


.map-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b; 
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.arrow-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}


.custom-select {
    width: 100%;
    padding: 16px 50px;
    background: #0f172a;
    border: 2px solid #334155;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}


.custom-select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
    color: #ffffff;
}


.filter-search-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.filter-search-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}


@media (max-width: 768px) {
    .filter-container {
        padding: 30px 20px;
    }

    .filter-header h2 {
        font-size: 24px;
    }

    .filter-subtitle {
        font-size: 14px;
    }

    .search-box-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .input-icon-group {
        width: 100%;
    }

    .filter-search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
    }
}


.screenshot-seo-section {
    background-color: #f8fafc;
    padding: 70px 0;
}

.screenshot-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.screenshot-heading {
    text-align: center;
    margin-bottom: 40px;
}

.screenshot-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.3;
}

.screenshot-body-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.screenshot-body-text p {
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .screenshot-seo-section {
        padding: 40px 0;
    }
    
    .screenshot-heading h2 {
        font-size: 24px;
    }
    
    .screenshot-body-text p {
        font-size: 15px;
        line-height: 1.6;
    }
}



.premium-profile-section {
    background-color: #0f172a;
    padding: 80px 0;
}

.profile-grid-container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

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

.profile-section-header h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
}

.profile-section-header p {
    font-size: 16px;
    color: #94a3b8;
}

.profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.profile-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: #f59e0b;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
}

.profile-image-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.profile-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.profile-details {
    padding: 24px;
}

.profile-details h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.profile-rating .stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
}

.profile-rating .reviews-count {
    color: #94a3b8;
    font-size: 13px;
}

.profile-info-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 42px;
}

.profile-action-buttons {
    display: flex;
    gap: 12px;
}

.btn-action {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #22c55e;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background-color: #16a34a;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.call-btn {
    background-color: #1e3a8a;
    color: #ffffff;
    border: 1px solid #3b82f6;
}

.call-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

@media (max-width: 1200px) {
    .profile-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .profile-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .profile-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .profile-section-header h2 {
        font-size: 26px;
    }
    .profile-section-header p {
        font-size: 14px;
    }
    .profile-image-box {
        height: 350px;
    }
}



.premium-services-list-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.services-list-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.row-reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    width: 35%;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-info {
    width: 65%;
    padding:0px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-info h3 {
    font-size: 24px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-info h4 {
    font-size: 20px;
    color:#993333;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}



.service-card-info p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}

.service-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    cursor: default;
}

.tag-badge:hover {
    transform: scale(1.05);
}

.badge-blue { background-color: #3b82f6; }
.badge-green { background-color: #22c55e; }
.badge-red { background-color: #ef4444; }
.badge-yellow { background-color: #eab308; color: #1e293b; }
.badge-teal { background-color: #06b6d4; }
.badge-dark { background-color: #1e293b; }

@media (max-width: 992px) {
    .service-row-card, .row-reverse {
        flex-direction: column;
    }
    
    .service-card-image {
        width: 100%;
        height: 300px;
    }
    
    .service-card-info {
        width: 100%;
        padding: 30px 20px;
    }
    
    .service-card-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .premium-services-list-section {
        padding: 40px 0;
    }
    
    .service-card-image {
        height: 250px;
    }
    
    .service-card-info p {
        font-size: 14px;
        text-align: left;
    }
    
    .tag-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
	
	
	.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
}




.premium-pricing-section {
    background-color: #0f172a;
    padding: 90px 0;
    position: relative;
}

.pricing-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 55px;
}

.pricing-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-header h2 {
        font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pricing-header p {
       font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.table-responsive-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-responsive-wrapper::-webkit-scrollbar-thumb {
    background-color: #334155;
    border-radius: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    text-align: left;
    min-width: 750px;
}

.pricing-table th {
    background: transparent;
    color: #f59e0b;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #334155;
}

.pricing-table th i {
    margin-right: 6px;
    font-size: 14px;
}

.pricing-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.pricing-table tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.pricing-table tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pricing-table td {
    padding: 18px 24px;
    font-size: 15px;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-name {
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.price-cell {
    font-weight: 500;
    color: #94a3b8;
}

.price-cell-vip {
    font-weight: 600;
    color: #f43f5e;
}

.highlighted-price {
    color: #22c55e;
    font-weight: 700;
}

.vip-glow {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

@media (max-width: 768px) {
    .premium-pricing-section {
        padding: 60px 0;
    }

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

    .pricing-header p {
        font-size: 14px;
    }

    .pricing-table th, .pricing-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
}



.premium-tags-cloud-section {
    background-color:#192541;
    padding: 80px 0;
    position: relative;
}

.tags-cloud-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.tags-cloud-header {
    text-align: center;
    margin-bottom: 50px;
}

.cloud-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tags-cloud-header h2 {
     font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.tags-cloud-header p {
   font-size: 16px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.tags-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cloud-tag {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 1px solid transparent;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}
.tag-blue:hover {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
}

.tag-green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}
.tag-green:hover {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transform: translateY(-3px);
}

.tag-red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}
.tag-red:hover {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    transform: translateY(-3px);
}

.tag-yellow {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.2);
    color: #facc15;
}
.tag-yellow:hover {
    background: #eab308;
    color: #1e293b;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.5);
    transform: translateY(-3px);
}

.tag-teal {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}
.tag-teal:hover {
    background: #06b6d4;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
    transform: translateY(-3px);
}

.tag-dark {
    background: rgba(71, 85, 105, 0.2);
    border-color: rgba(71, 85, 105, 0.3);
    color: #cbd5e1;
}
.tag-dark:hover {
    background: #475569;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(71, 85, 105, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .premium-tags-cloud-section {
        padding: 60px 0;
    }

    .tags-cloud-header h2 {
        font-size: 26px;
    }

    .tags-cloud-header p {
        font-size: 14px;
    }

    .tags-flex-wrapper {
        padding: 25px 15px;
        gap: 10px;
    }

    .cloud-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
}



.premium-seo-article-section {
    background-color: #0f172a;
    padding: 80px 0;
}

.article-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.article-card {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.article-card h2:nth-of-type(2) {
    margin-top: 30px;
}

.article-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-body p {
    font-size: 15.5px;
    color: #94a3b8;
    line-height: 1.8;
    text-align: justify;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
    padding-left: 15px;
    border-left: 3px solid #f59e0b;
}

.bullet-item {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

.bullet-item strong {
    color: #f59e0b;
    font-weight: 600;
    display: inline-block;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .premium-seo-article-section {
        padding: 50px 0;
    }

    .article-card {
        padding: 25px 20px;
    }

    .article-card h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .article-body p {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .bullet-item {
        font-size: 14px;
        line-height: 1.6;
    }
}



.premium-directory-section {
    background-color: #0f172a;
    padding: 80px 0;
    position: relative;
}

.directory-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.directory-header {
    text-align: center;
    margin-bottom: 50px;
}

.directory-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.directory-header h2 {
   font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.directory-header p {
   font-size: 16px;
    color: #94a3b8;
}

.directory-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.directory-item {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.directory-item:hover {
    border-color: #f59e0b;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.1);
}

.directory-icon {
    color: #f59e0b;
    font-size: 18px;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.directory-item:hover .directory-icon {
    transform: rotate(45deg);
}

.directory-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.directory-text strong {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.directory-item:hover .directory-text strong {
    color: #f59e0b;
}

.directory-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .premium-directory-section {
        padding: 60px 0;
    }

    .directory-header h2 {
        font-size: 26px;
    }

    .directory-header p {
        font-size: 14px;
    }

    .directory-item {
        padding: 18px 20px;
        gap: 15px;
    }

    .directory-text strong {
        font-size: 15px;
    }

    .directory-text p {
        font-size: 13.5px;
    }
}



.premium-footer {
    background-color: #090d16;
    border-top: 1px solid #1e293b;
    padding: 70px 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 35px;
    height: 2px;
    background-color: #f59e0b;
}

.footer-column p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f59e0b;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: #f59e0b;
    font-size: 14px;
    margin-top: 4px;
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13.5px;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 50px 0 20px 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

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

    .footer-column p {
        text-align: left;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}
