/* =========================================
   AXEL MEDIA - Agencja Social Media
   Custom Styles
   ========================================= */

:root {
    --color-bg: #f4eee4;      /* Pure white background */
    --color-bg-light: #f4eee4; /* Pure white */
    --color-bg-dark: #f4eee4;  /* Pure white */
    --color-yellow: #FFC000;   /* Brand yellow */
    --color-black: #050505;   /* Rich black */
    --color-white: #FFFFFF;
    --color-gray: #A0A0A0;
    --color-text: #1a1a1a;
    
    --font-heading: 'Kanit', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --h-hero: clamp(3rem, 10vw, 7rem);
    --h-medium: clamp(2rem, 5vw, 4rem);
    --h-small: clamp(1.2rem, 2vw, 1.8rem);
    
    --body-size: 1.1rem;
    --body-color: #555;
    
    --section-spacing: 140px;
    
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: initial; /* handled by Lenis */
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--body-color);
    font-size: var(--body-size);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-black);
    text-transform: uppercase;
}

h1 { font-size: var(--h-hero); }
h2 { font-size: var(--h-medium); }
h3, h4 { font-size: var(--h-small); }

b, strong {
    font-weight: 500; /* Odciążenie pogrubionego tekstu */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Text Utilities */
.text-yellow { color: var(--color-yellow); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-gray { color: var(--color-gray); }

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-black);
}
.text-center { text-align: center; }



/* Utilities */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.bg-dark { background-color: var(--color-black); color: var(--color-white); }
.bg-light { background-color: var(--color-bg); }
.bg-black { background-color: #000; }
.bg-light-gray { background-color: var(--color-bg); }

.max-w-2xl { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pt-5 { padding-top: 3rem; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-end { align-items: flex-end; }
.d-none-mobile { display: block; }
.d-block-mobile { display: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 100px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    gap: 12px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
    transform: skewX(-20deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

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

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

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.bg-dark .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.bg-dark .btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-sm { padding: 14px 30px; font-size: 0.8rem; }
.btn-large { padding: 22px 55px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(244, 238, 228, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-black);
    z-index: 101;
}

.logo-m {
    color: var(--color-yellow);
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500; /* Zmieniono z 700 */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-family: var(--font-heading);
    font-weight: 500; /* Zmieniono z 700 */
    font-size: 0.9rem;
}

.lang-switch a {
    color: var(--color-gray);
}

.lang-switch a.active {
    color: var(--color-black);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-elements .circle {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
}

.circle-1 {
    width: 800px;
    height: 800px;
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 1200px;
    height: 1200px;
    top: -400px;
    left: -400px;
}

.circle-3 {
    width: 600px;
    height: 600px;
    bottom: -100px;
    right: -100px;
    background-color: var(--color-yellow);
    border: none !important;
    opacity: 0.1;
    filter: blur(80px);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    padding-right: 60px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding-left: 50px;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--color-yellow);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.9;
    margin-bottom: 30px;
}

.hero-tags {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 5px;
    margin-bottom: 40px;
    color: var(--color-black);
}

.hero-tags span {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(255, 192, 0, 0.2);
    border-radius: 20px;
    margin-bottom: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
    /* Dociągnięcie obrazka z prawej strony kontenera do absolutnej krawędzi okna */
    margin-right: calc(-50vw + 50%); 
    padding-left: 20px; /* Dystans od hero-content */
}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-decorator-img {
    position: absolute;
    top: 50px;
    right: 50px; /* odsuniecie od krawedzi */
    width: 90px;
    height: auto;
    z-index: 2;
    animation: scalePulse 4s ease-in-out infinite; /* zmieniona z 'float' na pulsowanie */
}

@keyframes scalePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}


/* Parallax Image Section */
.parallax-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Zmiana z 70vh na wyższą */
    min-height: 400px;
    overflow: hidden;
    margin: 60px 0;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover; /* zastępuje background-size: cover i center dla wideo */
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.2); /* Lekki overlay przyciemniający maskę tła */
    z-index: 1;
}

/* Typography elements */
.subtitle {
    font-family: var(--font-heading);
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 500;
}

/* About Section - Modern Style */
.about-modern-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-headline {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-black);
    max-width: 1200px;
    letter-spacing: -1px;
}

.about-footer {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.trends-circle {
    width: 140px;
    height: 140px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.trends-circle span {
    line-height: 1.2;
    display: block;
}

.trends-circle i {
    margin-top: 10px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.trends-circle:hover {
    border-color: var(--color-yellow);
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.trends-circle:hover i {
    transform: translate(3px, -3px);
}

.about-footer-text {
    font-size: var(--body-size);
    color: var(--body-color);
    line-height: 1.6;
    max-width: 450px;
}

.award-badge-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-self: end;
}

.award-badge-modern i {
    font-size: 3.5rem;
    color: var(--color-black);
    margin-bottom: 5px;
}

.award-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .about-footer {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 50px;
    }
    .award-badge-modern {
        justify-self: start;
    }
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    transition: var(--transition-slow);
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
    transition: var(--transition);
}

.service-title {
    position: relative;
    z-index: 3;
    font-size: 2rem;
    color: var(--color-white);
    margin: 0;
    padding: 0 20px;
    font-weight: 500;
}

.service-cta {
    position: absolute;
    bottom: 40px;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
    color: var(--color-white);
}

.cta-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
}

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

.service-card:hover .cta-text::after {
    background-color: var(--color-yellow);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    margin-bottom: 50px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.badge-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 30px;
}

.circle-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.circle-btn {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.circle-btn i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.circle-btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    transform: scale(1.05);
}

.circle-btn:hover i {
    transform: translate(3px, -3px);
}

/* Light version CTA */
.cta-section.light-version .badge-pill {
    border-color: rgba(0,0,0,0.1);
    color: var(--color-black);
}

.cta-section.light-version .circle-btn {
    border-color: rgba(0,0,0,0.1);
    color: var(--color-black);
}

.cta-section.light-version .circle-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 1 / 1.2; /* Zwiększono wysokość o 20% względem kwadratu */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 20px 0;
    text-align: left;
    transition: var(--transition);
}

.portfolio-info h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.3;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: var(--color-black);
    font-weight: 500;
    text-transform: none;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    color: var(--color-black);
    margin-top: 10px;
}

.portfolio-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-link i {
    transform: translate(3px, -3px);
}

/* Pricing / Sklep */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--color-white);
    padding: 50px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: scale(1.05);
    border-color: var(--color-black);
}

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

.pricing-card.featured h3 {
    color: var(--color-white);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 5px 15px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricing-card.featured .pricing-header {
    border-color: rgba(255,255,255,0.1);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-yellow);
    line-height: 1;
    margin-top: 15px;
}

.price span {
    font-size: 1rem;
    color: var(--color-gray);
}

.pricing-body {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-body ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.pricing-body ul li i {
    color: var(--color-yellow);
}

.pricing-body ul li.text-disabled {
    color: var(--color-gray);
    text-decoration: line-through;
}

.pricing-body ul li.text-disabled i {
    color: var(--color-gray);
}

/* Instagram */
.link-hover {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.link-hover:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.ig-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 192, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-black);
    opacity: 0;
    transition: var(--transition);
}

.ig-item:hover .ig-overlay {
    opacity: 1;
}

.footer-new {
    background-color: var(--color-bg);
    color: var(--color-black);
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.footer-top-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.footer-title-large {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: none;
    font-weight: 600;
}

.footer-desc {
    font-size: var(--body-size);
    color: var(--body-color);
    line-height: 1.5;
    margin-bottom: 80px;
}

.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.footer-address-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 600;
}

.footer-address-col p, .footer-address-col a {
    font-size: var(--body-size);
    color: var(--body-color);
    line-height: 1.6;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.partner-logo-simple {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--color-black);
    margin-left: 10px;
}

.footer-decoration-circle {
    position: absolute;
    top: -150px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-color: transparent;
    border: 30px solid var(--color-yellow);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.2;
}

@media (max-width: 991px) {
    .footer-content-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}



@media (max-width: 991px) {
    .footer-middle {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter-wrap {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .newsletter-wrap {
        grid-column: span 1;
    }
    .footer-bottom-bar {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .footer-decoration-circle {
        width: 400px;
        height: 400px;
        right: -100px;
    }
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* Animations that are pure CSS */
.gs-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid, .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .d-none-mobile { display: none; }
    .d-block-mobile { display: block; }

    .header-right .btn-primary { display: none; }
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-slow);
    }

    .nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        padding-left: 0;
        padding-top: 20px;
    }

    .hero-subtitle::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 15px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 80%;
    }

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

    .pricing-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .ig-item:last-child {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }


}
