/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-blue {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Navigation */
/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

/* LOGO desktop - lijevo */
.logo-wrapper {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-wrapper img {
    max-height: 100px;
    height: auto;
    display: block;
}

/* Meni desno */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hamburger skriven po defaultu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    height: 20px;
    width: 25px;
    cursor: pointer;
    z-index: 15;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s ease;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}
.nav-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

  

.nav-cta {
    background-color: #2563eb;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}
/* RESPONSIVE (mobilni prikaz) */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        position: relative; /* dodano za apsolutno pozicioniranje podmenija */
    }

    .logo-wrapper {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 20; /* da logo bude iznad pozadine */
    }

    .logo-wrapper img {
        max-height: 100px;
    }

    /* Meni je po defaultu skriven */
    .nav-menu {
        display: none;
        position: absolute; /* bitno da se izlista ispod navigacije */
        top: 60px; /* malo ispod same navigacijske trake */
        right: 1rem;
        background-color: white;
        border-radius: 0.5rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        width: 200px;
        z-index: 30;
    }

    /* Kad je aktivna klasa, prikazujemo meni */
    .nav-menu.active {
        display: flex;
    }

    /* Hamburger meni - tri linije */
    .nav-toggle {
        display: none;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 40; /* iznad svega da je klikabilan */
        flex-direction: column;
        gap: 4px;
        width: 25px;
        height: 20px;
    }

    .nav-toggle span {
        width: 100%;
        height: 3px;
        background-color: #1f2937;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Nav linkovi unutar menija da budu vertikalno */
    .nav-link {
        padding: 0.5rem 0;
        font-weight: 600;
        color: #4b5563;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .nav-link:hover {
        color: #2563eb;
    }

    .nav-cta {
        background-color: #2563eb;
        color: white !important;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        text-align: center;
        margin-top: 0.5rem;
        display: block;
    }

    .nav-cta:hover {
        background-color: #1d4ed8;
        transform: translateY(-1px);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-toggle,
    .nav-menu {
      display: none !important;
    }
  }
  

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.hero-decoration-1 {
    top: -10rem;
    right: -10rem;
    background-color: #bfdbfe;
}

.hero-decoration-2 {
    bottom: -10rem;
    left: -10rem;
    background-color: #c7d2fe;
    animation-delay: 1s;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 64rem;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-icon {
    width: 3rem;
    height: 3rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: bounce 2s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-blue {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.tag-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.tag-purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, var(--from), var(--to));
}

.stat-blue {
    --from: #dbeafe;
    --to: #bfdbfe;
}

.stat-green {
    --from: #dcfce7;
    --to: #bbf7d0;
}


.stat-purple {
    --from: #f3e8ff;
    --to: #e9d5ff;
}

.stat-orange {
    --from: #fed7aa;
    --to: #fdba74;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    background-color: #f9fafb;
}

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

.service-card {
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--from), var(--to));
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-blue {
    --from: #dbeafe;
    --to: #bfdbfe;
    border-color: #bfdbfe;
}

.service-green {
    --from: #dcfce7;
    --to: #bbf7d0;
    border-color: #bbf7d0;
}

.service-purple {
    --from: #f3e8ff;
    --to: #e9d5ff;
    border-color: #e9d5ff;
}

.service-orange {
    --from: #fed7aa;
    --to: #fdba74;
    border-color: #fdba74;
}

.service-indigo {
    --from: #e0e7ff;
    --to: #c7d2fe;
    border-color: #c7d2fe;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2rem;
}

.service-arrow {
    font-size: 1.25rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.service-card:hover .service-arrow {
    color: #1f2937;
    transform: translateX(4px);
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.service-features li::before {
    content: '•';
    color: #2563eb;
    margin-right: 0.75rem;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

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

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-links {
    display: flex;
    gap: 0.5rem;
}

.portfolio-link {
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.portfolio-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
    transition: color 0.2s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #2563eb;
}

.portfolio-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tag {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.portfolio-results {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

.result-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9fafb;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #e5e7eb;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.testimonial-content {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
}

.testimonials-cta {
    margin-top: 3rem;
}

.cta-box {
    background-color: #dbeafe;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: white;
}

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

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.contact-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-icon-blue {
    background-color: #dbeafe;
}

.contact-icon-green {
    background-color: #dcfce7;
}

.contact-icon-purple {
    background-color: #f3e8ff;
}

.contact-icon-orange {
    background-color: #fed7aa;
}

.contact-text h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #6b7280;
}

.contact-benefits {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.contact-benefits h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-form-container {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
}

.contact-form {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 0;
}

.form-success.show {
    display: block;
}

.form-success.show ~ .contact-form {
    display: none;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.form-success p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.success-note {
    background-color: #dcfce7;
    padding: 1rem;
    border-radius: 0.5rem;
}

.success-note p {
    color: #16a34a;
    font-weight: 500;
    margin: 0;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 0; /* smanjio padding s 40px na 10px */
  }
  
  .logo-wrapper img {
    max-width: 150px; /* smanjio veličinu loga s 300px na 150px */
    height: auto;
    display: block;
  }
  
  
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-icon {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-contact-icon {
    font-size: 1rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .about-tags {
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-card {
        margin: 0 auto;
        max-width: 300px;
    }
}