/*
Theme Name: HOD Studio
Theme URI: https://hodstudio.pt/
Description: Custom WordPress theme for HOD Studio, combining Digital Web Design and Physical 3D Printing services.
Version: 1.0.0
Author: HOD Studio
Author URI: https://hodstudio.pt/
Text Domain: hodstudio
*/

/* --- Design System & Variables --- */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(18, 18, 22, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    
    /* Digital/Web Accent (Cyan-Blue-Violet) */
    --digital-primary: #00f2fe;
    --digital-secondary: #4facfe;
    --digital-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --digital-glow: rgba(0, 242, 254, 0.15);

    /* Physical/3D Accent (Gold-Amber-Orange) */
    --physical-primary: #f6d365;
    --physical-secondary: #fda085;
    --physical-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    --physical-glow: rgba(246, 211, 101, 0.15);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Base CSS & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- Header / Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(90deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.site-logo a:hover {
    opacity: 0.85;
}

.site-logo a svg {
    display: block;
}

.site-logo a:has(svg) {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.site-logo a svg text {
    text-transform: none;
    letter-spacing: normal;
    -webkit-text-fill-color: initial;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--text-primary);
}

/* --- Split Hero Homepage --- */
.split-hero-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

/* Split Column */
.split-side {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    overflow: hidden;
}

/* Vertical divider line */
.split-hero-container::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--border-color) 20%, var(--border-color) 80%, rgba(255,255,255,0) 100%);
    z-index: 10;
    pointer-events: none;
    transform: translateX(-50%);
    transition: opacity 0.5s ease;
}

/* Hover expansion */
.split-hero-container:has(.split-side.digital:hover) .split-side.physical {
    flex: 0.85;
    opacity: 0.4;
    filter: grayscale(40%);
}
.split-hero-container:has(.split-side.digital:hover) .split-side.digital {
    flex: 1.15;
}

.split-hero-container:has(.split-side.physical:hover) .split-side.digital {
    flex: 0.85;
    opacity: 0.4;
    filter: grayscale(40%);
}
.split-hero-container:has(.split-side.physical:hover) .split-side.physical {
    flex: 1.15;
}

/* Background Gradients & Grids */
.split-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.split-side:hover .split-bg {
    opacity: 0.45;
    transform: scale(1.03);
}

/* Digital Grid Background */
.digital .split-bg {
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(0, 242, 254, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(79, 172, 254, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

/* Physical Tech/Circles Background */
.physical .split-bg {
    background-image: 
        radial-gradient(circle at 70% 40%, rgba(246, 211, 101, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(253, 160, 133, 0.07) 0%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px;
}

/* Content Container */
.split-content {
    max-width: 480px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-side:hover .split-content {
    transform: translateY(-10px);
}

/* Icon Containers */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.5s ease;
}

.digital .icon-box {
    box-shadow: 0 10px 30px var(--digital-glow);
}
.physical .icon-box {
    box-shadow: 0 10px 30px var(--physical-glow);
}

.split-side:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box svg {
    width: 38px;
    height: 38px;
    transition: transform 0.5s ease;
}

.split-side:hover .icon-box svg {
    transform: scale(1.05);
}

/* Typography styles inside split */
.split-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.digital .split-title {
    background: var(--digital-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.physical .split-title {
    background: var(--physical-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.split-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.split-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Creative Premium Buttons */
.btn-studio {
    position: relative;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #ffffff;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-studio::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.digital .btn-studio::before {
    background: var(--digital-gradient);
}

.physical .btn-studio::before {
    background: var(--physical-gradient);
}

.split-side:hover .btn-studio {
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.digital .btn-studio:hover {
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.25);
}

.physical .btn-studio:hover {
    box-shadow: 0 10px 25px rgba(246, 211, 101, 0.25);
}

.split-side:hover .btn-studio::before {
    opacity: 1;
}

.split-side:hover .btn-studio {
    color: #0a0a0c;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .split-hero-container {
        flex-direction: column;
        height: auto;
    }
    .split-hero-container::after {
        display: none;
    }
    .split-side {
        width: 100%;
        min-height: 50vh;
        padding: 6rem 2rem 5rem;
    }
    .split-hero-container:has(.split-side.digital:hover) .split-side.physical,
    .split-hero-container:has(.split-side.physical:hover) .split-side.digital {
        flex: 1;
        opacity: 1;
        filter: none;
    }
    .split-hero-container:has(.split-side.digital:hover) .split-side.digital,
    .split-hero-container:has(.split-side.physical:hover) .split-side.physical {
        flex: 1;
    }
}

/* --- Studio Layout & Hero --- */
.studio-home {
    padding-top: 80px; /* Offset sticky header */
}

.studio-hero {
    position: relative;
    padding: 8rem 2rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.studio-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.3;
}

/* Digital Hero Background */
.digital-studio-home .studio-hero-bg {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
}

/* Physical Hero Background */
.physical-studio-home .studio-hero-bg {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(246, 211, 101, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(253, 160, 133, 0.08) 0%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,0.008) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px;
}

.studio-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badges */
.badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.digital-badge {
    background: rgba(0, 242, 254, 0.08);
    color: var(--digital-primary);
    border-color: rgba(0, 242, 254, 0.2);
}

.physical-badge {
    background: rgba(246, 211, 101, 0.08);
    color: var(--physical-primary);
    border-color: rgba(246, 211, 101, 0.2);
}

/* Hero Typography */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.digital-studio-home .hero-title {
    background: var(--digital-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.physical-studio-home .hero-title {
    background: var(--physical-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* CTAs Buttons */
.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-studio, .btn-secondary-studio {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.digital-studio-home .btn-primary-studio {
    background: var(--digital-gradient);
    color: #0a0a0c;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.2);
}

.digital-studio-home .btn-primary-studio:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.35);
}

.physical-studio-home .btn-primary-studio {
    background: var(--physical-gradient);
    color: #0a0a0c;
    box-shadow: 0 10px 25px rgba(246, 211, 101, 0.2);
}

.physical-studio-home .btn-primary-studio:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(246, 211, 101, 0.35);
}

.btn-secondary-studio {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary-studio:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

/* --- Sections & Cards --- */
.studio-section {
    padding: 8rem 2rem;
    border-top: 1px solid var(--border-color);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4.5rem;
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.digital-studio-home .service-card:hover .service-icon {
    color: var(--digital-primary);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.physical-studio-home .service-card:hover .service-icon {
    color: var(--physical-primary);
    border-color: rgba(246, 211, 101, 0.3);
    background: rgba(246, 211, 101, 0.05);
    box-shadow: 0 0 20px rgba(246, 211, 101, 0.15);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .studio-hero {
        padding: 6rem 1.5rem 4rem;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-primary-studio, .btn-secondary-studio {
        width: 100%;
        text-align: center;
    }
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--text-primary);
    position: relative;
}

.lang-divider {
    color: var(--border-color);
}

/* --- Contact Form Styles --- */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-info-block {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-email a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.digital-studio-home .contact-email a, 
.digital-studio-home .contact-email svg {
    color: var(--digital-primary);
}

.physical-studio-home .contact-email a, 
.physical-studio-home .contact-email svg {
    color: var(--physical-primary);
}

.contact-email a:hover {
    opacity: 0.8;
}

.email-icon {
    width: 22px;
    height: 22px;
}

/* Form Fields */
.contact-form-el {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* Contextual Glowing Focus States */
.digital-studio-home .form-group input:focus,
.digital-studio-home .form-group textarea:focus,
.digital-studio-home .form-group select:focus {
    border-color: var(--digital-primary);
    box-shadow: 0 0 15px var(--digital-glow);
}

.physical-studio-home .form-group input:focus,
.physical-studio-home .form-group textarea:focus,
.physical-studio-home .form-group select:focus {
    border-color: var(--physical-primary);
    box-shadow: 0 0 15px var(--physical-glow);
}

/* Submit Button */
.btn-submit-contact {
    padding: 1.1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: center;
    margin-top: 1rem;
}

.digital-studio-home .btn-submit-contact {
    background: var(--digital-gradient);
    color: #0a0a0c;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.2);
}

.digital-studio-home .btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.35);
}

.physical-studio-home .btn-submit-contact {
    background: var(--physical-gradient);
    color: #0a0a0c;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(246, 211, 101, 0.2);
}

.physical-studio-home .btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(246, 211, 101, 0.35);
}

.btn-submit-contact:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Alert Notification */
.contact-alert {
    padding: 1.25rem 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-align: center;
}

.contact-alert.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* General Fallback / Portal Styles */
.portal-contact-section {
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.01) 0%, transparent 60%);
}

.contact-page-template {
    padding-top: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 2rem;
    }
    .btn-submit-contact {
        width: 100%;
    }
}

/* --- Partner Referral Banner --- */
.partner-referral-banner {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.partner-banner-container {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 7, 9, 0.9) 0%, rgba(15, 15, 20, 0.95) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.05);
    animation: partnerBannerFadeIn 0.8s ease-out;
}

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

.partner-banner-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.partner-banner-close:hover {
    color: #ff4a4a;
}

.partner-banner-badge {
    margin-bottom: 1.5rem;
}

.partner-badge {
    background: rgba(0, 242, 254, 0.1);
    color: var(--digital-primary);
    border: 1px solid rgba(0, 242, 254, 0.25);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.partner-banner-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 850;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-banner-desc {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partner-banner-offer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    border-left: 2px solid var(--digital-primary);
    padding-left: 1.25rem;
}

.partner-banner-actions {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .partner-banner-container {
        padding: 2.5rem 1.5rem;
    }
    .partner-banner-title {
        font-size: 1.6rem;
    }
    .partner-banner-actions {
        flex-direction: column;
    }
    .partner-banner-actions .btn-primary-studio {
        width: 100%;
        text-align: center;
    }
}

/* --- Partner Floating Toast --- */
.partner-floating-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 380px;
    max-width: calc(100vw - 4rem);
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 16px;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.05);
    z-index: 9999;
    animation: toastSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.partner-floating-toast.toast-slide-out {
    animation: toastSlideOut 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
}

.partner-floating-toast .toast-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.partner-floating-toast .toast-close:hover {
    color: #ff4a4a;
}

.partner-floating-toast .toast-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-floating-toast .toast-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--digital-primary);
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.partner-floating-toast .toast-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
}

.partner-floating-toast .btn-toast-action {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, var(--digital-primary) 0%, var(--digital-secondary) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-floating-toast .btn-toast-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

/* --- Partner Landing Page --- */
.partner-landing-page .partner-hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.08) 0%, rgba(7, 7, 9, 0) 70%);
}

.partner-landing-page .partner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7,7,9,0.5) 0%, var(--bg-main) 100%);
    z-index: -1;
}

.partner-landing-page .partner-badge {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--digital-primary);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 50px;
    display: inline-block;
}

/* Showcase Grid Layout */
.partner-showcase-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(10,10,15,0.7) 100%);
    padding: 6rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-accent-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--digital-primary);
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.showcase-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.showcase-feature-item .feature-icon {
    width: 24px;
    height: 24px;
    color: var(--digital-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.showcase-feature-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.showcase-feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Overlapping Laptop / Mobile Mockups Layout */
.showcase-images {
    position: relative;
    width: 100%;
    height: 480px;
}

.mockup-wrapper {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.mockup-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mockup-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-hero {
    top: 0;
    left: 0;
    width: 85%;
    z-index: 2;
}

.mockup-departments {
    bottom: 2rem;
    right: 0;
    width: 75%;
    z-index: 1;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

/* Hover effects */
.mockup-hero:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 3;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 50px rgba(0, 242, 254, 0.2);
}

.mockup-departments:hover {
    transform: translateY(-8px) scale(1.02);
    z-index: 3;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 50px rgba(0, 242, 254, 0.2);
}

.partner-features-section {
    padding: 6rem 0;
    background: radial-gradient(circle at bottom, rgba(0, 242, 254, 0.05) 0%, rgba(7,7,9,0) 70%);
}

.partner-contact-section {
    padding: 6rem 0 10rem;
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-images {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .partner-floating-toast {
        bottom: 1rem;
        right: 1rem;
        width: calc(100vw - 2rem);
    }
    .showcase-images {
        height: 280px;
    }
    .mockup-hero {
        width: 90%;
    }
    .mockup-departments {
        width: 80%;
        bottom: 0;
    }
}

/* ==========================================================================
   PHYSICAL STORE & STL QUOTE STYLES
   ========================================================================== */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.product-image img {
    transition: transform 0.5s ease;
}

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

.btn-buy-product {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-forms-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.quote-form-column {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.quote-form-column h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

@media (max-width: 991px) {
    .quote-forms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.stl-quote-form select,
.stl-quote-form input[type="file"],
.stl-quote-form input[type="number"] {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease !important;
}

.stl-quote-form select option {
    background: #111;
    color: #fff;
}

.stl-quote-form select:focus,
.stl-quote-form input[type="file"]:focus,
.stl-quote-form input[type="number"]:focus {
    border-color: #8b5cf6 !important;
    outline: none !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2) !important;
}

.stl-quote-form input[type="file"] {
    padding: 8px !important;
}






