/* ============================================
   Font Face Declarations
   ============================================ */
@font-face {
    font-family: 'Fenotype Praktika';
    src: url('fonts/Fenotype - Praktika Black Extended.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Variables (Color Palette)
   ============================================ */
:root {
    --primary-yellow: #febc11;
    --secondary-black: #252527;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-black);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============================================
   Navigation Bar Styles
   ============================================ */
.navbar {
    background-color: var(--secondary-black);
    border-bottom: 1px solid rgba(254, 188, 17, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ============================================
   Logo Styles
   ============================================ */
.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ============================================
   Navigation Menu Styles
   ============================================ */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link .chevron {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover .chevron {
    opacity: 1;
}

/* ============================================
   Call-to-Action Button Styles
   ============================================ */
.cta-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ffc832;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 188, 17, 0.3);
}

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

.plus-icon {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

/* ============================================
   Banner Section Styles
   ============================================ */
.banner {
    background-color: var(--secondary-black);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flip Card Styles */
.flip-card-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    padding: 2rem;
}

.flip-card {
    width: 350px;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Front face - Meta */
.flip-card-front {
    transform: rotateY(0deg) translateZ(175px);
}

/* Left face - Instagram */
.flip-card-left {
    transform: rotateY(-90deg) translateZ(175px);
}

/* Top face - WhatsApp */
.flip-card-top {
    transform: rotateX(90deg) translateZ(175px);
}

/* Bottom face - Google */
.flip-card-bottom {
    transform: rotateX(-90deg) translateZ(175px);
}

.flip-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}

.flip-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.flip-card-face:hover .flip-logo-img {
    transform: scale(1.1);
}

.flip-logo-text {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--secondary-black);
    letter-spacing: -0.02em;
}

/* Flip Animations */
.flip-card.flip-left {
    transform: rotateY(90deg);
}

.flip-card.flip-top {
    transform: rotateX(-90deg);
}

.flip-card.flip-bottom {
    transform: rotateX(90deg);
}

.flip-card.flip-reset {
    transform: rotateY(0deg) rotateX(0deg);
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 4rem;
    justify-content: center;
}

.banner-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-divider {
    width: 1px;
    height: 40px;
    background-color: var(--text-white);
    opacity: 0.3;
}

.agency-text {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.banner-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heading-line {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.heading-white {
    color: var(--text-white);
}

.heading-yellow {
    color: var(--primary-yellow);
}

/* ============================================
   Hero Section Styles
   ============================================ */
.hero-section {
    background-color: var(--secondary-black);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem 4rem 2rem;
    width: 100%;
}

.hero-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-heading {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-heading-yellow {
    color: var(--primary-yellow);
}

.hero-heading-white {
    color: var(--text-white);
}

.hero-description {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-button {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background-color: #ffc832;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 188, 17, 0.4);
}

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

.hero-plus-icon {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.hero-scroll-text {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.8;
}

/* ============================================
   Marquee Section Styles
   ============================================ */
.marquee-section {
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

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

.marquee-item {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--primary-yellow);
}

.marquee-star {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
    animation: starPulse 2s ease-in-out infinite;
}

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

/* ============================================
   Creatives Section Styles
   ============================================ */
.creatives-section {
    background-color: var(--secondary-black);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.creatives-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.creatives-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 0;
}

.creatives-logo {
    display: flex;
    align-items: center;
}

.creatives-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.creatives-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.creatives-heading-line {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-white);
}

.creatives-heading-yellow {
    color: var(--primary-yellow);
}

.creatives-description {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 550px;
}

.creatives-description strong {
    font-weight: 700;
    color: var(--text-white);
}

.creatives-button {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.creatives-button:hover {
    background-color: #ffc832;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 188, 17, 0.4);
}

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

.creatives-plus-icon {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.creatives-visual {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creatives-visual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
}

.creatives-visual-img.flip-animate {
    animation: flipOnScroll 1.2s ease-in-out;
}

@keyframes flipOnScroll {
    0% {
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }
    50% {
        transform: perspective(1000px) rotateY(180deg) scale(0.95);
    }
    100% {
        transform: perspective(1000px) rotateY(360deg) scale(1);
    }
}

/* ============================================
   Cards Section Styles
   ============================================ */
.cards-section {
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.cards-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-dark {
    background-color: #2a2a2a;
}

.card-yellow {
    background-color: var(--primary-yellow);
}

.card-logo {
    display: flex;
    align-items: flex-start;
}

.card-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-logo-dark {
    filter: brightness(0);
}

.card-heading {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.card-heading-yellow {
    color: var(--primary-yellow);
}

.card-heading-dark {
    color: var(--secondary-black);
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    flex-grow: 1;
}

.card-description-white {
    color: var(--text-white);
}

.card-description-dark {
    color: var(--secondary-black);
}

.card-button {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.card-button-yellow {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
}

.card-button-yellow:hover {
    background-color: #ffc832;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 188, 17, 0.4);
}

.card-button-dark {
    background-color: var(--secondary-black);
    color: var(--text-white);
}

.card-button-dark:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.card-plus-icon {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

/* ============================================
   Process Section Styles
   ============================================ */
.process-section {
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.process-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-yellow);
    margin: 0 0 2rem 0;
}

.process-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.process-card {
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.process-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-card-yellow {
    background-color: var(--primary-yellow);
}

.process-card-dark {
    background-color: #2a2a2a;
}

.process-card-number {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-card-number {
    opacity: 0.3;
    transform: scale(1.1);
}

.process-card-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
    z-index: 1;
}

.process-card-title-yellow {
    color: var(--primary-yellow);
}

.process-card-title-dark {
    color: var(--secondary-black);
}

.process-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.process-card-text-white {
    color: var(--text-white);
}

.process-card-text-dark {
    color: var(--secondary-black);
}

.process-card:nth-child(1) {
    transition-delay: 0.1s;
}

.process-card:nth-child(2) {
    transition-delay: 0.2s;
}

.process-card:nth-child(3) {
    transition-delay: 0.3s;
}

.process-card:nth-child(4) {
    transition-delay: 0.4s;
}

.process-card.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.process-card.animate:nth-child(2) {
    transition-delay: 0.2s;
}

.process-card.animate:nth-child(3) {
    transition-delay: 0.3s;
}

.process-card.animate:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============================================
   Globe Section Styles
   ============================================ */
.globe-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
}

.globe-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 188, 17, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 188, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(254, 188, 17, 0.05) 0%, transparent 70%);
    animation: backgroundPulse 8s ease-in-out infinite;
    overflow: hidden;
}

.globe-animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(254, 188, 17, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(254, 188, 17, 0.08) 0%, transparent 40%);
    animation: rotateGradient 20s linear infinite;
}

.globe-animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(254, 188, 17, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(254, 188, 17, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(254, 188, 17, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(254, 188, 17, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(254, 188, 17, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(254, 188, 17, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%, 100% 50%, 50% 0%;
    animation: starField 15s linear infinite;
    opacity: 0.6;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes starField {
    0% {
        background-position: 0% 0%, 100% 0%, 50% 100%, 0% 50%, 100% 50%, 50% 0%;
    }
    100% {
        background-position: 100% 100%, 0% 100%, 50% 0%, 100% 50%, 0% 50%, 50% 100%;
    }
}

.globe-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.globe-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.globe-heading {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.globe-heading.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: headingGlow 3s ease-in-out infinite;
}

@keyframes headingGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(254, 188, 17, 0.3), 0 0 40px rgba(254, 188, 17, 0.1);
    }
    50% {
        text-shadow: 0 0 30px rgba(254, 188, 17, 0.5), 0 0 60px rgba(254, 188, 17, 0.2);
    }
}

.globe-heading-yellow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.globe-heading:hover .globe-heading-yellow {
    transform: scale(1.1);
    color: #ffc832;
}

.globe-heading-white {
    display: inline-block;
    transition: transform 0.3s ease;
}

.globe-heading:hover .globe-heading-white {
    transform: scale(1.05);
}

.globe-heading-yellow {
    color: var(--primary-yellow);
}

.globe-heading-white {
    color: var(--text-white);
}

.globe-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
}

.globe-card {
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95) rotateY(10deg);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.globe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.globe-card:hover::before {
    left: 100%;
}

.globe-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0deg);
    animation: cardFloat 3s ease-in-out infinite;
}

.globe-card:nth-child(2).animate {
    animation-delay: 0.5s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) scale(1.01) rotateY(2deg);
    }
}

.globe-card:hover {
    transform: translateY(-12px) scale(1.05) rotateY(-5deg) !important;
    box-shadow: 0 25px 50px rgba(254, 188, 17, 0.3), 0 0 30px rgba(254, 188, 17, 0.2);
    animation: none !important;
}

.globe-card-yellow:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(254, 188, 17, 0.3);
}

.globe-card-yellow {
    background-color: var(--primary-yellow);
}

.globe-card-dark {
    background-color: rgba(42, 42, 42, 0.85);
    backdrop-filter: blur(10px);
}

.globe-card-logo {
    display: flex;
    align-items: flex-start;
}

.globe-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.globe-logo-dark {
    filter: brightness(0);
}

.globe-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.globe-card-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.globe-card-title-yellow {
    color: var(--primary-yellow);
}

.globe-card-title-dark {
    color: var(--secondary-black);
}

.globe-card-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0;
}

.globe-card-subtitle-yellow {
    color: var(--primary-yellow);
}

.globe-card-subtitle-dark {
    color: var(--secondary-black);
}

.globe-card-button {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: fit-content;
    border: none;
    cursor: pointer;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.globe-card-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.globe-card-button:hover::after {
    width: 300px;
    height: 300px;
}

.globe-card-button-yellow {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
}

.globe-card-button-yellow:hover {
    background-color: #ffc832;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 188, 17, 0.4);
}

.globe-card-button-dark {
    background-color: var(--secondary-black);
    color: var(--text-white);
}

.globe-card-button-dark:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.globe-card-plus {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.globe-card:nth-child(1) {
    transition-delay: 0.1s;
}

.globe-card:nth-child(2) {
    transition-delay: 0.2s;
}

.globe-card.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.globe-card.animate:nth-child(2) {
    transition-delay: 0.2s;
}

/* ============================================
   Services Section Styles
   ============================================ */
.services-section {
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem;
    position: relative;
}

.services-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.services-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.services-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-yellow);
    margin: 0 0 1.5rem 0;
}

.services-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-white);
    max-width: 800px;
    letter-spacing: 0.01em;
    margin: 0;
}

.services-grid-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-3d {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffc832 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(254, 188, 17, 0.4), 0 0 20px rgba(254, 188, 17, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.icon-3d svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-3d {
    color: var(--secondary-black);
}

.floating-icon:hover .icon-3d {
    transform: rotateY(15deg) rotateX(15deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(254, 188, 17, 0.6), 0 0 30px rgba(254, 188, 17, 0.3);
}

.floating-icon-meta {
    top: 15%;
    left: 5%;
    animation: floatMeta 6s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .floating-icon-meta {
        left: calc((100% - 1000px) / 2 - 80px);
    }
}

@keyframes floatMeta {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(10px, -40px) rotate(-5deg);
    }
    75% {
        transform: translate(-25px, -20px) rotate(3deg);
    }
}

.floating-icon-whatsapp {
    top: 25%;
    right: 5%;
    animation: floatWhatsApp 7s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .floating-icon-whatsapp {
        right: calc((100% - 1000px) / 2 - 80px);
    }
}

@keyframes floatWhatsApp {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(25px, 20px) rotate(-5deg);
    }
    50% {
        transform: translate(-15px, 30px) rotate(5deg);
    }
    75% {
        transform: translate(30px, 10px) rotate(-3deg);
    }
}

.floating-icon-instagram {
    bottom: 20%;
    left: 5%;
    animation: floatInstagram 8s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .floating-icon-instagram {
        left: calc((100% - 1000px) / 2 - 80px);
    }
}

@keyframes floatInstagram {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(15px, -30px) rotate(-5deg);
    }
    75% {
        transform: translate(-25px, -10px) rotate(3deg);
    }
}

.floating-icon-analytics {
    bottom: 15%;
    right: 5%;
    animation: floatAnalytics 9s ease-in-out infinite;
}

@media (min-width: 1200px) {
    .floating-icon-analytics {
        right: calc((100% - 1000px) / 2 - 80px);
    }
}

@keyframes floatAnalytics {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 30px) rotate(-5deg);
    }
    50% {
        transform: translate(-10px, 40px) rotate(5deg);
    }
    75% {
        transform: translate(25px, 20px) rotate(-3deg);
    }
}

.service-card {
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-card-standard {
    background-color: #2a2a2a;
}

.service-card-featured {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 0 30px rgba(254, 188, 17, 0.2);
    position: relative;
}

.service-card-featured:hover {
    box-shadow: 0 0 50px rgba(254, 188, 17, 0.4);
    border-color: #ffc832;
}

.service-card-creative {
    background-color: #2a2a2a;
}

.service-card-meta {
    background-color: #2a2a2a;
}

.service-card-featured.service-card-meta {
    background: linear-gradient(135deg, rgba(254, 188, 17, 0.1) 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.service-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.service-card-icon {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.service-card-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.service-card-title-yellow {
    color: var(--primary-yellow);
}

.service-card-title-dark {
    color: var(--secondary-black);
}

.service-card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-white);
    letter-spacing: 0.01em;
    flex-grow: 1;
}

.service-card-description-dark {
    color: var(--secondary-black);
}

.service-card-button {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.service-card-button-yellow {
    background-color: var(--primary-yellow);
    color: var(--secondary-black);
}

.service-card-button-yellow:hover {
    background-color: #ffc832;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 188, 17, 0.4);
}

.service-card-button-dark {
    background-color: var(--secondary-black);
    color: var(--text-white);
}

.service-card-button-dark:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.service-card-plus {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 188, 17, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

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

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.animate:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card.animate:nth-child(2) {
    transition-delay: 0.2s;
}

/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-section {
    background-color: var(--secondary-black);
    padding: 0 0 4rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 4rem;
}

.faq-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-yellow);
    text-align: center;
    margin: 0 0 4rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #333;
}

.faq-item.active {
    background-color: #333;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-yellow);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #888;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    padding-top: 1rem;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    border-top: 2px solid rgba(254, 188, 17, 0.2);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(254, 188, 17, 0.5), transparent);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 4rem 1.5rem 4rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.footer-logo {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(254, 188, 17, 0.5));
}

.footer-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    max-width: 450px;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column-title {
    font-family: 'Fenotype Praktika', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--primary-yellow);
    margin: 0 0 0.5rem 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), transparent);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    opacity: 0.85;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-yellow);
}

.footer-link:hover {
    color: var(--primary-yellow);
    transform: translateX(8px);
    opacity: 1;
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    opacity: 0.75;
    letter-spacing: 0.01em;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 188, 17, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.footer-social-link:hover::before {
    width: 100px;
    height: 100px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffc832 100%);
    color: var(--secondary-black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(254, 188, 17, 0.4), 0 0 20px rgba(254, 188, 17, 0.2);
    border-color: transparent;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.15);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .flip-card {
        width: 300px;
        height: 300px;
    }

    .flip-card-front,
    .flip-card-left,
    .flip-card-top,
    .flip-card-bottom {
        transform: translateZ(150px);
    }

    .flip-card-left {
        transform: rotateY(-90deg) translateZ(150px);
    }

    .flip-card-top {
        transform: rotateX(90deg) translateZ(150px);
    }

    .flip-card-bottom {
        transform: rotateX(-90deg) translateZ(150px);
    }

    .flip-logo-img {
        width: 90px;
        height: 90px;
    }

    .flip-logo-text {
        font-size: 1.8rem;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .banner-container {
        gap: 0;
    }

    .banner-content {
        padding: 2rem 3rem;
    }

    .heading-line {
        font-size: 4rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
        min-height: 80vh;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .marquee-item {
        font-size: 2rem;
    }

    .marquee-star {
        font-size: 1.2rem;
    }

    .creatives-container {
        gap: 3rem;
        padding: 3rem 3rem;
    }

    .creatives-heading-line {
        font-size: 3.5rem;
    }

    .creatives-visual {
        height: 500px;
    }

    .cards-container {
        padding: 3rem 3rem;
        gap: 1.5rem;
    }

    .card {
        padding: 2.5rem;
        min-height: 380px;
    }

    .card-heading {
        font-size: 2.2rem;
    }

    .process-container {
        padding: 3rem 3rem;
    }

    .process-title {
        font-size: 3.5rem;
    }

    .process-description {
        font-size: 1rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .process-card {
        padding: 2.5rem;
    }

    .process-card-title {
        font-size: 2rem;
    }

    .globe-container {
        padding: 3rem 3rem;
        gap: 3rem;
    }

    .globe-heading {
        font-size: 3.5rem;
    }

    .globe-cards {
        gap: 1.5rem;
    }

    .globe-card {
        padding: 2.5rem;
    }

    .globe-card-title {
        font-size: 2rem;
    }

    .globe-card-subtitle {
        font-size: 1.3rem;
    }

    .services-container {
        padding: 3rem 3rem;
    }

    .services-title {
        font-size: 3.5rem;
    }

    .services-tagline {
        font-size: 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    .service-card-title {
        font-size: 2rem;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
    }

    .icon-3d {
        width: 50px;
        height: 50px;
    }

    .icon-3d svg {
        width: 30px;
        height: 30px;
    }

    .faq-container {
        padding: 3rem 3rem;
    }

    .faq-title {
        font-size: 3.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .footer-container {
        padding: 3rem 3rem 2rem 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .flip-card {
        width: 250px;
        height: 250px;
    }

    .flip-card-front,
    .flip-card-left,
    .flip-card-top,
    .flip-card-bottom {
        transform: translateZ(125px);
    }

    .flip-card-left {
        transform: rotateY(-90deg) translateZ(125px);
    }

    .flip-card-top {
        transform: rotateX(90deg) translateZ(125px);
    }

    .flip-card-bottom {
        transform: rotateX(-90deg) translateZ(125px);
    }

    .flip-logo-img {
        width: 70px;
        height: 70px;
    }

    .flip-logo-text {
        font-size: 1.5rem;
    }

    .flip-logo {
        gap: 1rem;
    }

    .navbar-container {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .banner {
        padding: 2rem 0;
        min-height: auto;
    }

    .banner-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .banner-content {
        gap: 2rem;
        order: 1;
        padding: 2rem 1.5rem;
    }

    .banner-image {
        order: 2;
    }

    .heading-line {
        font-size: 3rem;
    }

    .banner-logo-section {
        gap: 0.75rem;
    }

    .banner-logo-img {
        height: 50px;
    }

    .agency-text {
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 2rem 1rem;
        min-height: 70vh;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-logo-img {
        height: 50px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .marquee-section {
        padding: 1.5rem 0;
    }

    .marquee-item {
        font-size: 1.8rem;
    }

    .marquee-star {
        font-size: 1rem;
    }

    .marquee-track {
        gap: 1.5rem;
    }

    .creatives-section {
        min-height: auto;
    }

    .creatives-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 2rem;
    }

    .creatives-content {
        order: 1;
        gap: 2rem;
    }

    .creatives-heading-line {
        font-size: 2.8rem;
    }

    .creatives-description {
        font-size: 1rem;
    }

    .creatives-visual {
        order: 2;
        height: 400px;
    }

    .cards-container {
        padding: 2rem 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card {
        padding: 2rem;
        min-height: 350px;
    }

    .card-heading {
        font-size: 2rem;
    }

    .process-container {
        padding: 2rem 2rem;
    }

    .process-header {
        margin-bottom: 3rem;
    }

    .process-title {
        font-size: 2.8rem;
    }

    .process-description {
        font-size: 0.95rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-card {
        padding: 2rem;
    }

    .process-card-title {
        font-size: 1.8rem;
    }

    .process-card-number {
        font-size: 3rem;
    }

    .globe-container {
        padding: 2rem 2rem;
        gap: 3rem;
    }

    .globe-heading {
        font-size: 2.8rem;
    }

    .globe-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .globe-card {
        padding: 2rem;
    }

    .globe-card-title {
        font-size: 1.8rem;
    }

    .globe-card-subtitle {
        font-size: 1.2rem;
    }

    .services-container {
        padding: 2rem 2rem;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-logo-img {
        height: 50px;
    }

    .services-title {
        font-size: 2.8rem;
    }

    .services-tagline {
        font-size: 0.95rem;
    }

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

    .floating-icon {
        width: 60px;
        height: 60px;
    }

    .icon-3d {
        width: 50px;
        height: 50px;
    }

    .icon-3d svg {
        width: 30px;
        height: 30px;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card-title {
        font-size: 1.8rem;
    }

    .service-card-description {
        font-size: 0.95rem;
    }

    .faq-container {
        padding: 2rem 2rem;
    }

    .faq-title {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .footer-container {
        padding: 2rem 2rem 1.5rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem;
    }

    .logo {
        height: 80px;
    }

    .nav-list {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .banner {
        padding: 1.5rem 0;
    }

    .banner-container {
        gap: 0;
    }

    .banner-content {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .heading-line {
        font-size: 2.5rem;
    }

    .banner-logo-img {
        height: 45px;
    }

    .agency-text {
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 1.5rem 1rem;
        min-height: 60vh;
    }

    .hero-container {
        gap: 1.5rem;
    }

    .hero-logo-img {
        height: 40px;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-scroll-text {
        font-size: 0.85rem;
    }

    .marquee-section {
        padding: 1rem 0;
    }

    .marquee-item {
        font-size: 1.5rem;
    }

    .marquee-star {
        font-size: 0.9rem;
    }

    .marquee-track {
        gap: 1rem;
    }

    .creatives-container {
        gap: 2rem;
        padding: 1.5rem 1.5rem;
    }

    .creatives-content {
        gap: 1.5rem;
    }

    .creatives-logo-img {
        height: 40px;
    }

    .creatives-heading-line {
        font-size: 2rem;
    }

    .creatives-description {
        font-size: 0.9rem;
    }

    .creatives-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .creatives-visual {
        height: 350px;
    }

    .cards-container {
        padding: 1.5rem 1.5rem;
    }

    .card {
        padding: 1.5rem;
        min-height: 320px;
    }

    .card-heading {
        font-size: 1.6rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .card-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .process-container {
        padding: 1.5rem 1.5rem;
    }

    .process-header {
        margin-bottom: 2rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .process-description {
        font-size: 0.9rem;
    }

    .process-card {
        padding: 1.5rem;
    }

    .process-card-title {
        font-size: 1.5rem;
    }

    .process-card-text {
        font-size: 0.9rem;
    }

    .process-card-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }

    .globe-container {
        padding: 1.5rem 1.5rem;
        gap: 2rem;
    }

    .globe-heading {
        font-size: 2rem;
    }

    .globe-card {
        padding: 1.5rem;
    }

    .globe-card-title {
        font-size: 1.5rem;
    }

    .globe-card-subtitle {
        font-size: 1rem;
    }

    .globe-card-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .services-container {
        padding: 1.5rem 1.5rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-logo-img {
        height: 45px;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-tagline {
        font-size: 0.9rem;
    }

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

    .floating-icons {
        display: none;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card-title {
        font-size: 1.5rem;
    }

    .service-card-description {
        font-size: 0.9rem;
    }

    .service-card-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .service-card-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
    }

    .faq-container {
        padding: 1.5rem 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-list {
        gap: 0.75rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.2rem;
        width: 20px;
    }

    .footer-container {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .footer-top {
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column-title {
        font-size: 1.1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-bottom {
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
    }

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