:root {
    --primary-color: #60a5fa;
    --secondary-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --transition: all 0.3s ease;
}

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

body {
    background-color: #ffffff;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 80px; /* Add padding to account for fixed navbar */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Removed overlay for full video visibility */
}

.hero-content {
    text-align: center;
    z-index: 2;
    width: 100%;
    padding-bottom: 8vh;
    position: relative;
    background: none;
    padding-top: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    padding: 2rem 0;
    background: none;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-buttons .btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure content is visible on mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
    
    #hero-video {
        width: auto;
        height: 100%;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 4px;
    position: absolute;
    transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(0);
    opacity: 0;
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-90deg);
}

@media (max-width: 768px) {
    .nav-content {
        flex-wrap: nowrap;
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-right {
        order: 2;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 8px;
    }
    
    .logo {
        order: 0;
        margin-right: auto;
        padding-left: 0;
    }
    
    .hamburger {
        display: flex;
        order: 2;
        z-index: 1001;
        padding: 8px;
        margin: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }
    
    .hamburger:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .language-switch {
        order: 1;
        margin: 0;
    }
    
    .language-switch button {
        background: transparent;
        border: none;
        padding: 6px 10px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        font-size: 0.9rem;
    }
    
    .language-switch button:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        margin: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links > li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
        margin: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.5rem 1rem;
        transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
        color: var(--primary-color);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        height: 100%;
    }
}

/* Navigációs sáv */
.logo-image {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    margin-right: auto;
    padding-left: 1rem;
    z-index: 1001;
}

.logo-link {
    text-decoration: none;
    color: #60a5fa;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #4395ff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    padding-right: 1rem;
    transition: transform 0.3s ease-in-out;
}

/* Language Toggle */
.language-switch {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}

#languageToggle {
    background: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
}

#languageToggle:hover {
    border-color: var(--primary-color);
}

#languageToggle span {
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#languageToggle .lang-hu {
    background: var(--primary-color);
    color: white;
}

#languageToggle .lang-en {
    color: #666;
}

/* Hide English by default */
#languageToggle[data-lang="en"] .lang-hu {
    background: transparent;
    color: #666;
}

#languageToggle[data-lang="en"] .lang-en {
    background: var(--primary-color);
    color: white;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    padding-right: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 0 0 12px 12px;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

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

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.2rem;
    }

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

/* Desktop Styles */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex !important;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: none;
        animation: none;
    }

    .nav-links li {
        width: auto;
    }

    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

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

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

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

/* Kezdőlap szekció */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 8vh;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.typing-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1.1rem;
    margin: 0 0.5rem;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.btn.primary:hover {
    background-color: #4395ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.secondary:hover {
    background-color: #e6f0ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Árak szekció */
.pricing-section {
    padding: 7rem 1rem 5rem;
    background-color: #f9fafb;
    text-align: center;
}

.pricing-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 0rem;
    margin-top: 0px;
}

.pricing-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Removed the blue line from pricing section */

.pricing-teaser {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-highlight {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.pricing-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-highlight.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
    position: relative;
    overflow: visible;
}

.pricing-highlight i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(96, 165, 250, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
}

.pricing-highlight.featured i {
    background: rgba(96, 165, 250, 0.2);
}

.pricing-highlight h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-highlight p {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-cta {
    margin-top: 4rem;
}

.pricing-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    display: inline-block;
    text-decoration: none;
}

.pricing-cta .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.pricing-note {
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* Extra Services Section */
.extra-services {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.extra-services h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.extra-services h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-name {
    font-weight: 500;
    color: #1e293b;
    text-align: left;
    flex: 1;
}

.service-price {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 1.25rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }
    
    .pricing-highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-highlight.featured {
        transform: none;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Additional styles for the pricing section */
.pricing-section .btn.primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-section .btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(59, 130, 246, 0.4);
}

.pricing-highlight {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-highlight:hover::after {
    transform: scaleX(1);
}

.pricing-highlight.featured {
    border-top: 5px solid var(--primary-color);
    transform: translateY(-10px);
}

.pricing-highlight.featured::after {
    display: none;
}

/* Animation for the featured badge */
@keyframes pulse {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.05); }
    100% { transform: rotate(45deg) scale(1); }
}

.pricing-highlight.featured::before {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-highlights {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 4rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-highlight {
        padding: 2rem 1.5rem;
    }
}

.section-subtitle {
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex: 1 1 300px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.popular-tag {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.price-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #4b5563;
}

.features i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.features .not-included {
    color: #9ca3af;
}

.features .not-included i {
    color: #e5e7eb;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.custom-solution {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.custom-solution h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.custom-solution p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: none;
    }
}

/* Contact Form */
.contact {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #6b7280;
    background: white;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
    transform-origin: left center;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Label animation when input is focused or has content */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.75rem) scale(0.9);
    color: var(--primary-color);
    background: white;
    padding: 0 0.5rem;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.contact-form-container textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-container button[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-info p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.contact-info li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
}

.contact-info li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Rólam szekció */
.about {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-text li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-size: 1.2rem;
}

.about-text li b {
    color: var(--text-color);
    font-weight: 600;
}

/* Why Choose Me Section */
.why-choose-me {
    padding: 5rem 2rem;
    background-color: #f8fafc;
    text-align: center;
}

.why-choose-me h2 {
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.why-choose-me h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

/* Projects Section */
.projects {
    padding: 5rem 2rem;
}

.projects h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.projects-description {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.project-content {
    padding: 2rem;
}

.project-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.project-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.project-tags {
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #f3f4f6;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6b7280;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-links .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Kapcsolat szekció */
.contact {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Form group styling */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Label styling - hidden but accessible for screen readers */
#contact-form label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Input and textarea base styles */
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Textarea specific styles */
#contact-form textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

/* Placeholder styles */
#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* Focus states */
#contact-form input:focus,
#contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Focus placeholder color */
#contact-form input:focus::placeholder,
#contact-form textarea:focus::placeholder {
    color: #9ca3af;
    opacity: 0.7;
}

#contact-form .btn.primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contact-form .btn.primary:hover {
    background-color: #1d4ed8;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    margin: 1.5rem 0;
    padding-left: 0; /* Remove default padding */
    list-style: none; /* Remove default bullets */
}

.contact-info li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.contact-info li:before {
    content: "•";
    color: #4b5563; /* Changed to match text color */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.75rem 0;
    color: #4b5563;
}

.contact-details i {
    color: var(--primary-color);
    width: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
    }
}

/* Lábléc */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    color: #6b7280;
}

/* Animációk */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responszív tervezés */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .contact-content {
        padding: 0 1rem;
    }
}
