/* ========== Root Colors & Fonts ========== */
:root {
    --primary-color: #4988C4;
    --secondary-color: #1C4D8D;
    --accent-color: #0F2854;
    --dark-bg: #0F2854;
    --darker-bg: #0A1A39;
    --light-text: #BDE8F5;
    --gray-text: #7DB4D9;
    --gray-light: #5B9FCC;
    --border-color: #1C4D8D;
    --success-color: #4988C4;
    --danger-color: #BDE8F5;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0F2854;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== Container & Grid ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 42, 84, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #BDE8F5;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link:active {
    color: #4988C4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4988C4;
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

/* ========== Hamburger Menu ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #BDE8F5;
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== Hero Section ========== */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: #0F2854;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(73, 136, 196, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(28, 77, 141, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.profile-container {
    animation: slideUp 0.8s ease;
}

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

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #4988C4;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(73, 136, 196, 0.3);
    transition: transform var(--transition-base);
}

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

.status-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #4988C4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #BDE8F5;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4988C4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #4988C4;
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

.btn-link {
    padding: 8px 16px;
    background: #4988C4;
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-link:hover {
    background: #1C4D8D;
}

/* ========== Section Styling ========== */
section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #4988C4;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========== Expertise Section ========== */
.expertise {
    background: #0A1A39;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background: rgba(28, 77, 141, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: #4988C4;
    box-shadow: 0 20px 40px rgba(73, 136, 196, 0.2);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: #4988C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ========== Videos Section ========== */
.videos {
    background: #0F2854;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: rgba(28, 77, 141, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(73, 136, 196, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-thumbnail i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.video-card:hover .video-thumbnail i {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 2.4em;
    overflow: hidden;
    display: none;
}

.video-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.video-duration {
    background: rgba(73, 136, 196, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.btn-watch {
    display: inline-block;
    padding: 8px 16px;
    background: #4988C4;
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.btn-watch:hover {
    background: #1C4D8D;
    transform: translateX(5px);
}

/* ========== Resources Section ========== */
.resources {
    background: #0A1A39;
}

.resources-wrapper {
    display: grid;
    gap: 3rem;
}

.social-section,
.links-section,
.newsletter-section {
    background: rgba(28, 77, 141, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.social-section h3,
.links-section h3,
.newsletter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(73, 136, 196, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #4988C4;
    background: rgba(73, 136, 196, 0.2);
}

.social-link i {
    font-size: 1.8rem;
}

.social-link.youtube:hover {
    color: #4988C4;
}

.social-link.twitter:hover {
    color: #4988C4;
}

.social-link.telegram:hover {
    color: #4988C4;
}

.social-link.instagram:hover {
    color: #4988C4;
}

.social-link.linkedin:hover {
    color: #4988C4;
}

.social-link.discord:hover {
    color: #4988C4;
}

/* ========== Links Grid ========== */
.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(28, 77, 141, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    color: white;
    cursor: pointer;
}

.link-button:hover {
    transform: translateX(10px);
    border-color: #4988C4;
    box-shadow: 0 15px 30px rgba(73, 136, 196, 0.2);
    background: rgba(28, 77, 141, 0.5);
}

.link-button-icon {
    width: 60px;
    height: 60px;
    background: #4988C4;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white !important;
    flex-shrink: 0;
}

.link-button-icon i {
    color: white !important;
}

.link-button-content {
    flex: 1;
    text-align: left;
}

.link-button-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #BDE8F5;
}

.link-button-content p {
    color: #7DB4D9;
    font-size: 0.9rem;
    margin: 0;
}

.link-button i:last-child {
    color: #4988C4;
    font-size: 1.2rem;
    transition: transform var(--transition-base);
}

.link-button:hover i:last-child {
    transform: translateX(5px);
}

/* ========== Old link-card styles (kept for compatibility) ==========
.link-card {
    background: rgba(73, 136, 196, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: #4988C4;
    box-shadow: 0 15px 30px rgba(73, 136, 196, 0.2);
}

.link-icon {
    width: 50px;
    height: 50px;
    background: #4988C4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.link-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ========== Newsletter ========== */
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    padding: 12px 16px;
    background: rgba(15, 42, 84, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--gray-text);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #4988C4;
    box-shadow: 0 0 0 3px rgba(73, 136, 196, 0.2);
}

.newsletter-form button {
    padding: 12px 24px;
}

/* ========== Contact Form ========== */
.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 12px 16px;
    background: rgba(15, 42, 84, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4988C4;
    box-shadow: 0 0 0 3px rgba(73, 136, 196, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-bg);
    color: white;
}

/* ========== Stats Section ========== */
.stats {
    background: #0A1A39;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4988C4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-text);
    font-size: 1rem;
}

/* ========== Contact Section ========== */
.contact {
    background: #0A1A39;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4988C4;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.contact-item a {
    color: #4988C4;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: #1C4D8D;
}

/* ========== Footer ========== */
.footer {
    background: #0F2854;
    border-top: 1px solid var(--border-color);
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-section p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: #4988C4;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(73, 136, 196, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.footer-socials a:hover {
    background: #4988C4;
    border-color: #4988C4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(15, 42, 84, 0.95);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(73, 136, 196, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .profile-image {
        width: 150px;
        height: 150px;
    }

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

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

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .link-button {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .link-button-icon {
        margin: 0 auto;
    }

    .link-button-content {
        text-align: center;
    }

    .link-button i:last-child {
        display: none;
    }

    section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .status-badge {
        bottom: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

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

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

    .contact-form {
        gap: 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    section {
        padding: 40px 15px;
    }
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise-card,
.video-card,
.link-card {
    animation: slideInUp 0.6s ease backwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }

/* ========== Scrollbar Styling ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: #4988C4;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1C4D8D;
}
/* ========== Fiverr Promotion Section ========== */
.fiverr-promo-section {
    background: linear-gradient(135deg, #1C4D8D 0%, #4988C4 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.fiverr-promo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.fiverr-promo-container {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fiverr-promo-content {
    padding: 0;
}

.fiverr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fiverr-promo-section h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.fiverr-subtitle {
    font-size: 1.1rem;
    color: #BDE8F5;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.fiverr-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.fiverr-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.fiverr-features i {
    color: #BDE8F5;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fiverr-description {
    color: white;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-right: 4px solid #BDE8F5;
}

.fiverr-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.fiverr-promo-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #4988C4;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fiverr-promo-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #BDE8F5;
}

.fiverr-contact {
    color: #BDE8F5;
    font-size: 0.85rem;
    font-style: italic;
}

.fiverr-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fiverr-icon-box {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #BDE8F5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fiverr-promo-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fiverr-image {
        display: none;
    }

    .fiverr-promo-section h3 {
        font-size: 1.5rem;
    }

    .fiverr-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .fiverr-cta {
        align-items: center;
    }

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