/* Web ve Dijital Varlıklar Contact Box */
.web-contact-box {
    background-color: #000000;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-contact-box .service-video,
.web-contact-box .service-card-overlay {
    display: none;
}

.web-contact-content {
    padding: 30px;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.web-contact-text {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 80%;
    font-weight: 400;
}

.web-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: black;
    transition: all 0.3s ease;
}

.web-contact-link:hover {
    background-color: black;
    color: white;
    border: 1px solid white;
}

.web-contact-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5px;
}

.web-contact-link:hover svg {
    stroke: white;
}

/* Adjust grid for the new box */
.services-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.service-card-large {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1/1;
}

/* Make sure the new box takes the same space as other service cards */
.service-card-large.web-contact-box {
    aspect-ratio: 1/1;
}

/* Contact CTA Box */
.contact-cta-box {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.contact-cta-link {
    display: block;
    background-color: #000000;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: none;
    padding: 60px 40px;
}

.contact-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 80px;
}

.contact-cta-texts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact-cta-subtitle {
    font-size: 16px;
    color: #999999;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.contact-cta-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    color: #000000;
    transition: all 0.3s ease;
}

.contact-cta-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
    stroke: #000000;
}

.contact-cta-link:hover .contact-cta-arrow {
    background-color: #000000;
    border: 1px solid #ffffff;
}

.contact-cta-link:hover .contact-cta-arrow svg {
    stroke: #ffffff;
}

/* Contact Page */
.contact-section {
  padding: 120px 0 80px;
  background: #0a0a0a;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.contact-text {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* Contact form: centered white boxes on black background */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 16px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}

.contact-textarea { min-height: 140px; resize: vertical; }

.contact-submit {
  align-self: center;
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}

.contact-submit:hover { background: #f3f4f6; }
.contact-submit:active { transform: translateY(1px); }

.contact-info-list { display: grid; gap: 16px; }
.contact-info-item { display: grid; gap: 6px; }
.contact-info-label { color: #94a3b8; font-size: 13px; letter-spacing: .02em; text-transform: uppercase; }
.contact-info-value { color: #e2e8f0; text-decoration: none; }
.contact-info-value:hover { text-decoration: underline; }

.map-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.contact-map { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 992px) {
  .contact-section { padding: 110px 0 60px; }
}

@media (max-width: 640px) {
  .form-row { flex-direction: column; }
}
/* Why Page Hero */
.why-hero {
    padding: 100px 0 60px; /* push below fixed header */
    background: #fff;
}

.why-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.why-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.why-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin: 0;
}

.why-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .why-hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .why-hero {
        padding: 120px 0 60px;
    }
    .why-hero-title {
        font-size: 32px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    background: #0a0a0a;
}

/* Video Background Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    margin-bottom: 0;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.background-video.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(20, 20, 40, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: -1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.header-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(100, 181, 246, 0.5));
    transform: scale(1.05);
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #64b5f6;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #64b5f6;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #64b5f6;
    border-radius: 1px;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    border-color: #64b5f6;
    color: #64b5f6;
    background: rgba(100, 181, 246, 0.1);
}

.lang-btn.active {
    background: #64b5f6;
    border-color: #64b5f6;
    color: white;
}

.lang-btn.active:hover {
    background: #42a5f5;
    border-color: #42a5f5;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background-color: #64b5f6;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu-overlay {
        display: block;
    }
}

/* Main Content */
.main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Override main layout for non-home pages so footer sits at bottom */
.services-page .main-content,
.why-page .main-content,
.contact-page .main-content {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: block;
    align-items: initial;
    justify-content: initial;
}

.content-container {
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.main-logo {
    margin-bottom: 40px;
}

.center-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.center-logo:hover {
    transform: scale(1.05);
}

.description {
    margin-top: 30px;
}

.description-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Text Section */
.text-section {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 80px 0;
    z-index: 10;
    margin-top: 0;
    width: 100%;
    display: block;
}

/* Ensure services page intro sits below fixed header */
.services-page .text-section {
    margin-top: 120px;
}

/* Contact page intro: dark background, white text, extra offset */
.contact-page .text-section {
    background: #0a0a0a;
    color: #ffffff;
    margin-top: 140px;
}
.contact-page .section-title {
    color: #ffffff;
}
.contact-page .section-description {
    color: rgba(255,255,255,0.85);
}

.text-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}


/* Case Studies Section */
.case-studies-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.case-studies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.case-studies-title {
    font-size: 72px;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
    letter-spacing: -2px;
    margin: 0;
    -webkit-text-stroke: 1px white;
    -webkit-text-fill-color: transparent;
}

.view-all-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background: white;
    color: #000000;
}

.case-studies-carousel {
    position: relative;
    margin-bottom: 40px;
}

.case-studies-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    padding: 20px 0;
}

.case-study-card {
    flex: 0 0 calc(25% - 15px);
    width: calc(25% - 15px);
    min-width: 0;
    height: 450px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile: horizontal scroll for case studies */
@media (max-width: 768px) {
  .case-studies-container { padding: 0 16px; }
  .case-studies-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .case-studies-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-bottom: 8px;
  }
  .case-study-card {
    flex: 0 0 80vw;
    width: 80vw;
    height: 420px;
  }
}

/* Case overlay: title always visible, description on hover */
.case-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 2;
}

.case-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.case-desc {
    color: rgba(255,255,255,0.95);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.case-study-card:hover .case-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.case-study-card:hover .case-desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

.berocca-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.berocca-screen {
    width: 100%;
    height: 100%;
    background: #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.screen-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.berocca-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.organix-card {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    position: relative;
}

.organix-pattern {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-text {
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pattern-bird {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.card-overlay-shape {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    border-radius: 25px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.card-overlay-shape .card-title {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    text-shadow: none;
    margin: 0;
}

.card-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay .card-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.awards-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.award-badge {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #ff6b6b;
}

.award-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.award-subtitle {
    font-size: 9px;
    margin-bottom: 2px;
}

.award-campaign {
    font-size: 9px;
    color: #ff6b6b;
    margin-bottom: 2px;
}

.award-year {
    font-size: 10px;
    font-weight: 700;
}

.barbie-card {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    position: relative;
}

.barbie-bus {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bus-stars {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
}

.bus-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ff69b4;
}

.bus-text {
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.bus-text:nth-of-type(1) {
    top: 60px;
    left: 20px;
}

.bus-text:nth-of-type(2) {
    top: 80px;
    left: 20px;
}

.actor-face {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(100, 181, 246, 0.8);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(100, 181, 246, 1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.case-study-descriptions {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.case-description {
    flex: 1;
}

.case-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
    text-transform: lowercase;
}

.case-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(100, 181, 246, 0.8);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: rgba(100, 181, 246, 1);
    transform: translateY(-2px);
}

/* Also at Global Section */
.also-at-global-section {
    background: white;
    padding: 80px 0;
    position: relative;
    width: 100%;
    display: block;
}

.also-at-global-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.also-at-global-title {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin-bottom: 60px;
    text-transform: lowercase;
}

.global-content-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.content-block {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.block-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Outdoor Block */
.outdoor-block {
    background: linear-gradient(135deg, #87ceeb, #98d8e8);
}

.outdoor-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #87ceeb 0%, #98d8e8 100%);
}

.building {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: #e0e0e0;
    border-radius: 8px;
}

.building-windows {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        #4a90e2 20px,
        #4a90e2 25px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        #4a90e2 30px,
        #4a90e2 35px
    );
    opacity: 0.3;
}

.billboard {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    background: #ff6b6b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billboard-content {
    text-align: center;
    color: white;
    padding: 10px;
}

.billboard-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.billboard-text {
    font-size: 10px;
    margin-bottom: 4px;
}

.global-logo {
    font-size: 12px;
    font-weight: 600;
}

.street-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: #8b4513;
}

.bus {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 60px;
    height: 30px;
    background: #dc143c;
    border-radius: 4px;
}

.pedestrians {
    position: absolute;
    bottom: 15px;
    left: 100px;
    width: 8px;
    height: 20px;
    background: #333;
    border-radius: 2px;
}

.cars {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 40px;
    height: 20px;
    background: #4169e1;
    border-radius: 3px;
}

.tree {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 40px;
    background: #228b22;
    border-radius: 0 0 10px 0;
}

/* DAX Block */
.dax-block {
    background: linear-gradient(135deg, #1e3a8a, #8b5cf6);
}

.dax-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1e3a8a 0%, #8b5cf6 100%);
}

.person-walking {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 120px;
}

.person-figure {
    position: relative;
    width: 100%;
    height: 100%;
}

.head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #fdbcb4;
    border-radius: 50%;
}

.body {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    background: #333;
    border-radius: 4px;
}

.bag {
    position: absolute;
    top: 30px;
    right: -10px;
    width: 15px;
    height: 20px;
    background: #654321;
    border-radius: 2px;
}

.earphones {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.phone {
    position: absolute;
    bottom: 20px;
    left: -5px;
    width: 12px;
    height: 20px;
    background: #000;
    border-radius: 2px;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #1e3a8a 0%, #8b5cf6 100%);
}

.purple-stripes {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 92, 246, 0.3) 10px,
        rgba(139, 92, 246, 0.3) 20px
    );
}

.block-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.block-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Services Section - New Two Card Design */
.services-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    width: 100%;
    display: block;
}

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

.services-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.service-card-large {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    height: 300px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-large .service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-video {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 2;
}

.service-card-large:hover .service-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.service-large-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin-top: 30px;
    max-width: 400px;
}

.service-card-large:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.service-hover-text {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin-bottom: 25px;
    font-weight: 400;
}

.service-hover-btn {
    background: #64b5f6;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-hover-btn:hover {
    background: #42a5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

/* Branded Events Section */
.branded-events-section {
    background: white;
    padding: 80px 0;
    position: relative;
    width: 100%;
    display: block;
}

.branded-events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.branded-events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.events-image {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #333);
    overflow: hidden;
}

.events-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.concert-scene {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a1a1a 0%, #333 100%);
}

.stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.singer {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.singer-figure {
    position: relative;
    width: 40px;
    height: 80px;
}

.singer-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #fdbcb4;
    border-radius: 50%;
}

.singer-body {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 50px;
    background: #ffb6c1;
    border-radius: 4px;
}

.microphone {
    position: absolute;
    top: 20px;
    right: -8px;
    width: 6px;
    height: 20px;
    background: #333;
    border-radius: 2px;
}

.stage-lighting {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.3;
}

.spotlight.red {
    top: 20%;
    left: 20%;
    background: radial-gradient(circle, #ff0000, transparent);
}

.spotlight.white {
    top: 10%;
    right: 30%;
    background: radial-gradient(circle, #ffffff, transparent);
}

.spotlight.red:nth-of-type(3) {
    top: 30%;
    right: 10%;
    background: radial-gradient(circle, #ff0000, transparent);
}

.led-screens {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    height: 40%;
}

.main-screen {
    position: absolute;
    top: 0;
    left: 10%;
    right: 30%;
    height: 100%;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-radius: 8px;
}

.screen-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.2) 20px,
        rgba(255, 255, 255, 0.2) 40px
    );
}

.side-screen {
    position: absolute;
    top: 0;
    right: 10%;
    width: 20%;
    height: 100%;
    background: linear-gradient(135deg, #4169e1, #1e90ff);
    border-radius: 8px;
}

.crowd-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        #333,
        #333 4px,
        #666 4px,
        #666 8px
    );
    opacity: 0.7;
}

.event-branding {
    position: absolute;
    top: 5%;
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 15;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: #ff6600;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.barclaycard-logo, .global-logo {
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 2px;
}

.stage-letters {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

.band-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: #222;
}

.instruments {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 60px;
    height: 20px;
    background: #444;
    border-radius: 2px;
}

.audience-phones {
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 40px;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        #333,
        #333 2px,
        #666 2px,
        #666 4px
    );
}

.events-text {
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f8f9fa;
}

.diagonal-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}

.text-content {
    position: relative;
    z-index: 10;
    padding: 40px;
    text-align: left;
}

.events-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.events-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    max-width: 400px;
}

.discover-button {
    background: #000000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #64b5f6;
    background: rgba(100, 181, 246, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide navigation by default on mobile */
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 16px;
        width: 100%;
        padding: 10px 0;
    }
    
    .nav-link.active::after {
        bottom: 0;
        left: 0;
        width: 3px;
        height: 100%;
    }
    
    /* Language Selector Mobile */
    .language-selector {
        margin-left: 0;
        margin-top: 30px;
        justify-content: center;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .center-logo {
        max-width: 350px;
    }
    
    .description-text {
        font-size: 16px;
    }
    
    .header-logo {
        height: 35px;
    }
    
    
    /* Branded Events Responsive */
    .branded-events-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .events-image {
        height: 300px;
    }
    
    .events-text {
        height: 300px;
    }
    
    .text-content {
        padding: 30px;
    }
    
    .events-title {
        font-size: 28px;
    }
    
    .events-description {
        font-size: 14px;
    }
    
    /* Services Responsive */
    .services-grid-two {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .service-card-large {
        height: 400px;
    }
    
    .service-large-title {
        font-size: 24px;
    }
    
    .service-hover-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .center-logo {
        max-width: 280px;
    }
    
    .description-text {
        font-size: 14px;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .text-section {
        padding: 60px 0;
    }
    
    .case-studies-title {
        font-size: 48px;
    }
    
    .case-studies-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .case-study-card {
        min-width: 280px;
        height: 380px;
    }
    
    .case-study-descriptions {
        flex-direction: column;
        gap: 20px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .case-studies-title {
        font-size: 36px;
    }
    
    .case-study-card {
        min-width: 220px;
        height: 320px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-overlay .card-title {
        font-size: 28px;
    }
    
    .also-at-global-title {
        font-size: 28px;
    }
    
    .global-content-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-block {
        height: 300px;
    }
    
    .block-title {
        font-size: 20px;
    }
    
    .also-at-global-title {
        font-size: 24px;
    }
    
    .content-block {
        height: 250px;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .billboard-title {
        font-size: 12px;
    }
    
    .billboard-text {
        font-size: 9px;
    }
    
    .global-logo {
        font-size: 10px;
    }
    
    
    
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-container {
    animation: fadeIn 1s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.nav-link:focus {
    outline: 2px solid #64b5f6;
    outline-offset: 2px;
    border-radius: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .video-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .nav-link {
        color: #ffffff;
    }
    
    .description-text {
        color: #ffffff;
    }
}

/* Footer Styles */
.footer {
    background-color: #000000;
    padding: 80px 0 60px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-credits {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.footer-column-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #64b5f6;
    transform: translateX(5px);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.contact-phone {
    margin-top: 10px;
    font-weight: 500;
}

.contact-email {
    color: #64b5f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: #90caf9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #64b5f6;
    border-color: #64b5f6;
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Services Content Section */
.services-content-section {
    background: #1e3a8a;
    color: white;
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: 100px;
    width: 100%;
    display: block;
    min-height: calc(100vh - 200px);
}

.services-content-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    min-height: calc(100vh - 200px);
    height: auto;
}

/* Left Sidebar */
.services-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e3a8a;
    border-right: 2px solid #3b82f6;
}

.services-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    background: #1e3a8a;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
    height: 400px;
    width: 100%;
}

.services-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 180px;
    height: 180px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 3px solid #64b5f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 8px;
    pointer-events: none;
}

.services-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.services-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 15;
    border-radius: 8px;
}

.services-card:hover .service-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0.8;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 25;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.service-overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-overlay-text {
    font-size: 16px;
    color: white;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: 200px;
}

/* Group Photo Card */
.group-photo-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.group-photo {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
}

.building {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: #6c757d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-sign {
    font-size: 8px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.people-group {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: flex-end;
}

.person {
    width: 8px;
    height: 12px;
    border-radius: 2px;
}

.person.pink {
    background: #ff69b4;
}

/* Light Letters Card */
.light-letters-card {
    background: linear-gradient(135deg, #000, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.light-letter {
    font-size: 60px;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.light-star {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.balloons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.balloon {
    width: 15px;
    height: 20px;
    background: #ff6b6b;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Portrait Collage Card */
.portrait-collage-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 10px;
}

.portrait-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    height: 80%;
}

.portrait {
    border-radius: 4px;
    position: relative;
}

.bearded-man {
    background: linear-gradient(135deg, #8b4513, #a0522d);
}

.blonde-woman {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.bald-man {
    background: linear-gradient(135deg, #fdbcb4, #ffb6c1);
}

.dark-haired-woman {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.collage-text {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

/* Podcast Card */
.podcast-card {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 10px;
    position: relative;
}

.global-player-logo {
    font-size: 8px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.podcast-title {
    font-size: 7px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.crypto-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.bitcoin-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.crypto-text {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 4px;
    color: #000;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.2;
}

.phone-person {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone {
    width: 8px;
    height: 12px;
    background: #000;
    border-radius: 2px;
}

.person-face {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fdbcb4;
}

.pixelated {
    background: repeating-linear-gradient(
        45deg,
        #ff6b6b,
        #ff6b6b 1px,
        #4ecdc4 1px,
        #4ecdc4 2px
    );
}

.uk-flag {
    font-size: 6px;
}

.blackpool-tower {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 15px;
    height: 20px;
    background: linear-gradient(to top, #333, #666);
    border-radius: 2px;
}

/* Glitter Card */
.glitter-card {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.glitter-person {
    position: relative;
    width: 40px;
    height: 60px;
}

.glitter-suit {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #ffd700,
        #ffd700 2px,
        #ffed4e 2px,
        #ffed4e 4px
    );
    border-radius: 4px;
}

.cape-sleeves {
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        #ffd700,
        #ffd700 2px,
        #ffed4e 2px,
        #ffed4e 4px
    );
    border-radius: 4px;
}

.background-text {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 6px;
    font-weight: 600;
    color: #000;
}

.global-logo-small {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 6px;
    font-weight: 600;
    color: #000;
}

/* Black Card */
.black-card {
    background: #000;
}

/* Logos Card */
.logos-card {
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.global-studios-logo {
    font-size: 10px;
    font-weight: 700;
    color: #3b82f6;
}

.the-fellas-logo {
    text-align: center;
}

.fellas-text {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.colorful-dots {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red { background: #ff6b6b; }
.dot.blue { background: #4ecdc4; }
.dot.green { background: #45b7d1; }
.dot.yellow { background: #feca57; }

/* Polaroid Card */
.polaroid-card {
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.polaroid-photo {
    background: white;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    height: 80%;
}

.photo-people {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60%;
    margin-bottom: 5px;
}

.photo-person {
    width: 15px;
    height: 20px;
    border-radius: 2px;
}

.gray-jacket {
    background: linear-gradient(135deg, #6c757d, #868e96);
}

.orange-sweater {
    background: linear-gradient(135deg, #fd7e14, #ff922b);
}

.dark-outfit {
    background: linear-gradient(135deg, #343a40, #495057);
}

.photo-signature {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        #000 2px,
        #000 3px
    );
    border-radius: 1px;
}

/* Right Sidebar */
.services-right-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1e3a8a;
    border-left: 2px solid #3b82f6;
    padding: 20px 10px;
}

.conversation-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.social-icon.tiktok {
    background: #000;
    color: white;
}

.social-icon:hover {
    transform: scale(1.1);
}

.up-arrow {
    font-size: 20px;
    color: white;
    font-weight: bold;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #64b5f6;
    font-weight: bold;
}

.service-button {
    background: #64b5f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-button:hover {
    background: #42a5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services-content-container {
        grid-template-columns: 60px 1fr 100px;
    }
    
    .services-vertical-text {
        font-size: 36px;
        letter-spacing: 6px;
    }
    
    .conversation-text {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .services-content-section {
        margin-top: 80px;
    }
    
    .services-content-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        height: auto;
    }
    
    .services-sidebar {
        height: 60px;
        border-right: none;
        border-bottom: 2px solid #3b82f6;
    }
    
    .services-vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
        padding: 15px;
        min-height: 50vh;
        max-width: 100%;
    }
    
    .service-overlay-title {
        font-size: 14px;
    }
    
    .service-overlay-text {
        font-size: 12px;
        max-width: 150px;
    }
    
    .services-right-sidebar {
        height: 80px;
        flex-direction: row;
        border-left: none;
        border-top: 2px solid #3b82f6;
        padding: 10px 20px;
    }
    
    .conversation-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .social-icons {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .up-arrow {
        font-size: 16px;
        margin-left: 10px;
    }
}

@media (max-width: 640px) {
    .service-card-large {
        height: 200px;
    }
    
    .service-large-title {
        font-size: 24px;
    }
    
    .service-hover-content {
        margin-top: 15px;
    }
    
    .service-hover-text {
        font-size: 14px;
    }
    
    .services-main-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-main-title {
        font-size: 28px;
    }
    
    .services-main-description {
        font-size: 16px;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px;
    }
    
    .footer-center {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-container {
        padding: 0 30px;
        gap: 40px;
    }
    
    .footer-center {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo-img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-column-title {
        font-size: 10px;
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .contact-info {
        font-size: 14px;
    }
    
    /* Services Mobile */
    .service-card-large {
        height: 350px;
    }
    
    .service-card-overlay {
        padding: 30px;
    }
    
    .service-large-title {
        font-size: 20px;
    }
    
    .service-hover-text {
        font-size: 13px;
    }
    
    .service-hover-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
}
