* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0d0d0d;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #262626;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #ff7722;
    --accent-light: #ffaa44;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 119, 34, 0.3);
    padding: 1.5rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    animation: slideUp 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.cookie-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.cookie-links a {
    font-size: 0.85rem;
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: #000;
}

.cookie-btn.accept:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 119, 34, 0.3);
}

.cookie-btn.reject:hover {
    border-color: rgba(255, 119, 34, 0.8);
    color: var(--accent-light);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 119, 34, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(255, 119, 34, 0.3);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.logo:hover {
    transform: scale(1.1);
    border-color: rgba(255, 119, 34, 0.8);
    box-shadow: 0 5px 15px rgba(255, 119, 34, 0.3);
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 119, 34, 0.4);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(255, 119, 34, 0.15);
}

.lang-btn.active {
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent);
    text-decoration: none;
}

.contact-link {
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 120px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.25);
}

.contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 119, 34, 0.35);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 119, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 450px;
    height: 450px;
    margin: 0 auto 2rem;
    mix-blend-mode: screen;
    animation: float 3s ease-in-out infinite, glow 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 20px 40px rgba(255, 119, 34, 0.2));
    }
    50% {
        filter: drop-shadow(0 30px 60px rgba(255, 119, 34, 0.4));
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(255, 119, 34, 0.2));
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 119, 34, 0.2));
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-weight: 300;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(255, 119, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 200px;
    height: 200px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 119, 34, 0.4);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, rgba(38, 38, 38, 0.5) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 119, 34, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(255, 119, 34, 0.25);
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 119, 34, 0.1) 0%, rgba(38, 38, 38, 0.8) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    mix-blend-mode: screen;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background-color: var(--secondary-bg);
    animation: slideInUp 0.8s ease 0.2s both;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.projects-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.project-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(38, 38, 38, 0.3) 100%);
    border: 1px solid rgba(255, 119, 34, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.project-slide {
    display: none;
    opacity: 0;
    animation: fadeInSlide 0.5s ease;
}

.project-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    opacity: 1;
    animation: fadeInSlide 0.6s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-image {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
}

.project-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-type {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 119, 34, 0.8);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 119, 34, 0.2);
}

.carousel-btn:hover {
    background: rgba(255, 119, 34, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(255, 119, 34, 0.35);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 119, 34, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 119, 34, 0.2);
}

.dot:hover {
    background: rgba(255, 119, 34, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    width: 30px;
    border-radius: 5px;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(255, 119, 34, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease 0.4s both;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background-color: rgba(26, 26, 26, 0.6);
    border: 2px solid rgba(255, 119, 34, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(176, 176, 176, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 119, 34, 0.15), inset 0 0 0 1px rgba(255, 119, 34, 0.1);
    background-color: rgba(26, 26, 26, 0.8);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff3333;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #00d084;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    cursor: pointer;
    border: 2.5px solid rgba(255, 119, 34, 0.4);
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: rgba(255, 119, 34, 0.8);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 119, 34, 0.3);
}

.checkbox-group input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 119, 34, 0.5);
}

.checkbox-group input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 119, 34, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-group label {
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    user-select: none;
}

.checkbox-group input[type="checkbox"]:checked + label {
    color: var(--accent-light);
}

.checkbox-group label:hover {
    color: var(--accent-light);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 119, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 119, 34, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(255, 119, 34, 0.1);
}

.form-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    min-height: 20px;
    animation: slideInUp 0.4s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 119, 34, 0.1);
    border-left: 3px solid var(--accent);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(38, 38, 38, 0.5) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 119, 34, 0.2);
    backdrop-filter: blur(10px);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff7722, #ffaa44);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger-btn span {
    width: 25px;
    height: 2.5px;
    background-color: var(--accent);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(255, 119, 34, 0.2);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(13, 13, 13, 0.98);
        gap: 1rem;
        padding: 2rem 1rem 2rem 2rem;
        align-items: center;
        border-bottom: 1px solid rgba(255, 119, 34, 0.2);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        visibility: visible;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-logo {
        width: 300px;
        height: 300px;
    }

    .services h2,
    .projects h2,
    .contact h2 {
        font-size: 1.75rem;
    }

    .project-slide.active {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .language-selector {
        border-left: none;
        padding-left: 0;
    }

    .carousel-btn {
        padding: 0.75rem;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 0.5rem;
    }

    .carousel-btn.next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        top: 60px;
    }

    .hero {
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .services,
    .projects,
    .contact {
        padding: 3rem 1rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}
