/* Main Styles for Beardly Brands Website */

/* CSS Variables */
:root {
    --noxfolio-container-width: 1280px;
    --noxfolio-primary-color: #c9f31d;
    --noxfolio-dark-color: #0a0a0a;
    --noxfolio-dark-light-color: #1a1a1a;
    --noxfolio-headline-color: #ffffff;
    --noxfolio-body-color: #b0b0b0;
    --noxfolio-border-color: rgba(255, 255, 255, 0.1);
    --noxfolio-primary-font: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--noxfolio-primary-font), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--noxfolio-dark-color);
    color: var(--noxfolio-body-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Footer Legal Links */
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a,
.footer-legal .footer-cookie-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
}

.footer-legal a:hover,
.footer-legal .footer-cookie-link:hover {
    color: var(--noxfolio-primary-color);
}

.footer-legal a:visited,
.footer-legal .footer-cookie-link:visited {
    color: #cccccc;
}

.footer-legal a:visited:hover,
.footer-legal .footer-cookie-link:visited:hover {
    color: var(--noxfolio-primary-color);
}

/* GDPR Compliance Badge */
.gdpr-compliant-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--noxfolio-primary-color), #8bc34a);
    color: #000000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* Main content area */
#main-content {
    margin: 0;
    padding: 0;
    background-color: var(--noxfolio-dark-color);
}

/* All sections */
section {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

/* Container */
.container {
    max-width: var(--noxfolio-container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--noxfolio-headline-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
    margin-bottom: 1rem;
    color: var(--noxfolio-body-color);
}

a {
    color: var(--noxfolio-primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--noxfolio-headline-color);
}

/* Unified Button System - All Buttons */
.btn,
.btn-primary,
.btn-secondary,
.tab-btn,
.cta-button,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: 3px solid var(--noxfolio-primary-color) !important;
    border-radius: 15px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    color: var(--noxfolio-primary-color) !important;
    background-color: transparent !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

/* Hover State with Animated Glow */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.tab-btn:hover,
.cta-button:hover,
button[type="submit"]:hover {
    background-color: var(--noxfolio-primary-color) !important;
    color: var(--noxfolio-dark-color) !important;
    border-color: var(--noxfolio-primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                0 0 15px rgba(201, 243, 29, 0.4);
    animation: subtle-glow 5s ease-in-out infinite;
}

/* Active State with Glow */
.btn:active,
.btn-primary:active,
.btn-secondary:active,
.tab-btn:active,
.cta-button:active,
button[type="submit"]:active,
.tab-btn.active {
    background-color: var(--noxfolio-primary-color) !important;
    color: var(--noxfolio-dark-color) !important;
    border-color: var(--noxfolio-primary-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(201, 243, 29, 0.5),
                0 0 15px rgba(201, 243, 29, 0.6);
}

/* Subtle Slow Glow Animation */
@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                    0 0 15px rgba(201, 243, 29, 0.4);
    }
    50% {
        box-shadow: 0 10px 25px rgba(201, 243, 29, 0.4),
                    0 0 18px rgba(201, 243, 29, 0.5);
    }
}

/* Enhanced Icon Animation */
.btn i,
.btn-primary i,
.btn-secondary i,
.tab-btn i,
.cta-button i,
button[type="submit"] i {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn:hover i,
.btn-primary:hover i,
.btn-secondary:hover i,
.tab-btn:hover i,
.cta-button:hover i,
button[type="submit"]:hover i {
    transform: translateX(4px) rotate(5deg);
}

/* Focus styles for accessibility */
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.tab-btn:focus,
.cta-button:focus,
button[type="submit"]:focus {
    outline: 2px solid var(--noxfolio-primary-color);
    outline-offset: 2px;
}

/* Loading State Animation (for form submission) */
.btn.loading,
.btn-primary.loading,
button[type="submit"].loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after,
.btn-primary.loading::after,
button[type="submit"].loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1650px;
    margin: 0 auto;
    padding: 15px;
    min-height: 95px;
}

.site-logo img {
    height: 64px;
    width: auto;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    color: var(--noxfolio-headline-color) !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--noxfolio-primary-color) !important;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--noxfolio-primary-color) !important;
    text-decoration: none !important;
}

.nav-menu a:hover::after {
    width: 100% !important;
}

/* Header CTA - Now uses unified button system above */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    background: transparent !important;
    border: none !important;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--noxfolio-headline-color) !important;
    transition: all 0.3s ease;
}

/* Section Spacing */
section {
    padding: 100px 0;
}

/* Section Titles */
.section-title {
    margin-bottom: 3rem;
}

.section-title.text-center {
    text-align: center;
}

.subtitle {
    display: block;
    color: var(--noxfolio-primary-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.focus-text {
    color: var(--noxfolio-primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--noxfolio-dark-color);
    /* Fallback background image WITHOUT gradient (gradient handled by ::before) */
    background-image: url('../img/optimized/hero-beardlybrands-1-lg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: none;
    transform: none !important; /* Force no transform */
}

/* Responsive hero background images - WITHOUT gradients */
@media (min-width: 1600px) {
    .hero-section {
        background-image: url('../img/optimized/hero-beardlybrands-1-xl.webp');
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .hero-section {
        background-image: url('../img/optimized/hero-beardlybrands-1-lg.webp');
    }
}

@media (max-width: 991px) {
    .hero-section {
        background-image: url('../img/optimized/hero-beardlybrands-1-md.webp');
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-image: url('../img/optimized/hero-beardlybrands-1-sm.webp');
    }
}

/* WebP fallback for browsers that don't support WebP */
@supports not (background-image: url('image.webp')) {
    .hero-section {
        background-image: url('../img/optimized/hero-beardlybrands-1-lg.jpg');
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content .subtitle {
    animation-delay: 0.2s;
}

.hero-content h1 {
    animation-delay: 0.4s;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
    animation-delay: 0.6s;
}

.hero-actions {
    animation-delay: 0.8s;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background-color: var(--noxfolio-dark-light-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--noxfolio-border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--noxfolio-primary-color);
}

.stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noxfolio-primary-color);
}

.stat-suffix {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--noxfolio-primary-color);
}

.stat-title {
    color: var(--noxfolio-headline-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    background-color: var(--noxfolio-dark-light-color);
    margin: 0;
    padding: 100px 0;
    margin-top: -5px; /* Slight overlap to ensure no gap */
    position: relative;
    z-index: 1;
}

/* Scrolling Text Marquee */
.noxfolio-scroll-section {
    background-color: var(--noxfolio-dark-color);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--noxfolio-border-color);
    border-bottom: 1px solid var(--noxfolio-border-color);
    position: relative;
}

.noxfolio-scroll-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--noxfolio-headline-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    will-change: transform;
}

.scroll-content .text {
    color: var(--noxfolio-headline-color);
    font-weight: 600;
    margin: 0 1rem;
    font-family: var(--noxfolio-primary-font), sans-serif;
    display: inline-block;
}

.scroll-content .divider {
    color: var(--noxfolio-primary-color);
    font-size: 1.1rem;
    margin: 0 1rem;
    display: inline-block;
}

.scroll-content .divider i {
    font-size: 0.7rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.noxfolio-scroll-text:hover .scroll-content {
    animation-play-state: paused;
}

/* About Intro Section */
.about-intro-section {
    background-color: var(--noxfolio-dark-light-color);
    padding: 120px 0;
    margin: 0;
    border: none;
    position: relative;
}

.about-main-card {
    background-color: var(--noxfolio-dark-color);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content-grid {
    display: grid;
    grid-template-columns: calc(50% - 2rem) calc(50% - 2rem);
    gap: 4rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.about-left-column {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.about-right-column {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.about-text {
    margin: 2rem 0 3rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--noxfolio-body-color);
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.services-col .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-col .check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--noxfolio-body-color);
}

.services-col .check-list li i {
    color: var(--noxfolio-primary-color);
    margin-right: 1rem;
    font-size: 1rem;
}

/* Call to Action Button */
.call-cta-wrapper {
    margin-top: 3rem;
    width: 100%;
}

.call-cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--noxfolio-primary-color) 0%, #b8d626 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: var(--noxfolio-dark-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(201, 243, 29, 0.3);
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.call-cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(201, 243, 29, 0.5), 0 0 30px rgba(201, 243, 29, 0.3);
    background: linear-gradient(135deg, var(--noxfolio-primary-color) 0%, #d4e855 100%);
    color: var(--noxfolio-dark-color);
}

.call-cta-button:active {
    transform: translateY(-2px) scale(1.01);
}

.cta-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.call-cta-button:hover .cta-icon {
    background-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.cta-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.cta-number {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.call-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Pulse animation for extra attention */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(201, 243, 29, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(201, 243, 29, 0.5), 0 0 20px rgba(201, 243, 29, 0.3);
    }
}

.call-cta-button {
    animation: pulse-glow 3s ease-in-out infinite;
}

.contact-cards-container .contact-card:first-child {
    grid-column: 1;
}

.contact-cards-container .contact-card:last-child {
    grid-column: 2;
}

.contact-cards-container .contact-card:hover .card-icon {
    background-color: var(--noxfolio-primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                0 0 15px rgba(201, 243, 29, 0.4);
    animation: subtle-glow 5s ease-in-out infinite;
}

.contact-cards-container .contact-card:hover .card-icon i {
    color: var(--noxfolio-dark-color);
}

/* CLS Prevention - Explicit aspect ratios and dimensions */
.founder-image img {
    aspect-ratio: 731 / 700;
    width: 100%;
    height: auto;
}

.design-card img,
.blog-card img,
.photo-item img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
}

/* Placeholder images consistent sizing */
img[src*="placeholder.png"] {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: auto;
}

.contact-cards-container .card-icon {
    flex-shrink: 0;
    width: 35px !important;
    height: 35px !important;
    background-color: transparent !important;
    border: 3px solid var(--noxfolio-primary-color) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-primary-color);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-cards-container .card-icon i {
    font-size: 14px;
    color: var(--noxfolio-primary-color);
    transition: all 0.3s ease;
}

.contact-cards-container .card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.contact-cards-container .card-content h4 {
    margin: 0 !important;
    font-size: 14px !important;
    color: var(--noxfolio-body-color);
    line-height: 1.2;
    font-weight: 600;
    order: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-cards-container .card-content p {
    margin: 0 !important;
    color: var(--noxfolio-headline-color);
    font-size: 13px !important;
    line-height: 1.3;
    font-weight: 600;
    order: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.about-right-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.founder-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    max-width: 100%;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--noxfolio-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: var(--noxfolio-dark-color);
    font-size: 1.2rem;
}

.card-content h4 {
    color: var(--noxfolio-headline-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.card-content p {
    color: var(--noxfolio-body-color);
    margin: 0;
    font-size: 0.95rem;
}

/* Social Media Section */
.social-media-section {
    background-color: var(--noxfolio-dark-color);
}

.about-grid {
    display: grid;
    grid-template-columns: calc(50% - 2rem) calc(50% - 2rem);
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.about-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    max-width: 100%;
}

/* Check List */
.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--noxfolio-body-color);
}

.check-list i {
    color: var(--noxfolio-primary-color);
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--noxfolio-dark-color);
    overflow-x: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

.pricing-card {
    background-color: var(--noxfolio-dark-light-color);
    border: 1px solid var(--noxfolio-border-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--noxfolio-primary-color);
}

.pricing-card.featured {
    border-color: var(--noxfolio-primary-color);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--noxfolio-body-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--noxfolio-body-color);
}

.features-list i.fas {
    color: var(--noxfolio-primary-color);
}

.features-list i.far {
    color: var(--noxfolio-body-color);
    opacity: 0.5;
}

/* Pricing Card Buttons */
.pricing-card .btn {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 12px 20px; /* Reset to normal padding */
    margin-top: 1rem;
    justify-content: center; /* Center the content */
}

.pricing-card .btn span {
    font-size: 0.85rem;
    white-space: nowrap;
    /* Remove margin-right as no icon needed */
}

/* Hide icons in pricing card buttons */
.pricing-card .btn i {
    display: none; /* Hide the icon completely */
}

/* Design Section */
.design-section {
    background-color: var(--noxfolio-dark-light-color);
}

.design-description {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.design-description p {
    font-size: 1.1rem;
    color: var(--noxfolio-body-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Design Tabs */
.design-tabs {
    margin-top: 3rem;
}

.tab-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--noxfolio-border-color);
    padding-bottom: 1rem;
}

/* Tab button styles are now handled by the unified button system above */

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.design-grid,
.design-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.design-card {
    background-color: var(--noxfolio-dark-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--noxfolio-border-color);
}

.design-card:hover {
    transform: translateY(-10px);
    border-color: var(--noxfolio-primary-color);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.design-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--noxfolio-light-color);
}

.card-content p {
    color: var(--noxfolio-body-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Photo/Video Section */
.photo-video-section {
    background-color: var(--noxfolio-dark-color);
}

.photography-description {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.photography-description p {
    font-size: 1.1rem;
    color: var(--noxfolio-body-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.photo-video-tabs {
    margin-top: 3rem;
}

.photo-video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Photo Grid Styles */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    contain: layout style;
}

.photo-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: transform;
    contain: layout;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.2);
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201, 243, 29, 0.1), rgba(201, 243, 29, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.photo-item:hover::after {
    opacity: 1;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.content-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--noxfolio-light-color);
}

.content-text p {
    font-size: 1.1rem;
    color: var(--noxfolio-body-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--noxfolio-body-color);
}

.check-list li i {
    color: var(--noxfolio-primary-color);
    margin-right: 1rem;
    font-size: 1rem;
}

/* btn-primary styles now handled by unified button system above */

/* Contact Section */
.contact-section {
    background-color: var(--noxfolio-dark-light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 3px solid var(--noxfolio-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.contact-icon:hover {
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                0 0 15px rgba(201, 243, 29, 0.4);
    animation: subtle-glow 5s ease-in-out infinite;
}

.contact-details h5 {
    color: var(--noxfolio-headline-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: var(--noxfolio-body-color);
}

.contact-details a:hover {
    color: var(--noxfolio-primary-color);
}

/* Social Links */
.social-links h5 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 3px solid var(--noxfolio-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-primary-color);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                0 0 15px rgba(201, 243, 29, 0.4);
    animation: subtle-glow 5s ease-in-out infinite;
}

/* NEW: Additional styles for new contact layout */
.contact-text-wrapper {
    order: 1;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 2rem 0;
}

.contact-main-title .title-white {
    color: var(--noxfolio-headline-color);
    display: block;
}

.contact-main-title .title-green {
    color: var(--noxfolio-primary-color);
    display: block;
}

.contact-description {
    color: var(--noxfolio-body-color);
    line-height: 1.6;
}

.contact-description p {
    margin-bottom: 1.5rem;
}

/* Contact Information List */
.contact-info-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--noxfolio-primary-color) 0%, #b8d626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-dark-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(201, 243, 29, 0.3);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 14px;
    color: var(--noxfolio-body-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--noxfolio-headline-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: var(--noxfolio-primary-color);
}

.contact-form-wrapper {
    order: 2;
}

.contact-card-wrapper {
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--noxfolio-dark-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--noxfolio-border-color);
    text-align: center;
}

.contact-card .card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--noxfolio-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--noxfolio-dark-color);
    font-size: 2rem;
}

.contact-card .card-content h4 {
    color: var(--noxfolio-headline-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card .card-content > p {
    color: var(--noxfolio-body-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.contact-card .contact-info-list {
    margin-bottom: 1.5rem;
}

.contact-card .contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--noxfolio-body-color);
}

.contact-card .contact-info-item i {
    color: var(--noxfolio-primary-color);
    font-size: 1rem;
    min-width: 20px;
}

.contact-card .contact-info-item a {
    color: var(--noxfolio-body-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card .contact-info-item a:hover {
    color: var(--noxfolio-primary-color);
}

.contact-card .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-card .social-icons a {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--noxfolio-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card .social-icons a:hover {
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background-color: var(--noxfolio-dark-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--noxfolio-border-color);
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--noxfolio-headline-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--noxfolio-dark-light-color);
    border: 1px solid var(--noxfolio-border-color);
    border-radius: 5px;
    color: var(--noxfolio-headline-color);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--noxfolio-primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Blog Section */
.blog-section {
    background-color: var(--noxfolio-dark-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--noxfolio-dark-light-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--noxfolio-border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--noxfolio-primary-color);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--noxfolio-body-color);
}

.blog-category {
    color: var(--noxfolio-primary-color);
    font-weight: 600;
}

.blog-content h4 {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--noxfolio-primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--noxfolio-headline-color);
}

/* Footer */
.site-footer {
    background-color: #2a2a2a;
    padding: 3rem 0 1rem;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h6 {
    color: var(--noxfolio-headline-color);
    margin-bottom: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 68px;
    margin-bottom: 1rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.footer-contact i {
    color: var(--noxfolio-primary-color);
    width: 20px;
}

.footer-contact a {
    color: #cccccc;
}

.footer-contact a:hover {
    color: var(--noxfolio-primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 3px solid var(--noxfolio-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--noxfolio-primary-color) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

/* Ensure social icons never show purple (visited state) */
.footer-social a:link,
.footer-social a:visited {
    color: var(--noxfolio-primary-color) !important;
    border-color: var(--noxfolio-primary-color) !important;
}

/* Specific fix for Instagram icon - override accessibility.css purple */
.footer-social a .fab.fa-instagram {
    color: var(--noxfolio-primary-color) !important;
}

/* Override global visited link color for social icons */
.footer-social a:visited,
.footer-social a:visited i,
.footer-social a:visited .fab {
    color: var(--noxfolio-primary-color) !important;
}

.footer-social a:hover {
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 243, 29, 0.3),
                0 0 15px rgba(201, 243, 29, 0.4);
    animation: subtle-glow 5s ease-in-out infinite;
}

/* Footer Projects */
.footer-projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.project-item {
    display: block;
}

.project-item a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-item a:hover {
    transform: translateY(-2px);
}

.project-logo-placeholder {
    width: 120px;
    height: 40px;
    background-color: #3a3a3a;
    border: 2px solid #555555;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #cccccc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-logo-placeholder:hover {
    border-color: var(--noxfolio-primary-color);
    background-color: rgba(201, 243, 29, 0.1);
    color: var(--noxfolio-primary-color);
}

.project-logo-placeholder span {
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

/* Footer Projects */
.footer-projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-logo {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.project-logo-placeholder {
    background: linear-gradient(135deg, var(--noxfolio-primary-color), #a8d91a);
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.project-logo:hover .project-logo-placeholder {
    border-color: var(--noxfolio-primary-color);
}

.project-logo-placeholder span {
    color: var(--noxfolio-dark-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--noxfolio-headline-color);
    transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    contain: layout;
    will-change: opacity, visibility;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--noxfolio-secondary-color);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    will-change: transform;
    contain: layout;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 50px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--noxfolio-headline-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1rem;
}

.mobile-nav a {
    color: var(--noxfolio-headline-color);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--noxfolio-border-color);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--noxfolio-primary-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Marketing Digital Section */
.marketing-digital-section {
    background-color: var(--noxfolio-dark-color);
    padding: 100px 0;
}

.marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.marketing-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--noxfolio-headline-color);
    margin-bottom: 2rem;
}

.marketing-content .focus-text {
    color: var(--noxfolio-primary-color);
}

.marketing-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--noxfolio-body-color);
    margin: 0;
}

/* Accordion Styling */
.accordion-container {
    background: var(--noxfolio-dark-light-color);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--noxfolio-dark-light-color);
}

.accordion-header:hover {
    background: rgba(201, 243, 29, 0.05);
}

.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--noxfolio-headline-color);
    margin: 0;
}

.accordion-icon {
    font-size: 1rem;
    color: var(--noxfolio-primary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--noxfolio-dark-light-color);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.accordion-content p {
    color: var(--noxfolio-body-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding-bottom: 1rem;
}

/* Responsive Design for Marketing Section */
@media (max-width: 1024px) {
    .marketing-grid {
        gap: 3rem;
    }
    
    .marketing-content h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .marketing-digital-section {
        padding: 80px 0;
    }
    
    .marketing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .marketing-content h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1.5rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .marketing-content h3 {
        font-size: 1.75rem;
    }
    
    .accordion-header {
        padding: 1rem 1.2rem;
    }
    
    .accordion-content {
        padding: 0 1.2rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1.2rem 1rem 1.2rem;
    }
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-container {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    min-width: 60vw;
    min-height: 60vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--noxfolio-primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--noxfolio-primary-color);
    color: var(--noxfolio-dark-color);
}

@media (max-width: 768px) {
    .lightbox-container {
        max-width: 98vw;
        max-height: 98vh;
        padding: 10px;
    }
    
    .lightbox-content img {
        max-width: 95vw;
        max-height: 85vh;
        min-width: 80vw;
        min-height: 50vh;
        touch-action: pan-x pan-y;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        touch-action: manipulation;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        touch-action: manipulation;
    }
}