/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.hero-image,
.hero-image-overlay,
.hero-image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: grayscale(30%) contrast(120%);
}

.hero-image {
    opacity: 0.5;
    filter: grayscale(40%) contrast(110%);
}

.hero-image-overlay {
    opacity: 0.25;
    filter: hue-rotate(340deg) saturate(200%) contrast(130%);
}

.hero-image-accent {
    opacity: 0.15;
    filter: hue-rotate(330deg) saturate(300%) contrast(140%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(255, 0, 60, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: 80px;
    line-height: 0.8;
    margin-bottom: 20px;
    position: relative;
}

.hero-title .glitch {
    position: relative;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 0, 60, 0.7),
        0 0 80px rgba(255, 0, 60, 0.4);
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tagline-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff003c;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.tagline-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 0, 60, 0.1);
    border-color: rgba(255, 0, 60, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.3);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ff003c;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.7);
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: #ffffff;
    opacity: 0.7;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #ff003c;
    border-radius: 2px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 26px; opacity: 0; }
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 0, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}

/* ===== GLITCH EFFECT ===== */
.glitch {
    position: relative;
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 0, 60, 0.7),
        0 0 80px rgba(255, 0, 60, 0.4);
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff003c;
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #ffffff;
    animation: glitch-anim2 3s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(255, 0, 60, 0.7),
        0 0 80px rgba(255, 0, 60, 0.4); }
    50% { text-shadow:
        2px 2px 0px #ff003c,
        -2px -2px 0px #ffffff; }
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    10% { clip: rect(12px, 9999px, 88px, 0); }
    20% { clip: rect(72px, 9999px, 134px, 0); }
    30% { clip: rect(44px, 9999px, 166px, 0); }
    40% { clip: rect(22px, 9999px, 99px, 0); }
    50% { clip: rect(66px, 9999px, 144px, 0); }
    60% { clip: rect(33px, 9999px, 111px, 0); }
    70% { clip: rect(55px, 9999px, 177px, 0); }
    80% { clip: rect(11px, 9999px, 66px, 0); }
    90% { clip: rect(88px, 9999px, 155px, 0); }
    100% { clip: rect(22px, 9999px, 77px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(77px, 9999px, 22px, 0); }
    10% { clip: rect(155px, 9999px, 88px, 0); }
    20% { clip: rect(66px, 9999px, 11px, 0); }
    30% { clip: rect(177px, 9999px, 55px, 0); }
    40% { clip: rect(111px, 9999px, 33px, 0); }
    50% { clip: rect(144px, 9999px, 66px, 0); }
    60% { clip: rect(99px, 9999px, 22px, 0); }
    70% { clip: rect(166px, 9999px, 44px, 0); }
    80% { clip: rect(88px, 9999px, 12px, 0); }
    90% { clip: rect(44px, 9999px, 166px, 0); }
    100% { clip: rect(44px, 9999px, 44px, 0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 15px 35px;
    border: 1px solid #ff003c;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: rgba(255, 0, 60, 0.15);
    color: #ffffff;
    border-color: #ff003c;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

.btn-primary:hover {
    background: rgba(255, 0, 60, 0.3);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.6);
    transform: translateY(-2px);
    border-color: #ff3366;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* ===== SECTION BASE ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ff003c;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 0, 60, 0.5);
}

.section-tag::before {
    left: -40px;
}

.section-tag::after {
    right: -40px;
}

.section-title {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.title-accent {
    color: #ff003c;
    text-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-block h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff003c;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.text-block h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 1px;
    background: #ff003c;
    box-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
}

.text-block p {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border: 1px solid rgba(255, 0, 60, 0.3);
    overflow: hidden;
    height: 500px;
}

.parallax-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(50%) contrast(120%) brightness(0.8);
    transition: transform 0.1s ease;
}

.image-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 0, 60, 0.1) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 75%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(255, 0, 60, 0.03) 0%,
        transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 40px;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 0, 60, 0.05);
    border-color: rgba(255, 0, 60, 0.4);
    transform: translateY(-10px);
    box-shadow:
        0 0 30px rgba(255, 0, 60, 0.2),
        inset 0 0 30px rgba(255, 0, 60, 0.1);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ff003c;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; border-color: #ff003c; }
    50% { transform: scale(1.2); opacity: 0.2; border-color: #ff3366; }
    100% { transform: scale(0.8); opacity: 0.5; border-color: #ff003c; }
}

.icon-glitch {
    position: relative;
    z-index: 2;
    font-size: 32px;
    color: #ff003c;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
    animation: icon-glitch-anim 4s infinite;
}

@keyframes icon-glitch-anim {
    0%, 100% { transform: translate(0); }
    5% { transform: translate(-2px, 2px); }
    10% { transform: translate(-2px, -2px); }
    15% { transform: translate(2px, 2px); }
    20% { transform: translate(2px, -2px); }
    25% { transform: translate(0); }
}

.service-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

.service-content p {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
}

.meta-item {
    color: #ff003c;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 0, 60, 0) 0%,
        rgba(255, 0, 60, 0.05) 50%,
        rgba(255, 0, 60, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.portfolio-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 450px;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    border-color: rgba(255, 0, 60, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.3);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(40%) contrast(120%);
    transition: transform 0.1s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 0, 60, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    width: 100%;
}

.portfolio-info h3 {
    font-size: 24px;
    word-break: break-word;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
}

.portfolio-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
}

/* ===== PRESS SECTION ===== */
.press-section {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(255, 0, 60, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.press-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.press-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ff003c;
    padding: 30px;
    transition: all 0.3s ease;
}

.press-card:hover {
    background: rgba(255, 0, 60, 0.05);
    border-color: rgba(255, 0, 60, 0.3);
    border-left-color: #ff3366;
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
}

.press-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    color: #ff003c;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.press-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
}

.press-excerpt {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.press-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.press-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    color: #ffffff;
    background: rgba(255, 0, 60, 0.15);
    border: 1px solid rgba(255, 0, 60, 0.3);
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 2px;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff003c;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.press-link:hover {
    color: #ff3366;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.press-link:hover .link-arrow {
    transform: translateX(5px);
}

.press-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.cta-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 30px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #000000;
    position: relative;
    padding: 100px 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(255, 0, 60, 0.05) 0%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-info p {
    font-size: 16px;
    color: #ff003c;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 0, 60, 0.3);
    background: rgba(255, 0, 60, 0.03);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff003c;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    background: rgba(255, 0, 60, 0.2);
    border-color: #ff003c;
    color: #ff003c;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.social-link img {
    max-height: 70%;
    max-width: 70%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff003c;
    background: rgba(255, 0, 60, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    min-height: 150px;
}

/* ===== KEN BURNS ANIMATION ===== */
.ken-burns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite;
    will-change: transform;
}

.ken-burns.hero-image {
    animation-duration: 25s;
}

.ken-burns.hero-image-overlay {
    animation-duration: 30s;
    animation-delay: 2s;
}

.ken-burns.hero-image-accent {
    animation-duration: 35s;
    animation-delay: 4s;
}

.ken-burns.portfolio-img {
    animation-duration: 15s;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(2%, -2%);
    }
    50% {
        transform: scale(1.15) translate(0, 0);
    }
    75% {
        transform: scale(1.08) translate(-2%, 2%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

/* ===== PARALLAX BANNER PLACEHOLDERS ===== */
.parallax-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin: 40px 0;
    border: 1px solid rgba(255, 0, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(255, 0, 60, 0.2) 100%);
    z-index: 1;
}

.parallax-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.parallax-banner .banner-content h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.parallax-banner .banner-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
}

.parallax-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(60%) contrast(130%) brightness(0.7);
    z-index: 0;
}

.parallax-banner .parallax-banner-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 0, 60, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%);
    mix-blend-mode: overlay;
    z-index: 0;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 50px;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 40px;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        display: none;
    }

    .section-container {
        padding: 60px 20px;
    }

    .hero-content {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===== TILT EFFECT ===== */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}
