/* ============================================
   KEPREVOS - Ultra-Premium Dark Luxury Theme
   ============================================ */

:root {
    /* Primary Gradient Colors */
    --orange-warm: #FF8A00;
    --orange-deep: #FF6A00;
    --orange-burnt: #C2410C;
    --black-near: #1A0F0A;

    /* Orange Linear Gradient Colors for Hero Background */
    --orange-linear-20: rgba(255, 138, 0, 0.2);
    --orange-linear-30: rgba(255, 138, 0, 0.3);
    --orange-linear-60: rgba(255, 138, 0, 0.6);
    --orange-linear-80: rgba(255, 138, 0, 0.8);
    --orange-linear-100: rgba(255, 138, 0, 1);

    /* Background Base */
    --bg-deep: #0B0B0D;
    --bg-charcoal: #1A1A1D;

    /* Glow Accent */
    --glow-amber: rgba(255, 138, 0, 0.25);
    --glow-orange: rgba(255, 138, 0, 0.4);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Background Image */
    --bg-grain: url(https://cdn.prod.website-files.com/663e801a3e6612663299d1fb/664cce6f1fff77e0b66dd85e_bg-grain.png);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    letter-spacing: 0.01em;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    /* font-size: clamp(36px, 6vw, 72px); */
    font-size: 72px;
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 11, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-radius: 0 0 200px 200px;

}

.navbar.scrolled {
    background: rgba(11, 11, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -2px;
    opacity: 0.8;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    font-family: 'Orbitron', sans-serif;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a.active {
    color: var(--orange-warm);
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-warm), var(--orange-deep));
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 120px 40px 80px;
    box-sizing: border-box;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image:
        url("https://cdn.prod.website-files.com/663e801a3e6612663299d1fb/664cce6f1fff77e0b66dd85e_bg-grain.png"),
        linear-gradient(135deg,
            #300504 4%,
            #4c0e06 35%,
            #773007 50%,
            #c86c0f 65%,
            #e69509 80%,
            #ffdf36 100%);
    /* linear-gradient(135deg, #1c0101, #2c0101, #390101, #5f3131 12%, #a44f02 20%, #ff7a01 56% 56%, #ffdf36); */
    /* radial-gradient(circle farthest-corner at 0% 0%, var(--orange-linear-20) 20%, var(--orange-linear-30) 30%, var(--orange-linear-60) 60%, var(--orange-linear-80) 80%, #fbff7c 100%, var(--orange-linear-100)); */

    background-size: auto, cover;
    background-position: center, center;
    background-repeat: repeat, no-repeat;

    opacity: 1;
}


.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, var(--glow-amber) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.glow-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--orange-warm);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--orange-deep);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--orange-burnt);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    /* max-width: 1000px; */
    margin: 1px;
    /* margin-top: 100px; */
    padding: 50px 1px 10px 1px;
    transform-style: preserve-3d;
    perspective: 2000px;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.hero-title {
    /* font-size: clamp(60px, 15vw, 240px); */
    font-weight: 100;
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
    letter-spacing: clamp(-15px, -2vw, -4px);
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    margin-bottom: 0;
    padding: 20px;
    box-sizing: border-box;
    color: transparent;
    /* Very subtle base text */
    position: relative;
}

.hero-title1 {
    font-size: clamp(60px, 15vw, 70px);
    font-weight: 500;
    font-family: 'Orbitron', sans-serif !important;
    line-height: 1;
    /* letter-spacing: 0.15em; */
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    white-space: pre-wrap;
    overflow: visible;
    margin-bottom: 0;
    padding: 0px;
    box-sizing: border-box;
    color: white;
    position: relative;
    gap: 0.15em;
    text-shadow: 0 0 15px rgba(255, 138, 0, 0.2);
    /* Hide initially to prevent flash of unsplit text */
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.hero-title1.split-complete {
    opacity: 1;
}

.hero-title1 .char {
    font-family: 'Orbitron', sans-serif !important;
    display: inline-block;
    color: white;
    opacity: 0;
    transform: translateY(100%) rotateX(-90deg) scale(0.5);
    filter: blur(10px);
    animation: charEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

@keyframes charEntrance {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    line-height: 1;
    overflow: visible;
    width: 100%;
    /* max-width: 1200px; */
}

.s__svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 350%;
    pointer-events: none;
    z-index: 4;
}

.js-wrapper circle {
    fill: #fff;
}

.hero-title.italic {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange-warm), #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline,
.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 2px;
    line-height: 1.8;
    text-transform: uppercase;
    opacity: 0.9;
}

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

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

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--orange-warm);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 0, 0.4);
}

.btn-secondary {
    background: rgba(60, 50, 45, 0.8);
    color: var(--text-primary);
    border: 1px solid rgba(255, 138, 0, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(80, 70, 65, 0.9);
    border-color: var(--orange-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-details {
    background: transparent;
    color: var(--orange-warm);
    border: 1px solid var(--orange-warm);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-details:hover {
    background: var(--orange-warm);
    color: var(--bg-deep);
    box-shadow: 0 4px 16px rgba(255, 138, 0, 0.3);
}

/* ============================================
   Glassmorphism Cards
   ============================================ */

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 138, 0, 0.1);
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(90deg, #390101, #5f3131 12%, #a44f02 33%, #ff7a01 56% 56%, #ffdf36);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* .glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-warm), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 138, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 138, 0, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
} */

/* ============================================
   Section Headers
   ============================================ */

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

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-top: 40px;
    /* Increased padding to prevent merge with vertical line */
    text-transform: uppercase;
}

.title-accent {
    position: absolute;
    left: 50%;
    top: -50px;
    /* Increased spacing from top to prevent merge with heading */
    transform: translateX(-50%);
    width: 4px;
    height: 45px;
    background: linear-gradient(180deg, var(--orange-warm), var(--orange-deep));
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 12px rgba(255, 138, 0, 0.5);
}

.section-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================
   Values Section
   ============================================ */

.values-section {
    padding: var(--section-padding);
    background: var(--bg-charcoal);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.1);
    border: 2px solid var(--orange-warm);
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--orange-warm);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--orange-warm);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px rgba(255, 138, 0, 0.5));
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    text-align: left;
    color: var(--text-secondary);
    line-height: 2;
}

.values-list li::before {
    content: '→';
    color: var(--orange-warm);
    margin-right: 10px;
    font-weight: bold;
}

.italic {
    font-style: italic;
    color: var(--orange-warm);
    font-weight: 500;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 138, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 138, 0, 0.1);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-charcoal));
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 106, 0, 0.1));
    border: 1px solid rgba(255, 138, 0, 0.3);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.3), rgba(255, 106, 0, 0.2));
    box-shadow: 0 8px 24px rgba(255, 138, 0, 0.2);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--orange-warm);
    stroke-width: 2;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
}

/* ============================================
   Portfolio Section
   ============================================ */

.portfolio-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(26, 15, 10, 0.8));
    position: relative;
    transition: var(--transition-smooth);
}



.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(11, 11, 13, 0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--text-secondary);
    font-size: 14px;
}

.portfolio-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-dot.active {
    background: var(--orange-warm);
    box-shadow: 0 0 12px rgba(255, 138, 0, 0.6);
}

.portfolio-cta {
    text-align: center;
}

/* ============================================
   Presence / Map Section
   ============================================ */

.presence-section {
    padding: var(--section-padding);
    background: var(--bg-charcoal);
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 138, 0, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.1);
}

.map-visualization {
    width: 100%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 138, 0, 0.1), transparent);
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.marker-1 {
    top: 45%;
    left: 50%;
}

.marker-2 {
    top: 30%;
    left: 60%;
}

.marker-3 {
    top: 60%;
    left: 40%;
}

.marker-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-warm);
    opacity: 0.6;
    animation: marker-pulse 2s ease-out infinite;
    transform: translate(-50%, -50%);
}

@keyframes marker-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.marker-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange-warm);
    border: 3px solid var(--bg-deep);
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.8);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.marker-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(11, 11, 13, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-primary);
    border: 1px solid rgba(255, 138, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    position: relative;
}

.process-step.active {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.15), rgba(255, 106, 0, 0.1));
    border-color: rgba(255, 138, 0, 0.4);
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-step.active .step-number {
    opacity: 1;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-charcoal);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    position: relative;
}

.quote-icon {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 138, 0, 0.1);
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-role {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--orange-warm);
    transition: var(--transition-smooth);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 138, 0, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* ============================================
   Consultation Section
   ============================================ */

.consultation-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-charcoal), var(--bg-deep));
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
}

.consultation-left h2 {
    font-size: 42px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-left p {
    color: var(--text-secondary);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.consultation-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--orange-warm);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--orange-deep);
    transform: translateX(5px);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-container {
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-warm);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-info-container {
    display: flex;
    align-items: center;
}

.contact-info-card {
    width: 100%;
}

.contact-info-card h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange-warm);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 5px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    padding: 80px 0 40px;
    background: var(--bg-charcoal);
    border-top: 1px solid rgba(255, 138, 0, 0.1);
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg,
            var(--orange-warm) 0%,
            var(--orange-deep) 25%,
            var(--orange-burnt) 50%,
            var(--black-near) 75%,
            transparent 100%);
    opacity: 0.1;
    border-radius: 0 0 50% 50% / 0 0 30% 30%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--orange-warm);
}

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

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 0, 0.1);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 12px;
    color: var(--orange-warm);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: rgba(255, 138, 0, 0.2);
    border-color: var(--orange-warm);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 138, 0, 0.2);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 138, 0, 0.1);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--orange-warm);
}

/* ============================================
   Animations & Scroll Reveal
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .about-content,
    .contact-content,
    .consultation-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .consultation-content {
        padding: 60px 40px;
    }

    .consultation-right {
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .services-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(11, 11, 13, 0.98);
        width: 100%;
        padding: 40px 0;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 138, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 120px);
        white-space: normal;
        word-break: break-word;
        line-height: 1;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-content {
        padding: 1px 20px;
        overflow: visible;
    }

    .hero-title .letter {
        margin-right: clamp(-6px, -1vw, -2px);
        line-height: 0.75;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn,
    .consultation-right .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .consultation-content {
        padding: 40px 20px;
    }

    .consultation-left h2 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 15px;
    }

    .consultation-left p {
        font-size: 16px;
    }

    .contact-link {
        font-size: 16px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(32px, 14vw, 80px);
        white-space: normal;
        line-height: 0.9;
        margin-bottom: 0px;
    }

    .hero-content {
        padding: 1px 20px;
        overflow: visible;
    }

    .hero-title .letter {
        animation-duration: 0.8s;
        white-space: nowrap;
        margin-right: clamp(-4px, -0.8vw, -1.5px);
        line-height: 0.75;
    }

    @keyframes letterDrop3D {
        0% {
            opacity: 0;
            transform: translateY(-150px) rotateX(-90deg) scale(0.5) translateZ(-50px);
            filter: blur(8px);
        }

        50% {
            opacity: 0.8;
            transform: translateY(15px) rotateX(10deg) scale(1.1) translateZ(15px);
            filter: blur(2px);
        }

        70% {
            transform: translateY(-3px) rotateX(-5deg) scale(1.05) translateZ(8px);
        }

        100% {
            opacity: 1;
            transform: translateY(0) rotateX(0deg) scale(1) translateZ(0);
            filter: blur(0);
        }
    }

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

    .consultation-left h2 {
        font-size: 24px;
    }

    .consultation-left p {
        font-size: 14px;
    }

    .consultation-content {
        padding: 30px 15px;
    }

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

/* ============================================
   Page-Specific Styles
   ============================================ */

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--orange-warm);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Page Hero (for Services, Technologies, etc.) */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 40px 80px;
    text-align: center;
}

.page-hero .hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.page-hero .hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 15px;
}

.breadcrumbs {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--orange-warm);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--orange-deep);
}

/* Services Page */
.services-page-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-detailed {
    text-align: center;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 106, 0, 0.1));
    border: 2px solid rgba(255, 138, 0, 0.3);
}

.service-icon-large svg {
    width: 50px;
    height: 50px;
    stroke: var(--orange-warm);
    stroke-width: 2;
}

.service-card-detailed h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-card-detailed p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

/* Technologies Page */
.technologies-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.tech-category {
    text-align: center;
    padding: 50px 30px;
    border: 1px solid rgba(255, 138, 0, 0.08);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.tech-category:hover {
    border-color: rgba(255, 138, 0, 0.3);
    background: rgba(255, 138, 0, 0.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 138, 0, 0.05);
}

.tech-primary-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 106, 0, 0.05));
    border: 1px solid rgba(255, 138, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    padding: 20px;
}

.tech-category:hover .tech-primary-icon {
    /* transform: translateY(-5px) scale(1.05); */
    border-color: var(--orange-warm);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.2);
}

.tech-primary-icon svg,
.tech-primary-icon i {
    font-size: 50px;
    background: linear-gradient(135deg, #FFDF73, #FFC107, #E6A100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.4));
}

.tech-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.tech-logo {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tech-logo:hover {
    /* transform: translateY(-8px) scale(1.15); */
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-warm);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 138, 0, 0.2);
}

.tech-logo svg,
.tech-logo i {
    font-size: 32px;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit;
}

.tech-logo:hover svg,
.tech-logo:hover i {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Custom Gradient Definitions for SVGs */
.gradient-orange {
    fill: url(#grad-orange);
}

.gradient-blue {
    fill: url(#grad-blue);
}

.gradient-green {
    fill: url(#grad-green);
}

.gradient-purple {
    fill: url(#grad-purple);
}

.gradient-cyan {
    fill: url(#grad-cyan);
}

.gradient-red {
    fill: url(#grad-red);
}


/* Portfolio Page */
.portfolio-filter-section {
    padding: 40px 0;
    background: var(--bg-charcoal);
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255, 138, 0, 0.3);
    color: var(--text-secondary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    border-color: var(--orange-warm);
    color: var(--text-primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--orange-warm), var(--orange-deep));
    border-color: var(--orange-warm);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(255, 138, 0, 0.3);
}

.portfolio-projects-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.portfolio-project {
    transition: var(--transition-smooth);
}

.project-devices {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.device {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.device-desktop {
    width: 300px;
    height: 200px;
}

.device-laptop {
    width: 250px;
    height: 160px;
}

.device-tablet {
    width: 180px;
    height: 240px;
}

.device-mobile {
    width: 120px;
    height: 200px;
}

.device-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.project-preview {
    text-align: center;
    padding: 20px;
}

.project-preview h4,
.project-preview h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.project-info {
    text-align: center;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.project-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 138, 0, 0.2);
    border: 1px solid var(--orange-warm);
    border-radius: 20px;
    color: var(--orange-warm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Page */
.about-page-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.about-content-block {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-heading {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--orange-warm);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.about-content-block p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.competence-list,
.domain-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.competence-list li,
.domain-list li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--text-secondary);
    font-size: 17px;
    position: relative;
    line-height: 1.7;
}

.competence-list li::before,
.domain-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange-warm);
    font-weight: bold;
    font-size: 20px;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-charcoal);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    text-align: center;
    padding: 50px 30px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.1);
    border: 2px solid var(--orange-warm);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--orange-warm);
    stroke-width: 2;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.contact-info-card strong {
    color: var(--text-primary);
    font-size: 18px;
}

.contact-form-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-detailed {
    padding: 50px;
}

.contact-form-detailed .form-group {
    margin-bottom: 30px;
}

.contact-form-detailed label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.contact-form-detailed input,
.contact-form-detailed textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.contact-form-detailed input:focus,
.contact-form-detailed textarea:focus {
    outline: none;
    border-color: var(--orange-warm);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 138, 0, 0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 18px 32px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }

    .services-grid-detailed,
    .technologies-grid,
    .portfolio-projects-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-detailed {
        padding: 30px 20px;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}