/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors */
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #c9a86a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   Typography
   =================================== */
.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-grid {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    opacity: 0.15;
    transform: rotate(-5deg);
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    animation: floatImage 20s ease-in-out infinite;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.1);
    transition: var(--transition-smooth);
}

.grid-item:hover img {
    filter: grayscale(0) contrast(1.2);
    transform: scale(1.05);
}

.grid-item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    animation-delay: 0s;
}

.grid-item-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    animation-delay: 2s;
}

.grid-item-3 {
    grid-column: 2 / 4;
    grid-row: 3 / 5;
    animation-delay: 4s;
}

.grid-item-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
    animation-delay: 6s;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-overlay::before {
    display: none;
}

.hero-overlay::after {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.hero-greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.hero-greeting::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
}

.hero-name {
    display: block;
    font-size: 5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-lighter);
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.5s both;
    z-index: 2;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-lighter));
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.expertise {
    margin-top: 2.5rem;
    padding: 0 20px 1rem;
}

.expertise h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    text-align: center;
}

.expertise-list {
    display: grid;
    gap: 0.875rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.expertise-list i {
    color: var(--accent-color);
    font-size: 1rem;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    padding: 50px 40px 40px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-photo img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-social-links .social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 168, 106, 0.3);
}

.about-visual {
    display: flex;
    flex-direction: column;
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    padding: 50px 40px;
    border-radius: 4px;
    position: sticky;
    top: 120px;
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    text-align: center;
}

.stat:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

/* ===================================
   Clients Section
   =================================== */
.clients {
    padding: var(--section-padding) 0;
    background-color: var(--secondary-color);
}

.clients .section-title {
    text-align: center;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.client-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.client-image {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.client-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Fix Fideum image to remove white space padding */
.client-image img[alt="Fideum - FinTech Solutions"] {
    object-fit: cover;
    transform: scale(1.15);
}

/* Fix YaasYaas image to remove white space padding */
.client-image img[alt="YaasYaas - Home Decor Products"] {
    object-fit: cover;
    transform: scale(1.15);
}

/* Fix Eat Out Vilnius image to remove white space padding */
.client-image img[alt="Eat Out Vilnius - Restaurant Food Photography"] {
    object-fit: cover;
    transform: scale(1.15);
}

/* Fix RiVi image to remove white space padding */
.client-image img[alt="RiVi - Seasonal Flowers and Plants"] {
    object-fit: cover;
    transform: scale(1.15);
}

.client-card:hover .client-image img {
    transform: scale(1.03);
}

.client-card:hover .client-image img[alt="Fideum - FinTech Solutions"],
.client-card:hover .client-image img[alt="YaasYaas - Home Decor Products"],
.client-card:hover .client-image img[alt="Eat Out Vilnius - Restaurant Food Photography"],
.client-card:hover .client-image img[alt="RiVi - Seasonal Flowers and Plants"] {
    transform: scale(1.18);
}

.client-header {
    margin-bottom: 1.5rem;
}

.client-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    outline: none;
    display: block;
    vertical-align: middle;
}

/* Adjust logos to match visual sizes */
.client-logo img[alt="Eat Out Vilnius Logo"],
.client-logo img[alt="RiVi Gėlės Logo"],
.client-logo img[alt="FindUpp Logo"] {
    width: 130px;
    height: 130px;
}

/* Adjust YaasYaas logo position */
.client-logo img[alt="YaasYaas Logo"] {
    transform: translateY(-15px);
}

/* Adjust Kas Ant Stalo logo position */
.client-logo img[alt="Kas Ant Stalo Logo"] {
    transform: translateY(-25px);
}

/* Adjust Petra Bakery logo position */
.client-logo img[alt="Petra Bakery Logo"] {
    transform: translateY(-5px);
}

.client-logo img[alt="Petra Bakery Logo"] {
    width: 140px;
    height: 140px;
}

.client-logo img[alt="Kas Ant Stalo Logo"] {
    width: 170px;
    height: 170px;
}

.client-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    flex: 1;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
}

.client-description {
    margin-bottom: 2rem;
}

.client-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.client-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.client-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.client-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.client-achievements h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.client-achievements ul {
    list-style: none;
}

.client-achievements li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.client-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* ===================================
   Articles Section
   =================================== */
.articles {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.articles .section-title {
    text-align: center;
}

.article-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.article-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.article-card.hidden {
    display: none;
}

.article-source {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.source-badge {
    padding: 6px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-badge.tv3 {
    background-color: #e3f2fd;
    color: #1565c0;
}

.source-badge.min15 {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.source-badge.other {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.article-source i {
    color: var(--text-lighter);
    font-size: 1.125rem;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-excerpt {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.article-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

.article-link i {
    transition: var(--transition-fast);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.testimonials .section-title {
    text-align: center;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 4rem;
}

.testimonials-container {
    overflow: hidden;
    margin: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-text {
    flex: 1;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    flex-shrink: 0;
}
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 20px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-method a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
}

.form-message {
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .hero-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        opacity: 0.12;
    }
    
    .grid-item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .grid-item-2 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    
    .grid-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
    }
    
    .grid-item-4 {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-card {
        position: relative;
        top: 0;
    }
    
    .about-photo img {
        width: 220px;
        height: 220px;
    }
    
    .about-social-links .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .stats-card {
        position: relative;
        top: 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo img {
        width: 120px;
        height: 120px;
        border: none;
        box-shadow: none;
        outline: none;
    }
    
    .client-logo img[alt="Eat Out Vilnius Logo"],
    .client-logo img[alt="RiVi Gėlės Logo"],
    .client-logo img[alt="FindUpp Logo"] {
        width: 104px;
        height: 104px;
    }
    
    .client-logo img[alt="Petra Bakery Logo"] {
        width: 112px;
        height: 112px;
    }
    
    .client-logo img[alt="Kas Ant Stalo Logo"] {
        width: 136px;
        height: 136px;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 35px 30px;
    }
    
    .testimonials-container {
        margin: 0 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        opacity: 0.1;
        gap: 15px;
    }
    
    .grid-item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .grid-item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .grid-item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .grid-item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .navbar .container {
        padding: 15px 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }
    
    .hero-greeting {
        font-size: 1.125rem;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        white-space: normal;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .testimonials-container {
        margin: 0 50px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .article-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .client-card {
        padding: 30px 20px;
    }
    
    .client-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .client-logo img {
        width: 100px;
        height: 100px;
        border: none;
        box-shadow: none;
        outline: none;
    }
    
    .client-logo img[alt="Eat Out Vilnius Logo"],
    .client-logo img[alt="RiVi Gėlės Logo"],
    .client-logo img[alt="FindUpp Logo"] {
        width: 87px;
        height: 87px;
    }
    
    .client-logo img[alt="Petra Bakery Logo"] {
        width: 93px;
        height: 93px;
    }
    
    .client-logo img[alt="Kas Ant Stalo Logo"] {
        width: 113px;
        height: 113px;
    }
    
    .client-name {
        font-size: 1.75rem;
    }
    
    .about-card {
        padding: 40px 25px;
    }
    
    .about-photo img {
        width: 180px;
        height: 180px;
    }
    
    .about-social-links {
        gap: 15px;
    }
    
    .about-social-links .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .expertise h3 {
        font-size: 1.3rem;
    }
    
    .stats-card {
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}