/* Google Fonts - Adding stylized fonts similar to Ahsing style */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400&family=Oswald:wght@200;300;400;500;600;700&family=Antonio:wght@100;200;300;400;500;600;700&display=swap');

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

:root {
    /* Color Palette */
    --primary-magenta: #FF38D3;  
    --hero-light-pink: #FEA6EB;
    --accent-pink: #FF0BF2;
    --cta-glow: rgba(255, 255, 255, 0.45);
    --black: #000000;
    --white: #FFFFFF;
    --section-purple: #A300A9;
    
    /* Typography */
    --font-inter: "Inter", "Helvetica", sans-serif;
    --font-display: "Bebas Neue", "Oswald", "Antonio", cursive, sans-serif;
    
    /* Spacing */
    --container-max-width: 1050px;
    --section-padding: 3rem 0;
    --mobile-breakpoint: 768px;
}

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

body {
    font-family: var(--font-inter);
    font-weight: 300;
    line-height: 1.6;
    background: linear-gradient(135deg, #FF38D3 0%, #FEA6EB 100%);
    color: white;
    overflow-x: hidden;
}

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

/* Text Opacity for Non-Headings */
p, span:not(.skill-tag), li:not(.nav-list li), label, input, textarea, select {
    opacity: 0.8;
}

/* Header Navigation - Updated with Mobile Support */
.header {
    background: #dc2626;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-family: var(--font-display);
    font-weight: bold;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--hero-light-pink);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-circles {
    display: flex;
    gap: 20px;
    margin: 40px 0 0 0;
    justify-content: flex-start;
}

.cta-button {
    background: linear-gradient(135deg, #ef0808 0%, #450143 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    padding: 18px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(255, 56, 211, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 56, 211, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.play-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cta-button span {
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-display);
}

.hero-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-main:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-description {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
}

.portfolio-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.portfolio-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-circle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.portfolio-circle.active {
    background: rgba(255, 56, 211, 0.3);
    border-color: var(--primary-magenta);
    box-shadow: 0 5px 20px rgba(255, 56, 211, 0.3);
}

.portfolio-circle span {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
}

.portfolio-section {
    display: none;
}

.portfolio-section.active {
    display: block;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.portfolio-item img:hover {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
}

.testimonial-section {
    margin-bottom: 60px;
}

.testimonial-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-description {
    text-align: center;
    font-size: 18px;
    color: white;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.social-posts.single-post {
    display: flex;
    justify-content: center;
}

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

.post-item.large {
    max-width: 400px;
}

.post-item.large img {
    width: 100%;
    height: auto;
}

.post-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.post-item img:hover {
    transform: scale(1.1);
    filter: brightness(1.1) saturate(1.2);
}

.social-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.message-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.message-item:hover {
    transform: translateY(-3px);
}

.message-content p {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Contact Section */
.artistic-contact {
    padding: var(--section-padding);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 40px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.decorative-wings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.wing {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 15px 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wing:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.wing.right-wing {
    transform: rotate(0deg);
}

.wing.right-wing:hover {
    transform: translateY(-3px);
}

.wing-text {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-display);
}

.wing-center {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.brain-drawing {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
}

.decorative-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    color: white;
    font-size: 20px;
    opacity: 0.6;
    animation: sparkle 3s ease-in-out infinite;
}

.star-1 { top: 10%; left: 15%; animation-delay: 0s; }
.star-2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.star-3 { top: 40%; left: 10%; animation-delay: 1s; }
.star-4 { top: 60%; right: 15%; animation-delay: 1.5s; }
.star-5 { bottom: 20%; left: 25%; animation-delay: 0.3s; }
.star-6 { bottom: 30%; right: 30%; animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.random-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.random-star {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    animation: sparkle 4s ease-in-out infinite;
}

.star-random-1 { top: 15%; left: 8%; animation-delay: 0s; }
.star-random-2 { top: 25%; right: 12%; animation-delay: 0.8s; }
.star-random-3 { top: 45%; left: 5%; animation-delay: 1.2s; }
.star-random-4 { top: 65%; right: 8%; animation-delay: 0.4s; }
.star-random-5 { top: 80%; left: 15%; animation-delay: 1.6s; }
.star-random-6 { top: 35%; left: 85%; animation-delay: 0.6s; }
.star-random-7 { top: 55%; left: 92%; animation-delay: 1.4s; }
.star-random-8 { top: 75%; right: 25%; animation-delay: 0.2s; }

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.contact-detail {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Forms */
.contact-forms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.form-section.collaboration,
.form-section.custom-edits {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-background {
    position: relative;
    overflow: hidden;
}

.form-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.form-bg-image:hover {
    transform: scale(1.05);
}

.form-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.form-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-display);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heart-speech-bubble {
    background: rgba(255, 182, 193, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 182, 193, 0.4);
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.1);
}

.heart-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid rgba(255, 182, 193, 0.4);
}

.heart-speech-bubble p {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.zigzag-speech-bubble {
    background: rgba(144, 238, 144, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(144, 238, 144, 0.4);
    box-shadow: 0 8px 32px rgba(144, 238, 144, 0.1);
}

.zigzag-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid rgba(144, 238, 144, 0.4);
}

.zigzag-speech-bubble p {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
}

.custom-form,
.collaboration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 3px rgba(255, 56, 211, 0.2);
}

/* Custom Dropdown Component - Replaces native select for consistent cross-platform styling */
.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-selected {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    user-select: none;
    opacity: 0.8;
}

.custom-select-selected::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-selected::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select.open .custom-select-selected,
.custom-select:focus .custom-select-selected {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 0 3px rgba(255, 56, 211, 0.2);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.custom-select.open .custom-select-options {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.custom-select-option {
    padding: 15px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover,
.custom-select-option.highlighted {
    background-color: rgba(255, 56, 211, 0.3);
    color: white;
    opacity: 1;
}

.custom-select-option.selected {
    background-color: rgba(255, 56, 211, 0.2);
    color: var(--primary-magenta);
    opacity: 1;
    font-weight: 500;
}

.custom-select-option:focus {
    outline: 2px solid var(--primary-magenta);
    outline-offset: -2px;
}

.file-upload-label {
    display: inline-block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.file-upload-label:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

#file-upload {
    display: none;
}

.submit-btn {
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--hero-light-pink));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 56, 211, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 56, 211, 0.4);
}

.collaboration,
.collaboration .form-background,
.collaboration .form-bg-image {
    filter: none;
}

.collaboration .form-content {
    background: rgba(0, 0, 0, 0.5);
}

.collaboration .form-title,
.collaboration .zigzag-speech-bubble {
    color: white;
    background: transparent;
}

.collaboration .form-row input,
.collaboration .form-row select,
.collaboration .form-row textarea {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.collaboration .form-row input::placeholder,
.collaboration .form-row select::placeholder,
.collaboration .form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.collaboration .file-upload-label,
.collaboration .submit-btn {
    background: linear-gradient(135deg, var(--primary-magenta), var(--hero-light-pink));
}

.collaboration .submit-btn,
.collaboration .file-upload-label {
    border: none;
    color: white;
}

.collaboration .submit-btn:hover,
.collaboration .file-upload-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 56, 211, 0.4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Image Styling with Enhanced Hover Effects */
img {
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced hover effects for all images - EXCLUDING modal images */
img:not(.modal-content):hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Special hover effects for portfolio items */
.portfolio-item img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.15) contrast(1.1) saturate(1.2);
}

/* Special hover effects for testimonial images */
.post-item img:hover {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.15) hue-rotate(5deg);
}

/* Form background images - no hover effect to prevent conflicts */
.form-bg-image:hover {
    transform: scale(1.02);
    filter: none;
}

/* Modal images - NO hover effects */
.modal-content:hover {
    transform: translate(-50%, -50%) !important;
    filter: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Modal Styling */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(5px) !important;
}

.modal[style*="display: block"] {
    display: block !important;
}

/* Modal Content (Full Image) */
.modal-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000000;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close:hover,
.close:focus {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Animation for Modal */
.modal.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}

/* Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Ensure proper mobile layout */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Fix any potential layout shifts */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Improve image loading on mobile */
    img {
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
    
    /* Better mobile hero section spacing */
    .hero {
        padding: 100px 0 40px;
    }
    
    /* Mobile section spacing */
    section {
        padding: 40px 0;
    }
    
    .about, .portfolio, .testimonials, .artistic-contact {
        padding: 40px 0;
    }
    
    /* Mobile container improvements */
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 120px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-circles {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        font-size: 14px;
        min-height: 48px;
        border-radius: 25px;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-image-main {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 16px;
        text-align: left;
        padding: 0 10px;
        line-height: 1.8;
    }
    
    /* Portfolio Section Mobile */
    .portfolio-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .portfolio-nav {
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .portfolio-circle {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 0 5px;
    }
    
    .portfolio-item {
        min-height: 150px;
    }
    
    .portfolio-item img {
        height: 150px;
        object-fit: cover;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    /* Testimonials Mobile */
    .testimonial-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .testimonial-description {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .social-posts {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
    
    .social-posts.single-post {
        justify-content: center;
        padding: 0 20px;
    }
    
    .post-item.large {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Contact Section Mobile */
    .contact-main-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .decorative-wings {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .wing {
        width: 100%;
        height: 60px;
        padding: 15px;
        transform: rotate(0deg) !important;
        min-height: 48px;
        border-radius: 15px;
    }
    
    .wing-text {
        font-size: 14px;
        text-align: center;
    }
    
    .wing-center {
        display: none;
    }
    
    .social-icons {
        gap: 20px;
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Forms Mobile */
    .contact-forms {
        gap: 40px;
        padding: 0 10px;
    }
    
    .form-section {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 40px;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .form-background {
        display: none;
    }
    
    .form-content {
        margin: 0;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .form-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #333;
    }
    
    .heart-speech-bubble,
    .zigzag-speech-bubble {
        padding: 15px;
        font-size: 14px;
        margin-bottom: 25px;
        clip-path: none;
        background: rgba(255, 56, 211, 0.1);
        border-radius: 15px;
        border-left: 4px solid var(--primary-magenta);
    }
    
    .heart-speech-bubble p,
    .zigzag-speech-bubble p {
        color: #333;
        line-height: 1.6;
    }
    
    .form-row {
        margin-bottom: 15px;
    }
    
    .form-row input,
    .form-row textarea,
    .form-row select {
        font-size: 16px;
        padding: 12px 15px;
        border-radius: 10px;
        border: 2px solid #ddd;
        background: white;
        color: #333;
        width: 100%;
        min-height: 44px;
    }
    
    .form-row input:focus,
    .form-row textarea:focus,
    .form-row select:focus {
        border-color: var(--primary-magenta);
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 56, 211, 0.1);
    }
    
    .file-upload-label {
        background: var(--primary-magenta);
        color: white;
        border-radius: 10px;
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 14px;
        width: 100%;
        min-height: 48px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
        color: white;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Random Stars Mobile */
    .random-stars {
        display: none;
    }
    
    /* Decorative Stars Mobile */
    .decorative-stars {
        display: none;
    }
    
    /* Mobile Modal Improvements */
    .modal-content {
        max-width: 95%;
        max-height: 90%;
        margin: 5% auto;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        color: white;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Typography Improvements */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Improve touch scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile Performance Improvements */
    .portfolio-item img,
    .post-item img,
    .about-image-main,
    .hero-image img {
        will-change: auto;
    }
    
    /* Collaboration form specific mobile improvements */
    .collaboration .form-content {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: #333;
    }
    
    .collaboration .form-title {
        color: #333;
    }
    
    .collaboration .form-row input,
    .collaboration .form-row textarea,
    .collaboration .form-row select {
        background: white;
        color: #333;
        border: 2px solid #ddd;
        border-radius: 10px;
    }
    
    .collaboration .form-row input::placeholder,
    .collaboration .form-row textarea::placeholder,
    .collaboration .form-row select::placeholder {
        color: #666;
    }
    
    .collaboration .form-row input:focus,
    .collaboration .form-row textarea:focus,
    .collaboration .form-row select:focus {
        border-color: var(--primary-magenta);
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 56, 211, 0.1);
    }
    
    /* Custom dropdown mobile styles */
    .custom-select-selected {
        font-size: 16px !important;
        padding: 12px 15px;
    }
    
    .custom-select-options {
        max-height: 300px;
    }
    
    .custom-select-option {
        padding: 12px 15px;
        font-size: 16px !important;
    }
    
    .collaboration .file-upload-label {
        background: var(--primary-magenta);
        color: white;
    }
    
    .collaboration .submit-btn {
        background: linear-gradient(135deg, var(--primary-magenta), var(--accent-pink));
        color: white;
    }
    
    /* Mobile-specific navigation improvements */
    .mobile-nav {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* Improve mobile performance */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better mobile button styles */
    button, .cta-button, .portfolio-circle, .wing, .submit-btn {
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Mobile safe area handling for newer devices */
    .header {
        padding-top: max(12px, env(safe-area-inset-top));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    /* Prevent mobile zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .social-posts {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .about-title,
    .portfolio-title,
    .contact-main-title {
        font-size: 2rem;
    }
    
    .form-content {
        padding: 20px 15px;
    }
}

/* Footer Styling */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--primary-magenta), var(--hero-light-pink), var(--tertiary-pink), var(--primary-blue));
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    padding: 80px 0 40px;
    text-align: center;
    overflow: hidden;
    /* Make background 40% dimmer */
    filter: brightness(0.6);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

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

.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: 0.2em;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
}

.footer-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.footer-social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.1);
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-watermark {
        font-size: 8rem;
        opacity: 0.05;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
} 