* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    box-shadow: var(--shadow);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--highlight-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3.5px;
    background: white;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background: var(--highlight-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--highlight-color);
}

/* Language Toggle Button */
.lang-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-toggle:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.lang-toggle i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(233, 69, 96, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(233, 69, 96, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    touch-action: manipulation;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-appearance: none;
}

.btn-primary {
    background: var(--highlight-color);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
    background: #d63a52;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    animation: fadeIn 0.8s ease-out;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--highlight-color);
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About Section */
.about {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: 50%;
    top: -50px;
    left: -100px;
    animation: float 7s ease-in-out infinite;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.about-image {
    animation: slideInLeft 0.8s ease-out;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--highlight-color);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(233, 69, 96, 0.3);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.info-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.info-list li {
    color: var(--text-light);
}

.info-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-list a:hover {
    text-decoration: underline;
}

/* Education Section */
.education {
    background: white;
}

.education-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.education-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.education-card .location {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.education-card .date {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications {
    background: var(--light-bg);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: scaleIn 0.6s ease-out;
    border-left: 4px solid var(--highlight-color);
    position: relative;
    overflow: hidden;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.3), transparent);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.cert-item:hover::before {
    top: 20%;
    right: 20%;
}

.cert-item:hover {
    transform: translateY(-14px) scale(1.05);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.25);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.08), rgba(99, 102, 241, 0.08));
}

.cert-item i {
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    display: block;
}

.cert-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Skills Section */
.skills {
    background: white;
    position: relative;
    overflow: hidden;
}

.skills::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(233, 69, 96, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}

.skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    border: 2px solid var(--highlight-color);
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--highlight-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.tag:hover::before {
    left: 0;
}

.tag:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
    color: white;
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaef 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: 50%;
    top: 50px;
    right: -80px;
    animation: float 9s ease-in-out infinite;
    z-index: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    touch-action: manipulation;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.project-card:hover,
.project-card:active {
    transform: translateY(-18px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(233, 69, 96, 0.2);
}

.project-card:hover .project-hint,
.project-card:active .project-hint {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.project-card:hover .project-image::after {
    left: 100%;
}

.project-card:hover .project-image {
    transform: scale(1.12) rotateZ(3deg);
}

.project-card h3 {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0;
    color: var(--text-dark);
}

.project-card p {
    padding: 1rem 1.5rem;
    color: var(--text-light);
}

.project-tags {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-hint {
    margin-top: auto;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    font-weight: 600;
    border-top: 2px solid rgba(233, 69, 96, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

/* Mobile Project Display Button */
.shfaq-projekt-btn-mobile {
    display: none;
}

/* Contact Section */
.contact {
    background: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(233, 69, 96, 0.07);
    border-radius: 50%;
    bottom: -80px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.contact-item i {
    font-size: 2rem;
    color: var(--highlight-color);
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: grid;
    gap: 1rem;
    animation: fadeInRight 0.8s ease-out;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    touch-action: manipulation;
    -webkit-appearance: none;
    -webkit-border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--highlight-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    flex: 1;
    min-width: 250px;
}

.footer-text p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-subtitle {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .projects-grid,
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
    }

    .about-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        animation: slideDown 0.3s ease-out;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        color: white;
        font-weight: 600;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        border-left: 4px solid transparent;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        border-left-color: var(--highlight-color);
        padding-left: 2rem;
    }

    .lang-toggle {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 998;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(233, 69, 96, 0.3);
        background: var(--highlight-color);
        color: white;
        border: none;
        transition: all 0.3s ease;
    }

    .lang-toggle:hover {
        background: #d63a52;
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
    }

    .lang-toggle:active {
        transform: scale(0.95);
    }

    .lang-toggle .lang-text {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 80vh;
    }

    .hero::before {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }

    .hero::after {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }

    .about::before {
        width: 150px;
        height: 150px;
        top: -30px;
        left: -50px;
    }

    .skills::after {
        width: 180px;
        height: 180px;
        bottom: -60px;
        right: -50px;
    }

    .projects::before {
        width: 140px;
        height: 140px;
        top: 30px;
        right: -50px;
    }

    .contact::before {
        width: 160px;
        height: 160px;
        bottom: -50px;
        left: -60px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .shfaq-projekt-btn-mobile {
        display: block;
        width: 100%;
        padding: 0.9rem 1.5rem;
        background: var(--highlight-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        margin-top: 1rem;
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-appearance: none;
        appearance: none;
    }

    .shfaq-projekt-btn-mobile:hover,
    .shfaq-projekt-btn-mobile:active {
        background: #d63a52;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
    }

    .shfaq-projekt-btn-mobile:active {
        transform: translateY(0);
    }

    .section {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .projects-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-category h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .education-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-text {
        order: 2;
    }

    .footer-social {
        order: 1;
        width: 100%;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    /* .navbar-container {
        gap: 1rem;
    } */

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -12px;
    }

    .container {
        padding: 0 1rem;
    }

    .about-image {
        width: 180px;
        height: 180px;
    }

    .about-text h3 {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .info-list li {
        font-size: 0.9rem;
    }

    .cert-item {
        padding: 1rem;
    }

    .cert-item i {
        font-size: 1.8rem;
    }

    .cert-item p {
        font-size: 0.85rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
        margin: 0.3rem;
    }

    .project-card {
        padding: 1rem;
    }

    .project-image {
        height: 150px;
        font-size: 2.5rem;
    }

    .project-card h3 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0;
    }

    .project-card p {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-item i {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .btn-submit {
        padding: 0.8rem 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-text p {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .about-image {
        width: 150px;
        height: 150px;
    }

    .contact-content {
        gap: 1rem;
    }

    .contact-form {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .footer-text p {
        font-size: 0.8rem;
    }
}
