/* ===================================
   MASAR GROUP - LIQUID GLASS THEME
   =================================== */

/* CSS Variables */
:root {
    --primary-red: #ba2232;
    --dark-bg: #0b0b10;
    --light-bg: #efefef;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glass Effects */
.glass-effect {
    background: rgba(11, 11, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.glass-button {
    background: rgba(186, 34, 50, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 34, 50, 0.4);
    transition: var(--transition);
}

.glass-button:hover {
    background: rgba(186, 34, 50, 0.4);
    border-color: rgba(186, 34, 50, 0.6);
    box-shadow: 0 0 30px rgba(186, 34, 50, 0.3);
}

/* Hoverable Cards */
.hoverable {
    position: relative;
    overflow: hidden;
}

.hoverable::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(186, 34, 50, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.hoverable:hover::before {
    width: 400px;
    height: 400px;
}

.hoverable:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(186, 34, 50, 0.2);
    border-color: rgba(186, 34, 50, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 11, 16, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(186, 34, 50, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 20px rgba(186, 34, 50, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.lang-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(186, 34, 50, 0.2);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(186, 34, 50, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b1a2a 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(186, 34, 50, 0.3);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(186, 34, 50, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(186, 34, 50, 0.5));
    }
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 40px rgba(186, 34, 50, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 60px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.light-section {
    background: var(--light-bg);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.light-section .section-title {
    color: var(--text-dark);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.light-section .section-subtitle {
    color: rgba(26, 26, 26, 0.7);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(186, 34, 50, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(6),
.services-grid .service-card:nth-child(7) {
    grid-column: span 1;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 1 / 2;
}

.services-grid .service-card:nth-child(6) {
    grid-column: 2 / 3;
}

.services-grid .service-card:nth-child(7) {
    grid-column: 3 / 4;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card:nth-child(n) {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    text-align: center;
    position: relative;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(186, 34, 50, 0.1);
    border: 2px solid rgba(186, 34, 50, 0.3);
    transition: var(--transition);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-red);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Vision Section */
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.vision-card {
    text-align: center;
    color: var(--text-dark);
}

.vision-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(186, 34, 50, 0.1);
    border: 3px solid rgba(186, 34, 50, 0.3);
    transition: var(--transition);
}

.vision-icon i {
    font-size: 48px;
    color: var(--primary-red);
}

.vision-card:hover .vision-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.vision-card:hover .vision-icon i {
    color: white;
}

.vision-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 16px;
    line-height: 1.8;
}

.values-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    color: var(--text-dark);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: var(--transition);
}

.value-icon i {
    font-size: 36px;
    color: white;
}

.value-icon.innovation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-icon.integrity {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.value-icon.excellence {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-member:hover .member-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(186, 34, 50, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-info {
    position: relative;
    z-index: 1;
}

.member-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.member-role {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

/* Showreel Section */
.showreel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.showreel-item {
    color: var(--text-dark);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showreel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showreel-info h3 {
    font-size: 16px;
    font-weight: 600;
}

.duration {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
}

/* Map Section */
.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    padding: 20px;
}

#world-map {
    width: 100%;
    height: 100%;
}

.land {
    fill: #14141b;
    stroke: #3a3a45;
    stroke-width: 0.6;
    transition: var(--transition);
}

.land.highlighted {
    stroke: white;
    stroke-width: 1.5;
}

.land.highlighted:hover {
    stroke: var(--primary-red);
    fill: rgba(186, 34, 50, 0.2);
}

.graticule {
    fill: none;
    stroke: #1a1a22;
    stroke-width: 0.4;
}

.arc {
    fill: none;
    stroke: var(--primary-red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 6 7;
    opacity: 0.4;
    animation: dashmove 5s linear infinite;
}

@keyframes dashmove {
    to {
        stroke-dashoffset: -260;
    }
}

.dot {
    fill: var(--primary-red);
    filter: url(#glow);
}

.dot-dest {
    fill: var(--primary-red);
    opacity: 0.8;
    filter: url(#glow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-dest:hover {
    opacity: 1;
    r: 8;
}

.pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        r: 4;
        opacity: 0.95;
    }
    50% {
        r: 7;
        opacity: 0.55;
    }
    100% {
        r: 4;
        opacity: 0.95;
    }
}

.zoom-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zoom-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.zoom-btn:hover {
    background: rgba(186, 34, 50, 0.3);
    border-color: var(--primary-red);
}

.map-tooltip {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    display: none;
    gap: 12px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    max-width: 220px;
    white-space: nowrap;
}

.map-tooltip.visible {
    display: flex;
}

.map-tooltip img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-name {
    font-weight: 600;
    color: white;
    font-size: 15px;
}

.tooltip-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Clients Section */
.clients-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-slider {
    display: flex;
    gap: 40px;
    animation: slide 30s linear infinite;
    padding: 20px 0;
}

.clients-slider:nth-child(2) {
    animation-direction: reverse;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(186, 34, 50, 0.1);
    border: 2px solid rgba(186, 34, 50, 0.3);
    transition: var(--transition);
}

.contact-icon i {
    font-size: 36px;
    color: var(--primary-red);
}

.contact-card:hover .contact-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-card a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-red);
}

/* Footer */
.footer {
    background: #0a0a0f;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-right: 5px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-red);
}

.footer-icon {
    display: flex;
    justify-content: flex-end;
}

.footer-icon img {
    height: 100px;
    opacity: 0.3;
    transition: var(--transition);
}

.footer-icon img:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid,
    .showreel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .about-content,
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .team-grid,
    .showreel-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-icon {
        justify-content: center;
    }
}

/* Red Social Icons in Footer */
.social-icon-red {
    background: var(--primary-red) !important;
    color: white !important;
}

.social-icon-red:hover {
    background: #9a1c2a !important;
    transform: translateY(-5px) scale(1.1);
}

/* Portfolio Category Styling */
.portfolio-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 15px auto 0;
}

/* External Link Styling */
.external-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.external-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(186, 34, 50, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: var(--transition);
}

.external-link:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(186, 34, 50, 1);
}

/* ZB Image Styling */
.zb-image {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.zb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.3);
    transition: filter 0.5s ease;
}

.zb-image:hover .zb-img {
    filter: saturate(1);
}

/* Custom Cursor - Modern Arrow */
* {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 3 L5 17 L10 12 L14 21 L16 20 L12 11 L19 11 Z" fill="%232c2c3e" stroke="%23ffffff" stroke-width="0.5"/></svg>') 5 5, auto;
}

a, button, .hoverable, [onclick] {
    cursor: pointer;
}

/* Remove glow from team member images on hover */
.team-member:hover .member-image-wrapper::before {
    opacity: 0 !important;
}

.team-member .member-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-member .member-image {
    transition: transform 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

/* Member name and role styling */
.member-name-en,
.member-role-en {
    font-size: 0.85em;
    opacity: 0.8;
    font-weight: 400;
}

/* Values section colored boxes */
.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: var(--transition);
}

.value-icon.flexibility {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.value-icon.passion {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.value-icon.innovation {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.value-icon.quality {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* TV Programs Styling */
.tv-program-card {
    overflow: hidden;
}

.tv-program-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tv-program-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 12px;
}

.tv-program-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tv-program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(186, 34, 50, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv-program-overlay i {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.tv-program-overlay p {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.tv-program-card:hover .tv-program-image img {
    transform: scale(1.1);
}

.tv-program-card:hover .tv-program-overlay {
    opacity: 1;
}

.tv-program-info {
    padding: 20px;
    text-align: center;
}

.tv-program-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
}
