:root {
    --bg-color: #0c0d11;
    --surface-color: #161821;
    --surface-light: #212431;
    --text-color: #ffffff;
    --text-muted: #a1a3b1;
    --accent-color: #ff3366;
    --accent-gradient: linear-gradient(135deg, #ff3366 0%, #ff8833 100%);
    --font-family: 'Exo 2', sans-serif;
    --nav-height: 100px;
    --nav-height-mobile: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-gradient);
    color: white;
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Dynamic Title Effects --- */
.scrolling-words {
    height: 1.2em;
    overflow: hidden;
    position: relative;
    color: var(--accent-color);
}

.scrolling-words span {
    display: block;
    height: 100%;
    animation: spinWords 9s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2em;
}

@keyframes spinWords {
    0%, 25% { transform: translateY(0); }
    33%, 58% { transform: translateY(-100%); }
    66%, 91% { transform: translateY(-200%); }
    100% { transform: translateY(0); }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
}

.accent {
    color: var(--accent-color);
}

.accent-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.dynamic-text {
    display: inline-block;
    background: linear-gradient(90deg, #ff3366, #ff8833);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite alternate;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, #ff8833 0%, #ff3366 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: rgba(255, 51, 102, 0.1);
    color: white;
}

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(12, 13, 17, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .glass-nav {
        height: var(--nav-height-mobile);
    }
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links > li > a:hover {
    color: var(--accent-color);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    font-family: inherit;
    position: relative;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--accent-color);
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    width: 100%;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(12, 13, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--accent-color);
    background: rgba(255, 51, 102, 0.05);
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

/* --- Unified Hero System --- */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 120px;
}

#home.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    justify-content: flex-start;
    text-align: left;
    padding-left: 8%;
}

.hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 10;
}

#home .hero-content {
    margin: 0;
    text-align: left;
}

#home .hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: var(--text-muted);
}

#home .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

#home .hero-cta {
    justify-content: flex-start;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-accent {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
    animation: pulseBg 8s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
    animation: float 15s infinite alternate ease-in-out;
}

.shape-1 { background: rgba(255, 51, 102, 0.2); width: 600px; height: 600px; top: -10%; right: -5%; }
.shape-2 { background: rgba(255, 136, 51, 0.15); width: 500px; height: 500px; bottom: -10%; left: -5%; }
.shape-3 { background: rgba(136, 51, 255, 0.15); width: 400px; height: 400px; top: 30%; left: 20%; }

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 450px;
        padding: 140px 20px 140px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        letter-spacing: -1px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Sections */
.section {
    padding: 120px 5%;
    position: relative;
    z-index: 2;
}

.dark-section {
    background-color: var(--surface-color);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Global Swoop Reveal System */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) !important; /* Energetic spring-pop! */
}

.reveal, .reveal-up { transform: translateY(80px) scale(0.9); }
.reveal-left { transform: translateX(-80px) scale(0.9); }
.reveal-right { transform: translateX(80px) scale(0.9); }

.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.section-header {
    margin-bottom: 80px;
}

/* Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 24px;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    background: var(--surface-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255, 51, 102, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-gradient);
    color: white;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 30px;
}

.service-features li {
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.service-features li::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Text doesn't need its own override anymore */

.about-text .lead {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Visual doesn't need its own override anymore */

.about-img-container {
    width: 100%;
    height: 480px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%; /* Crops to the upper body segment */
    filter: brightness(0.85) contrast(1.1) grayscale(60%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-container:hover .about-img {
    transform: scale(1.03);
    filter: brightness(0.95) contrast(1.1) grayscale(20%);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    /* Blend the grey background into the dark website container */
    background: linear-gradient(to top, var(--surface-color) 0%, rgba(22, 24, 33, 0.6) 20%, transparent 60%),
                linear-gradient(45deg, rgba(255, 51, 102, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.glitch-effect {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    background: var(--surface-light);
    transform: translateY(-10px) !important;
}

.pricing-card:hover .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card:hover .btn-outline:hover {
    border-color: var(--accent-color);
}

.pricing-card.popular {
    background: linear-gradient(to bottom, rgba(255, 51, 102, 0.05) 0%, var(--surface-color) 100%);
    border-color: rgba(255, 51, 102, 0.3);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px) !important;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 40px;
    transform: translateY(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #050505;
    padding: 100px 5% 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 51, 102, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 400px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
}

.footer-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-vertical a, .footer-links-vertical p {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links-vertical a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Responsive */


/* Custom Additions */

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 1000px;
    margin: 0 auto;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    background: rgba(255, 51, 102, 0.1);
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(255, 51, 102, 0.2);
    border-color: transparent;
}

/* Marquee */
.marquee-container {
    position: absolute;
    bottom: 30px;
    left: -5%;
    width: 110vw;
    overflow: hidden;
    display: flex;
    padding: 15px 0;
    background: rgba(22, 24, 33, 0.6);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    z-index: 5;
    transform: rotate(-3deg);
}

.marquee-container::-webkit-scrollbar,
.marquee-content::-webkit-scrollbar {
    display: none !important;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 15px;
    white-space: nowrap;
}

.marquee-content .dot {
    color: var(--accent-color);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* hero background accents & particles */
.particle.p-1 { position: absolute; top: 10%; right: 20%; width: 6px; height: 6px; background: var(--accent-color); border-radius: 50%; opacity: 0.6; animation: floatParticle 8s infinite ease-in-out; }
.particle.p-2 { position: absolute; top: 50%; right: 35%; width: 4px; height: 4px; background: #fff; border-radius: 50%; opacity: 0.3; animation: floatParticle 9s infinite ease-in-out reverse; }
.particle.p-3 { position: absolute; bottom: 40%; right: 15%; width: 8px; height: 8px; background: rgba(255, 136, 51, 1); border-radius: 50%; opacity: 0.5; animation: floatParticle 10s infinite ease-in-out 1s; }
.particle.p-4 { position: absolute; top: 25%; right: 5%; width: 5px; height: 5px; background: rgba(136, 51, 255, 0.8); border-radius: 50%; opacity: 0.4; animation: floatParticle 7s infinite ease-in-out reverse 1.5s; }

.shape {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

.shape-1 { background: rgba(255, 51, 102, 0.15); width: 600px; height: 600px; top: -10%; right: -5%; animation: float 15s infinite ease-in-out; }
.shape-2 { background: rgba(255, 136, 51, 0.1); width: 500px; height: 500px; bottom: -10%; left: -5%; animation: float 12s infinite ease-in-out reverse; }
.shape-3 { background: rgba(136, 51, 255, 0.1); width: 400px; height: 400px; top: 30%; left: 20%; animation: float 20s infinite ease-in-out; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* FAQ & Form Styles Additions */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

/* Dynamic Floating Objects */
@keyframes floatObj {
    0% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-30px) rotate(calc(var(--rot, 0deg) + 5deg)); }
    100% { transform: translateY(10px) rotate(calc(var(--rot, 0deg) - 5deg)); }
}
/* Global Hero Decorations */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Home Page Positionings (Mainly Right Side) */
#home .shape-fx-1 { top: 15%; right: 15%; width: 150px; height: 150px; border-radius: 30px; animation: floatObj 8s infinite alternate ease-in-out; --rot: -10deg; }
#home .shape-fx-2 { bottom: 30%; right: 8%; width: 120px; height: 120px; border-radius: 20px; animation: floatObj 10s infinite alternate-reverse ease-in-out; --rot: 15deg; }
#home .shape-fx-3 { top: 40%; right: 25%; width: 90px; height: 90px; border-radius: 50%; animation: floatObj 11s infinite alternate ease-in-out; background: rgba(255, 51, 102, 0.05); --rot: 0deg; }

/* Inner Page Positionings (Balanced Symmetry) */
.hero:not(#home) .shape-fx-1 { top: 20%; left: 10%; width: 120px; height: 120px; border-radius: 24px; animation: floatObj 9s infinite alternate ease-in-out; --rot: -15deg; }
.hero:not(#home) .shape-fx-2 { bottom: 25%; right: 10%; width: 100px; height: 100px; border-radius: 20px; animation: floatObj 11s infinite alternate-reverse ease-in-out; --rot: 20deg; }
.hero:not(#home) .shape-fx-3 { top: 15%; right: 20%; width: 80px; height: 80px; border-radius: 50%; animation: floatObj 10s infinite alternate ease-in-out; background: rgba(255, 51, 102, 0.05); --rot: 0deg; }

/* Particles Alignment */
#home .particle { right: 20%; }
.hero:not(#home) .particle:nth-child(even) { left: 15%; }
.hero:not(#home) .particle:nth-child(odd) { right: 15%; }


@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-15px); }
}

/* Premium Portfolio Slider */
.slider-section {
    width: 100%;
    position: relative;
}

.slider-wrapper {
    position: relative;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1400px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-color);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 4rem 4rem 4rem 6rem;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 13, 17, 0.95) 0%, rgba(12, 13, 17, 0.4) 50%, rgba(12, 13, 17, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.2, 1) 0.3s;
    max-width: 600px;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    z-index: 2;
    line-height: 1;
}

.slide-category {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    display: inline-block;
    font-weight: 600;
    background: rgba(255, 51, 102, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.slide-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-btn {
    padding: 0.875rem 2.5rem;
    background: white;
    color: #0c0d11;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.3);
    background: #e2e8f0;
}

.slide-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.slide-btn:hover svg {
    transform: translateX(4px);
}

/* Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(22, 24, 33, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 10px 15px -3px rgba(255, 51, 102, 0.5);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Pagination Line style */
.pagination-container {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.pagination-container .dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.pagination-container .dot::after {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: 0;
    right: 0;
}

.pagination-container .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.pagination-container .dot.active {
    background: var(--accent-color);
    width: 50px;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

/* =========================================================================
   RESPONSIVE DESIGN (All Breakpoints)
   ========================================================================= */

/* 1) Smartphone: bis 480px */
@media (max-width: 480px) {
    .section { padding: 60px 5%; }
    h1.hero-title { font-size: clamp(2.2rem, 12vw, 3rem); margin-top: 10px; line-height: 1.1; }
    .hero-subtitle { font-size: 1.05rem; line-height: 1.6; max-width: 100%; }
    #home.hero { padding-left: 5%; padding-right: 5%; }
    
    .nav-links {
        position: fixed; top: var(--nav-height-mobile); right: -100%;
        width: 100%; height: calc(100vh - var(--nav-height-mobile));
        background: rgba(12, 13, 17, 0.95); backdrop-filter: blur(20px);
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 40px 10%; overflow-y: auto; transition: right 0.4s ease; gap: 20px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.3rem; }
    .nav-links .lang-switcher { padding: 6px 15px; margin-top: 10px; }
    .nav-links .lang-switcher .lang-btn { font-size: 1rem; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .dropdown { width: 100%; text-align: left; }
    .dropdown-menu {
        position: relative; top: 0; box-shadow: none; background: transparent;
        border: none; min-width: 100%; display: none; padding-left: 20px;
        margin-top: 15px; border-left: 2px solid rgba(255, 255, 255, 0.1);
    }
    .dropdown.active .dropdown-menu { display: block; animation: slideRight 0.3s ease forwards; }
    .dropdown-menu li a { text-align: left; padding: 10px 0; font-size: 1.1rem; color: var(--text-muted); }
    
    .hero-cta { flex-direction: column; width: 100%; gap: 10px; }
    .btn { text-align: center; width: 100%; padding: 12px 24px; font-size: 1rem; }
    .nav-right { gap: 10px; }
    .marquee-container { padding: 10px 0; bottom: 20px; transform: rotate(-2deg); }
    .marquee-content span { font-size: 0.9rem; }
    .custom-cursor { display: none !important; }
    
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-img-container { height: 300px; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular.visible { transform: translateY(0); }
    
    .pricing-grid-2 { grid-template-columns: 1fr !important; }
    .floating-card { display: none !important; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .social-links { justify-content: center; }
    .footer-brand p { margin: 0 auto 20px; }
}

/* 2) 481px - 768px: Tablets (Hochformat) */
@media (min-width: 481px) and (max-width: 768px) {
    .section { padding: 80px 5%; }
    h1.hero-title { font-size: 3.5rem; }
    
    .nav-links {
        position: fixed; top: var(--nav-height-mobile); right: -100%;
        width: 100%; height: calc(100vh - var(--nav-height-mobile));
        background: rgba(12, 13, 17, 0.95); backdrop-filter: blur(20px);
        flex-direction: column; align-items: flex-start; justify-content: flex-start;
        padding: 60px 10%; overflow-y: auto; transition: right 0.4s ease; gap: 30px;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.5rem; }
    .nav-links .lang-switcher { padding: 6px 15px; margin-top: 10px; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .dropdown { width: 100%; text-align: left; }
    .dropdown-menu {
        position: relative; top: 0; box-shadow: none; background: transparent;
        border: none; min-width: 100%; display: none; padding-left: 20px;
        margin-top: 15px; border-left: 2px solid rgba(255, 255, 255, 0.1);
    }
    .dropdown.active .dropdown-menu { display: block; animation: slideRight 0.3s ease forwards; }
    .dropdown-menu li a { text-align: left; padding: 10px 0; font-size: 1.2rem; }
    
    .hero-cta { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .btn { text-align: center; }
    .nav-right { gap: 15px; }
    .custom-cursor { display: none !important; }
    
    .about-layout { grid-template-columns: 1fr; gap: 50px; }
    .about-img-container { height: 400px; }
    .pricing-card.popular { transform: scale(1); }
    
    .pricing-grid-2 { grid-template-columns: 1fr !important; }
    .floating-card { display: none !important; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .social-links { justify-content: center; }
    .footer-brand p { margin: 0 auto 30px; }
}

/* 3) 769px - 1024px: Tablets (Querformat) und kleine Laptops */
@media (min-width: 769px) and (max-width: 1024px) {
    .section { padding: 90px 5%; }
    .nav-links { gap: 20px; }
    .nav-links > li > a { font-size: 1rem; }
    .nav-right { gap: 20px; }
    
    .about-layout { grid-template-columns: 1fr; gap: 60px; }
    .about-img-container { height: 450px; }
    
    .pricing-card.popular { transform: scale(1.02); }
    .pricing-grid-2 { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    
    .footer-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* 4) 1025px - 1200px: Normale Desktops */
@media (min-width: 1025px) and (max-width: 1200px) {
    .section { padding: 100px 5%; }
    .nav-links { gap: 30px; }
    
    .about-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* 5) Ab 1201px: Große Bildschirme */
@media (min-width: 1201px) {
    .hero-title { font-size: clamp(4rem, 6vw, 6rem); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- Slider Breakpoints --- */
@media (max-width: 992px) {
    .slider-container { height: 550px; }
    .slide { padding: 3rem 3rem 3rem 5rem; }
    .slide-title { font-size: 2.25rem; }
    .slider-controls { left: 10px; right: 10px; }
    .pagination-container { right: 0; left: 0; justify-content: center; bottom: 1.5rem; }
}

@media (max-width: 768px) {
    .slider-container { height: 600px; border-radius: 16px; }
    .slider-wrapper { border-radius: 20px; padding: 5px; }
    .slide { padding: 2rem; align-items: center; text-align: center; }
    .slide::before { background: linear-gradient(to top, rgba(12, 13, 17, 0.95) 0%, rgba(12, 13, 17, 0.8) 50%, rgba(12, 13, 17, 0.4) 100%); }
    .slide-title { font-size: 2rem; }
    .slide-desc { font-size: 1rem; }
    .slide-number { display: none; }
    .control-btn { display: none; }
}

@media (min-width: 1201px) {
    .slider-container { height: 600px; }
}

/* --- Photography Fullscreen Modal & Grid --- */
/* Photo Grid */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .photo-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .photo-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(12, 13, 17, 0.95), transparent);
            opacity: 0.6;
            transition: opacity 0.4s ease;
        }

        .photo-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255,51,102,0.2);
        }

        .photo-item:hover img {
            transform: scale(1.05);
        }

        .photo-item:hover::after {
            opacity: 0.9;
        }

        .photo-item-info {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .photo-item:hover .photo-item-info {
            transform: translateY(0);
            opacity: 1;
        }

        .photo-item-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 5px;
        }

        .photo-item-cat {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Modal Overlay */
        .photo-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(12, 13, 17, 0.95);
            backdrop-filter: blur(15px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 20px;
        }

        .photo-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-container {
            width: 100%;
            max-width: 1400px;
            height: 90vh;
            background: var(--surface-color);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            display: flex;
            flex-direction: row;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1);
        }

        .photo-modal.active .modal-container {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 40px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10001;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: var(--accent-color);
        }

        /* Modal Layout */
        .modal-side {
            width: 30%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow-y: auto;
            background: var(--surface-light);
        }

        .modal-middle {
            width: 70%;
            background: var(--bg-color);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Typography for Modal */
        .modal-title { font-size: 2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; }
        .modal-desc { color: var(--text-muted); line-height: 1.6; margin-bottom: 30px; }
        
        .tech-list { list-style: none; padding: 0; }
        .tech-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .tech-list li:last-child { border-bottom: none; }
        .tech-label { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
        .tech-value { font-weight: 600; font-size: 1.1rem; color: white; }

        /* Gallery Slider inside Modal */
        .gallery-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0c0d11;
        }

        .gallery-track {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.4s ease-in-out;
            will-change: transform;
        }

        .gallery-img {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(12, 13, 17, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .gallery-btn:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

        .gallery-btn.prev-btn { left: 20px; }
        .gallery-btn.next-btn { right: 20px; }

        .gallery-pagination {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-dot.active {
            background: var(--accent-color);
            transform: scale(1.3);
        }

        @media (max-width: 992px) {
            .modal-container { 
                flex-direction: column; 
                overflow-y: auto; 
                height: 90vh; 
                width: 95%; /* Make it a bit narrower to look smaller */
                margin: auto;
                display: flex; 
                align-items: stretch; 
            }
            .modal-side { width: 100%; height: auto; padding: 25px; flex-shrink: 0; }
            .modal-middle { width: 100%; height: 45vh; min-height: 300px; flex-shrink: 0; order: -1; }
            .modal-close { position: fixed; top: 5vh; right: 5%; background: rgba(0,0,0,0.6); border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; z-index: 10002; font-size: 1.5rem; line-height: 1; border: 1px solid rgba(255,255,255,0.1); }
            .ba-labels { top: 60px; left: 15px; right: 15px; }
        }

/* --- Photography Page Styles --- */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-card {
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-card.stat-1 { border-color: rgba(255,51,102,0.1); }
.stat-card.stat-2 { border-color: rgba(136,51,255,0.1); }
.stat-card.stat-3 { border-color: rgba(255,136,51,0.1); }
.stat-card.stat-4 { border-color: rgba(255,255,255,0.05); }
.stat-card h3 { font-size: 3rem; margin-bottom: 10px; }
.stat-card.stat-1 h3 { color: var(--accent-color); }
.stat-card.stat-2 h3 { color: rgba(136, 51, 255, 1); }
.stat-card.stat-3 h3 { color: rgba(255, 136, 51, 1); }
.stat-card.stat-4 h3 { color: #fff; }
.stat-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    background: #222;
}
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(to top, rgba(12, 13, 17, 0.95) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.port-type {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.port-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: var(--font-family);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.port-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-family);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
}

.portfolio-item:hover .port-type,
.portfolio-item:hover .port-title,
.portfolio-item:hover .port-date {
    transform: translateY(0);
    opacity: 1;
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}
.dynamic-text {
    display: inline-block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 5s linear infinite;
    background-size: 200% auto;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

/* Photography New Classes (Migrated from HTML) */
/* Photography Specific Header Enhancements */
.photo-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255, 136, 51, 0.08) 0%, transparent 70%);
    animation: pulseBg 6s infinite alternate ease-in-out;
    pointer-events: none; z-index: 0;
}

.photo-hero-shapes { z-index: 1; }

.photo-shape-1 { background: rgba(255, 136, 51, 0.15); top: -20%; right: 5%; width: 500px; height: 500px; animation-duration: 15s; }
.photo-shape-2 { background: rgba(255, 51, 102, 0.15); bottom: -10%; left: -5%; width: 400px; height: 400px; animation-duration: 12s; }
.photo-shape-3 { background: rgba(136, 51, 255, 0.15); right: auto; left: 25%; top: 30%; width: 300px; height: 300px; animation-duration: 20s; }

.photo-fx-1 { position: absolute; top: 25%; left: 10%; width: 120px; height: 120px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; animation: floatObj 8s infinite alternate ease-in-out; display: flex; align-items: center; justify-content: center; transform: rotate(-10deg); }
.photo-fx-2 { position: absolute; bottom: 20%; right: 15%; width: 150px; height: 150px; background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; animation: floatObj 10s infinite alternate-reverse ease-in-out; display: flex; align-items: center; justify-content: center; transform: rotate(15deg); }
.photo-fx-3 { position: absolute; top: 15%; right: 25%; width: 80px; height: 80px; background: rgba(255,136,51,0.05); border-radius: 50%; animation: floatObj 12s infinite alternate ease-in-out; backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; }

.photo-icon-1 { color: rgba(255, 136, 51, 0.5); }
.photo-icon-2 { color: rgba(255, 51, 102, 0.5); }
.photo-icon-3 { color: rgba(255,255,255,0.3); }

.particle.p-1 { position: absolute; top: 20%; left: 15%; width: 8px; height: 8px; background: rgba(255, 136, 51, 0.8); border-radius: 50%; opacity: 0.6; animation: floatParticle 8s infinite ease-in-out; }
.particle.p-2 { position: absolute; top: 60%; right: 25%; width: 5px; height: 5px; background: #fff; border-radius: 50%; opacity: 0.4; animation: floatParticle 6s infinite ease-in-out reverse; }
.particle.p-3 { position: absolute; bottom: 30%; left: 40%; width: 10px; height: 10px; background: var(--accent-color); border-radius: 50%; opacity: 0.5; animation: floatParticle 10s infinite ease-in-out 1s; }
.particle.p-4 { position: absolute; top: 40%; right: 10%; width: 6px; height: 6px; background: rgba(136, 51, 255, 0.8); border-radius: 50%; opacity: 0.8; animation: floatParticle 7s infinite ease-in-out 2s; }

/* Responsive Grid Overrides for Photography */
@media (max-width: 768px) {
    .statistics-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card { padding: 25px 15px; }
    .stat-card h3 { font-size: 2.2rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .photo-hero { height: auto; min-height: 450px; padding-top: 120px; padding-bottom: 60px; }
    .hero-content.photo-hero-content { padding: 0 5%; }
}

@media (max-width: 480px) {
    .statistics-grid { grid-template-columns: 1fr; gap: 15px; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-card { padding: 30px 20px; }
    
    /* Modal responsive updates */
    .modal-side { padding: 20px; flex: none; width: 100%; border-top: 1px solid rgba(255,255,255,0.05); }
    .modal-middle { height: 40vh; min-height: 250px; }
    .modal-title { font-size: 1.4rem; margin-bottom: 12px; }
    .modal-container { 
        height: min-content; 
        max-height: 95vh;
        width: 95%; 
        overflow-y: auto;
        flex-direction: column-reverse;
        padding-bottom: 20px;
    }
    .modal-side {
        order: 2;
    }
    .modal-middle {
        order: 1;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .modal-desc { margin-bottom: 20px; font-size: 0.95rem; line-height: 1.6; }
    .photo-hero { min-height: 350px; padding-top: 100px; }
    .modal-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 1.5rem; background: rgba(0,0,0,0.5); border-radius: 50%; }
    
    .tech-label { font-size: 0.75rem; }
    .tech-value { font-size: 1rem; }
}

.tech-side {
    background: var(--bg-color);
    border-left: 1px solid rgba(255,255,255,0.05);
}

@keyframes textShine {
    to { background-position: 200% center; }
}

/* Fullscreen Overlay Styles */
.fullscreen-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}

.fullscreen-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-overlay img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.fullscreen-overlay.active img {
    transform: scale(1);
}

.fullscreen-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20001;
    transition: all 0.3s ease;
}

.fullscreen-close:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.gallery-img {
    cursor: zoom-in;
}


/* --- Pricing Calculator --- */
.calculator-container {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.calc-progress {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 50px;
    overflow: hidden;
}

.calc-progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    width: 16.66%;
    transition: width 0.5s cubic-bezier(0.25, 1, 0.2, 1);
}

.calc-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.calc-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calc-step-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.info-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(255, 51, 102, 0.1);
}

.calc-options {
    display: grid;
    gap: 20px;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.calc-option-card {
    cursor: pointer;
    position: relative;
}

.calc-option-card input {
    position: absolute;
    opacity: 0;
}

.option-content {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calc-option-card:hover .option-content {
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateY(-5px);
}

.calc-option-card input:checked + .option-content {
    border-color: var(--accent-color);
    background: rgba(255, 51, 102, 0.05);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.1);
}

.calc-option-card.checkbox .option-content {
    text-align: left;
    align-items: flex-start;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.option-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.calc-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.calc-nav .btn {
    flex: 1;
}

/* Summary Styles */
.calc-summary {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    font-weight: 700;
    text-align: right;
}

.calc-result-box {
    text-align: center;
    padding: 40px;
    background: var(--accent-gradient);
    border-radius: 24px;
    margin-bottom: 30px;
}

.price-label {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.total-price {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.travel-costs-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0 20px;
}

/* Info Modal */
.calc-info-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calc-info-modal.active {
    display: flex;
}

.info-modal-content {
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.info-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .calculator-container {
        padding: 40px 20px;
    }
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .total-price {
        font-size: 2.5rem;
    }
}

/* --- Refined Summary Styles --- */
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.2, 1);
    animation: fadeInSlideRight 0.5s ease backwards;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateX(5px);
    position: relative;
    z-index: 10;
}

/* Summary Item Tooltip */
.summary-item[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 15px;
    background: rgba(18, 20, 27, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: tooltipFadeUp 0.3s ease forwards;
    z-index: 100;
    font-weight: 300;
    letter-spacing: 0;
}

/* Tooltip Arrow */
.summary-item[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(255, 51, 102, 0.2);
    animation: tooltipFadeUp 0.3s ease forwards;
    z-index: 101;
}

@keyframes tooltipFadeUp {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.summary-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.summary-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

.calc-result-box {
    background: var(--accent-gradient);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 500;
}

.total-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Staggered animation for summary items */
.summary-item:nth-child(1) { animation-delay: 0.1s; }
.summary-item:nth-child(2) { animation-delay: 0.2s; }
.summary-item:nth-child(3) { animation-delay: 0.3s; }
.summary-item:nth-child(4) { animation-delay: 0.4s; }
.summary-item:nth-child(5) { animation-delay: 0.5s; }

.calc-result-box {
    position: relative;
    z-index: 1;
}

.vat-info {
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Custom Range Slider --- */
.range-container {
    padding: 40px 20px;
    text-align: center;
}

#imageCountDisplay {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1;
}

#imageCountSlider {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 30px;
}

.range-markers {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.range-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.range-info {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 30px;
}

.spacer {
    height: 30px;
}

.range-markers span {
    position: absolute;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

#imageCountSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid var(--surface-color);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
    transition: all 0.2s ease;
}

#imageCountSlider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.8);
}

#imageCountSlider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #161821;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

/* --- Mobile & Tablet Optimization --- */
@media (max-width: 768px) {
    .calc-container {
        padding: 40px 20px;
    }

    .calc-options.grid-2 {
        grid-template-columns: 1fr;
    }

    .total-price {
        font-size: 2.8rem;
    }

    .option-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .calc-header h1 {
        font-size: 2.2rem;
    }

    .total-price {
        font-size: 2.2rem;
    }

    .range-markers span {
        font-size: 0.75rem;
    }

    .calc-summary {
        padding: 20px 15px;
    }

    .summary-item {
        padding: 12px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .summary-value {
        text-align: left;
        width: 100%;
    }

    .final-actions div {
        flex-direction: column;
    }

    #imageCountDisplay {
        font-size: 3rem !important;
    }

    .range-markers span {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .total-price {
        font-size: 1.8rem;
    }
    
    .calc-header h1 {
        font-size: 1.8rem;
    }
}

/* --- AI Chatbot Interface --- */
.chatbot-container {
    max-width: 800px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: rgba(22, 24, 33, 0.4);
    backdrop-filter: blur(20px);
}

.chat-header {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bot-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.bot-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
}

.bot-status {
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: 600;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-behavior: smooth;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.03), transparent);
}

.message {
    max-width: 80%;
    animation: messageSlide 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 15px 20px;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 1.5;
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 4px;
    color: white;
}

.user-message .message-content {
    background: var(--accent-gradient);
    border-bottom-right-radius: 4px;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.chat-typing {
    padding: 0 30px 15px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1s infinite alternate;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    from { transform: translateY(0); opacity: 0.4; }
    to { transform: translateY(-5px); opacity: 1; }
}

.chat-input-area {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 15px;
    align-items: center;
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

#chat-input:focus {
    border-color: rgba(255, 51, 102, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.chat-send-btn {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border: none;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .chatbot-container { height: 500px; }
    .message { max-width: 90%; }
}
