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

:root {
    --primary-dark: #141842;
    --primary-purple: #722BA0;
    --accent-purple: #B25ECF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gray-placeholder: #cccccc;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-purple);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(114, 43, 160, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(114, 43, 160, 0.4);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(114, 43, 160, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-purple);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-purple);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-purple);
}

/* Creative Highlights */
.creative-highlights {
    padding: 4rem 0;
    background: radial-gradient(circle at top, rgba(178, 94, 207, 0.15), rgba(20, 24, 66, 0.85));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.creative-highlights::before,
.creative-highlights::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(178, 94, 207, 0.25);
    filter: blur(40px);
    z-index: 1;
    animation: pulseGlow 12s infinite alternate;
}

.creative-highlights::before {
    top: -60px;
    left: -60px;
}

.creative-highlights::after {
    bottom: -80px;
    right: -40px;
    animation-delay: 3s;
}

.creative-highlights .container {
    position: relative;
    z-index: 2;
}

.creative-highlights h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.creative-highlights p.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.85);
}

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

.creative-card {
    background: rgba(20, 24, 66, 0.6);
    border: 1px solid rgba(178, 94, 207, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(20, 24, 66, 0.35);
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.creative-card::before {
    content: '';
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 180deg, rgba(178, 94, 207, 0.2), rgba(114, 43, 160, 0.35), rgba(178, 94, 207, 0.2));
    animation: rotateGlow 18s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.creative-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(20, 24, 66, 0.85);
    border-radius: 18px;
}

.creative-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(178, 94, 207, 0.6);
}

.creative-card:hover::before {
    opacity: 1;
}

.creative-card-content {
    position: relative;
    z-index: 2;
}

.creative-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.creative-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.creative-card .tags {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.creative-card .tags svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.8);
}

.creative-statements {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

.statement-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(20, 24, 66, 0.25);
    backdrop-filter: blur(8px);
    animation: slideUpFade 0.9s ease forwards;
    opacity: 0;
}

.statement-line:nth-child(2) {
    animation-delay: 0.2s;
}

.statement-line:nth-child(3) {
    animation-delay: 0.4s;
}

.statement-line svg {
    width: 26px;
    height: 26px;
    stroke: rgba(255, 255, 255, 0.9);
}

.statement-line span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@keyframes pulseGlow {
    from {
        transform: scale(0.95);
        opacity: 0.35;
    }
    to {
        transform: scale(1.05);
        opacity: 0.55;
    }
}

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

/* Generic Content Blocks */
.content-section {
    padding: 4rem 0;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-block.text-only {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-text ul {
    margin: 1rem 0 1rem 1.25rem;
    color: var(--text-light);
}

.content-text ul li {
    margin-bottom: 0.5rem;
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(114, 43, 160, 0.15);
}

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

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: var(--gray-placeholder);
}

/* Feature-like Sections */
.features-section,
.techniques-grid-section,
.packaging-types-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.features-section h2,
.techniques-grid-section h2,
.packaging-types-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.features-grid,
.techniques-grid,
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item,
.technique-card,
.packaging-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover,
.technique-card:hover,
.packaging-item:hover {
    transform: translateY(-5px);
}

.feature-icon,
.technique-icon,
.packaging-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-purple);
}

.feature-icon svg,
.technique-icon svg,
.packaging-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-purple);
}

.feature-item h3,
.technique-card h3,
.packaging-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-item p,
.technique-card p,
.packaging-item p {
    color: var(--text-light);
}

/* Services List */
.services-list-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-list-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-list-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--primary-purple);
}

.service-list-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-purple);
}

.service-list-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.service-list-item p {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-purple);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-section ul.nav-links {
    columns: 2;
    column-gap: 1.5rem;
    padding-right: 0.5rem;
}

.footer-section ul.nav-links li {
    break-inside: avoid;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Image Placeholders */
img {
    background-color: var(--gray-placeholder);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .content-block {
        grid-template-columns: 1fr;
    }

    .content-block.reverse {
        direction: ltr;
    }

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

    .services-grid,
    .creative-grid,
    .gallery-grid,
    .features-grid,
    .techniques-grid,
    .packaging-grid {
        grid-template-columns: 1fr;
    }

    .service-list-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul.nav-links {
        columns: 1;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .nav-menu {
        top: 56px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-banner {
        padding: 2rem 0;
        min-height: 400px;
    }

    .page-hero {
        padding: 2rem 0;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .services-section,
    .creative-highlights,
    .content-section,
    .about-section,
    .gallery-section {
        padding: 2rem 0;
    }

    .services-section h2,
    .creative-highlights h2,
    .gallery-section h2,
    .features-section h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .feature-item,
    .technique-card,
    .packaging-item,
    .creative-card {
        padding: 1.5rem;
    }

    .content-text h2 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 200px;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 120%);
    background: rgba(20, 24, 66, 0.97);
    color: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(20, 24, 66, 0.35);
    width: min(520px, calc(100% - 32px));
    padding: 1.75rem;
    z-index: 2000;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-banner__text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--accent-purple);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-button {
    flex: 1;
    min-width: 140px;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-button__accept {
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    color: var(--white);
    box-shadow: 0 10px 25px rgba(178, 94, 207, 0.3);
}

.cookie-button__accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(178, 94, 207, 0.4);
}

.cookie-button__decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-button__decline:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        padding: 1.5rem;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-button {
        width: 100%;
    }
}
