/* css/about.css - Modern About Page */

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
    padding: 120px 0 80px;
    width: 100%;
}

.about-hero .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 59, 59, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 59, 59, 0.05) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 59, 59, 0.02) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
}

.about-hero-text {
    max-width: 600px;
    width: 100%;
}

.about-hero-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-red);
    display: block;
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.2s;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.4s;
}

.highlight-text {
    color: var(--color-red);
}


.about-hero-description {
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.6s;
}

.about-hero-description .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.about-hero-description p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-hero-description .location {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 59, 59, 0.2);
    font-style: italic;
}

.about-hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.6s forwards 0.8s;
    flex-wrap: wrap;
}

.about-hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

.visual-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transform: rotate(5deg) scale(0.9);
}

.grid-item {
    background: rgba(255, 59, 59, 0.03);
    border: 1px solid rgba(255, 59, 59, 0.1);
    border-radius: 20px;
    transition: var(--transition-base);
    aspect-ratio: 1;
}

.grid-item:nth-child(1) { animation: float 6s ease-in-out infinite; }
.grid-item:nth-child(2) { animation: float 8s ease-in-out infinite reverse; }
.grid-item:nth-child(3) { animation: float 7s ease-in-out infinite; }
.grid-item:nth-child(4) { animation: float 9s ease-in-out infinite reverse; }
.grid-item:nth-child(5) { animation: float 5s ease-in-out infinite; }
.grid-item:nth-child(6) { animation: float 7s ease-in-out infinite reverse; }

.floating-cards {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-mini {
    position: absolute;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 59, 59, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 40px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-mini:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: floatCard 5s ease-in-out infinite;
}

.card-mini:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: floatCard 6s ease-in-out infinite reverse;
}

.card-mini:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation: floatCard 7s ease-in-out infinite;
}

.card-mini:nth-child(4) {
    top: 30%;
    right: 25%;
    animation: floatCard 8s ease-in-out infinite reverse;
}

@keyframes floatCard {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    padding: var(--space-2xl) 0;
    background: var(--color-off-black);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 59, 59, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: left;
    margin-bottom: var(--space-xl);
    max-width: 800px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-red);
    display: block;
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.belief-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 59, 59, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.belief-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 20px 30px -10px rgba(255, 59, 59, 0.2);
}

.belief-card:hover .belief-number {
    color: var(--color-red);
    opacity: 1;
}

.belief-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-red);
    opacity: 0.2;
    margin-bottom: var(--space-sm);
    transition: var(--transition-base);
}

.belief-content h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.belief-content p {
    color: var(--color-gray-light);
    line-height: 1.7;
}

.belief-icon {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    font-size: 2rem;
    opacity: 0.1;
    transition: var(--transition-base);
}

.belief-card:hover .belief-icon {
    opacity: 0.3;
    transform: scale(1.2) rotate(10deg);
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.approach-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

.orchestration-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 0 50px rgba(255, 59, 59, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.node {
    position: absolute;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 40px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    z-index: 2;
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.node:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    transform: scale(1.1);
}

.node-1 {
    top: 20%;
    left: 30%;
    animation: orbit 12s linear infinite;
}

.node-2 {
    top: 30%;
    right: 25%;
    animation: orbit 14s linear infinite reverse;
}

.node-3 {
    bottom: 30%;
    left: 25%;
    animation: orbit 16s linear infinite;
}

.node-4 {
    bottom: 20%;
    right: 30%;
    animation: orbit 18s linear infinite reverse;
}

.node-5 {
    top: 50%;
    left: 10%;
    animation: orbit 20s linear infinite;
}

.node-6 {
    bottom: 50%;
    right: 10%;
    animation: orbit 22s linear infinite reverse;
}


@keyframes orbit {
    from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

.approach-content {
    max-width: 600px;
}

.approach-description {
    margin: var(--space-lg) 0;
}

.approach-description .lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.approach-description p {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.approach-description .highlight {
    color: var(--color-red);
    font-weight: 500;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 59, 59, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--color-red);
}

.approach-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 59, 59, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: var(--color-off-black);
  padding: var(--space-xl) 0;
}

.clients-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.clients-header p {
  color: var(--color-gray-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ===== SCROLLING CLIENTS LOGOS ===== */
.clients-scroll {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: var(--color-off-black);
  position: relative;
}

.clients-scroll::before,
.clients-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.clients-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--color-off-black), transparent);
}

.clients-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--color-off-black), transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  width: fit-content;
  animation: scrollSeamless 20s linear infinite;
  will-change: transform;
}

.clients-track:hover {
  animation-play-state: paused;
}

/* Keyframes for seamless scrolling - uses percentage based on track width */
@keyframes scrollSeamless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%); /* Scroll 1/3 of total width */
  }
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  width: 150px; /* Fixed width for consistency */
  opacity: 0.7;
  transition: var(--transition-base);
  filter: grayscale(1);
  flex-shrink: 0;
}


.client-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

.client-logo img {
  width: 100%;
  max-width: 120px;
  height: 120px; /* Fixed height for consistency */
  object-fit: contain; /* Maintain aspect ratio */
  transition: var(--transition-base);
  display: block;
  margin: 0 auto;
}


.client-logo span {
  color: var(--color-gray-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.clients-cta-top {
  margin: 30px 0 50px;
  text-align: center;
}

.clients-cta-top .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}


/* ===== CLIENTS SHOWCASE ===== */
.clients-showcase {
    padding: var(--space-2xl) 0;
    background: var(--color-off-black);
}

.clients-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.client-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 59, 59, 0.1);
    border-radius: 20px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-base);
}

.client-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 20px 30px -10px rgba(255, 59, 59, 0.2);
}

.client-logo-wrapper {
    width: 120px;
    height: 60px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 10px;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

.client-card:hover .client-logo-wrapper img {
    filter: none;
}

.client-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: var(--color-white);
}

.client-industry {
    font-size: 0.85rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-sm);
}

.client-project {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    line-height: 1.6;
}

.clients-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ===== ABOUT CTA ===== */
.about-cta {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--color-off-black), var(--color-black));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .clients-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-text {
        margin: 0 auto;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .about-hero-visual {
        display: none;
    }
    
    .approach-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .approach-visual {
        order: 2;
        height: 400px;
    }
    
    .approach-content {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .approach-stats {
        justify-content: center;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .node-1, .node-2, .node-3, .node-4, .node-5 {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
        min-height: 80vh;
    }
    
    .about-hero-description .lead {
        font-size: 1.2rem;
    }
    
    .about-hero-description p {
        font-size: 1rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid-large {
        grid-template-columns: 1fr;
    }
    
    .approach-visual {
        height: 350px;
    }
    
    .center-node {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .node-1, .node-2, .node-3, .node-4, .node-5 {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .approach-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .stat {
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .belief-number {
        font-size: 3rem;
    }
    
    .belief-content h3 {
        font-size: 1.2rem;
    }
    
    .client-card {
        padding: var(--space-md);
    }
    
    .client-logo-wrapper {
        width: 100px;
        height: 50px;
    }
    
    .approach-visual {
        height: 300px;
    }
    
    .center-node {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

/* Fix for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero scroll indicator spacing - FIXED */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
    z-index: 5;
    pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-off-black);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Background Pattern (subtle) */
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 59, 59, 0.03) 0%, transparent 50%);
    pointer-events: none;
  }
  
  /* Footer Grid - Desktop Default */
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
  }
  
  /* Footer Info Section */
  .footer-info {
    max-width: 350px;
  }
  
  .footer-info .logo {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    transition: var(--transition-base);
  }
  
  .footer-info .logo:hover {
    color: var(--color-red);
  }
  
  .footer-info p {
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
  }
  
  .footer-legal {
    color: var(--color-gray-mid);
    font-size: 0.85rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Footer Links Sections */
  .footer-links h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: var(--space-xs);
  }
  
  .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-red);
    transition: width var(--transition-base);
  }
  
  .footer-links h4:hover::after {
    width: 50px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: var(--space-sm);
    transition: var(--transition-fast);
  }
  
  .footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
  }
  
  .footer-links a:hover {
    color: var(--color-red);
    transform: translateX(8px);
  }
  
  /* Arrow animation on hover */
  .footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--color-red);
  }
  
  .footer-links a:hover::before {
    opacity: 1;
    left: -25px;
  }
  
  /* ===== RESPONSIVE BREAKPOINTS ===== */
  
  /* Large Desktop (1400px and above) */
  @media (min-width: 1400px) {
    .footer {
      padding: calc(var(--space-xl) * 1.2) 0 var(--space-xl);
    }
    
    .footer-grid {
      gap: calc(var(--space-lg) * 1.2);
    }
    
    .footer-info {
      max-width: 400px;
    }
    
    .footer-info .logo {
      font-size: 2.2rem;
    }
    
    .footer-info p {
      font-size: 1rem;
    }
    
    .footer-links h4 {
      font-size: 1.2rem;
    }
    
    .footer-links a {
      font-size: 1rem;
    }
  }
  
  /* Standard Desktop (1200px to 1399px) */
  @media (min-width: 1200px) and (max-width: 1399px) {
    .footer-grid {
      gap: var(--space-md);
    }
    
    .footer-info {
      max-width: 320px;
    }
  }
  
  /* Small Desktop / Large Tablet (992px to 1199px) */
  @media (min-width: 992px) and (max-width: 1199px) {
    .footer {
      padding: calc(var(--space-xl) * 0.9) 0 var(--space-lg);
    }
    
    .footer-grid {
      gap: var(--space-md);
    }
    
    .footer-info {
      max-width: 300px;
    }
    
    .footer-info .logo {
      font-size: 1.8rem;
    }
    
    .footer-info p {
      font-size: 0.9rem;
    }
    
    .footer-links h4 {
      font-size: 1rem;
      margin-bottom: calc(var(--space-md) * 0.8);
    }
    
    .footer-links a {
      font-size: 0.9rem;
    }
  }
  
  /* Tablet Landscape (768px to 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
    .footer {
      padding: calc(var(--space-xl) * 0.8) 0 var(--space-lg);
    }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg) var(--space-md);
    }
    
    .footer-info {
      grid-column: 1 / -1;
      max-width: 100%;
      text-align: center;
      margin-bottom: var(--space-md);
    }
    
    .footer-info .logo {
      margin-left: auto;
      margin-right: auto;
    }
    
    .footer-links {
      text-align: center;
    }
    
    .footer-links h4::after {
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
    }
    
    .footer-links h4:hover::after {
      width: 60px;
    }
    
    .footer-links a:hover {
      transform: translateY(-2px) translateX(0);
    }
    
    .footer-links a::before {
      display: none; /* Remove arrow on tablet for cleaner look */
    }
    
    .footer-legal {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: var(--space-md);
    }
  }
  
  /* Mobile Landscape (480px to 767px) */
  @media (min-width: 480px) and (max-width: 767px) {
    .footer {
      padding: calc(var(--space-xl) * 0.7) 0 var(--space-md);
    }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }
    
    .footer-info {
      grid-column: 1 / -1;
      max-width: 100%;
      text-align: center;
      margin-bottom: var(--space-md);
    }
    
    .footer-info .logo {
      font-size: 1.8rem;
      margin-bottom: var(--space-sm);
    }
    
    .footer-info p {
      font-size: 0.9rem;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .footer-links {
      text-align: center;
    }
    
    .footer-links h4 {
      font-size: 1rem;
      margin-bottom: calc(var(--space-md) * 0.7);
    }
    
    .footer-links h4::after {
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
    }
    
    .footer-links ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .footer-links li {
      margin-bottom: calc(var(--space-sm) * 0.8);
    }
    
    .footer-links a {
      font-size: 0.9rem;
    }
    
    .footer-links a:hover {
      transform: translateY(-2px) translateX(0);
      color: var(--color-red);
    }
    
    .footer-links a::before {
      display: none;
    }
    
    .footer-legal {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: var(--space-md);
      font-size: 0.8rem;
    }
  }
  
  /* Mobile Portrait (up to 479px) */
  @media (max-width: 479px) {
    .footer {
      padding: calc(var(--space-xl) * 0.6) 0 var(--space-sm);
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: var(--space-lg);
    }
    
    .footer-info {
      max-width: 100%;
      text-align: center;
    }
    
    .footer-info .logo {
      font-size: 1.8rem;
      margin-bottom: var(--space-sm);
    }
    
    .footer-info p {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: var(--space-sm);
      padding: 0 var(--space-sm);
    }
    
    .footer-links {
      text-align: center;
    }
    
    .footer-links h4 {
      font-size: 1rem;
      margin-bottom: calc(var(--space-md) * 0.6);
    }
    
    .footer-links h4::after {
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
    }
    
    .footer-links ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .footer-links li {
      margin-bottom: calc(var(--space-sm) * 0.7);
    }
    
    .footer-links a {
      font-size: 0.85rem;
    }
    
    .footer-links a:hover {
      transform: translateY(-2px) translateX(0);
    }
    
    .footer-links a::before {
      display: none;
    }
    
    .footer-legal {
      margin-top: var(--space-md);
      padding-top: var(--space-sm);
      font-size: 0.75rem;
    }
  }
  
  /* Very Small Mobile (up to 360px) */
  @media (max-width: 360px) {
    .footer {
      padding: calc(var(--space-xl) * 0.5) 0 var(--space-sm);
    }
    
    .footer-info .logo {
      font-size: 1.5rem;
    }
    
    .footer-info p {
      font-size: 0.8rem;
      padding: 0 0.5rem;
    }
    
    .footer-links h4 {
      font-size: 0.95rem;
    }
    
    .footer-links a {
      font-size: 0.8rem;
    }
    
    .footer-legal {
      font-size: 0.7rem;
    }
  }
  
  /* Landscape Mode on Mobile */
  @media (max-height: 600px) and (orientation: landscape) {
    .footer {
      padding: var(--space-md) 0;
    }
    
    .footer-grid {
      gap: var(--space-md);
    }
    
    .footer-info {
      max-width: 300px;
    }
    
    .footer-info p {
      font-size: 0.85rem;
      margin-bottom: var(--space-sm);
    }
  }
  
  /* High-resolution screens (4K and above) */
  @media (min-width: 2560px) {
    .footer {
      padding: calc(var(--space-2xl)) 0 calc(var(--space-xl) * 1.5);
    }
    
    .footer-grid {
      max-width: 1600px;
      margin: 0 auto;
      gap: calc(var(--space-xl) * 1.5);
    }
    
    .footer-info {
      max-width: 500px;
    }
    
    .footer-info .logo {
      font-size: 2.8rem;
    }
    
    .footer-info p {
      font-size: 1.2rem;
      line-height: 2;
    }
    
    .footer-links h4 {
      font-size: 1.5rem;
    }
    
    .footer-links a {
      font-size: 1.2rem;
    }
    
    .footer-legal {
      font-size: 1rem;
    }
  }
  
  /* Print Styles */
  @media print {
    .footer {
      background: none;
      border-top: 1px solid #000;
      color: #000;
      padding: 2rem 0;
    }
    
    .footer a {
      color: #000 !important;
      text-decoration: underline;
    }
    
    .footer::before,
    .footer-links h4::after,
    .footer-links a::before {
      display: none;
    }
  }
  

@media (min-width: 992px) {
    .hero-scroll-indicator {
        bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-scroll-indicator {
        bottom: 30px;
    }
    
    .hero-scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .scroll-line {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .hero-scroll-indicator {
        bottom: 20px;
        gap: 5px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid rgba(255, 59, 59, 0.3);
    }
    
    .hero-scroll-indicator span {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
        color: var(--color-white);
        background: transparent;
        padding: 0;
    }
    
    .scroll-line {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--color-red), transparent);
    }
}

@media (max-width: 480px) {
    .hero-scroll-indicator {
        bottom: 15px;
        padding: 6px 12px;
    }
    
    .hero-scroll-indicator span {
        font-size: 0.65rem;
    }
    
    .scroll-line {
        height: 30px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero-scroll-indicator {
        bottom: 10px;
    }
    
    .scroll-line {
        height: 25px;
    }
}
