/* ============================================
   Portfolio Website - Dark & Orange Theme
   ============================================ */

:root {
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --orange-light: #ffa366;
    --orange-dark: #cc5529;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Mode Styles */
html.light-mode {
    --dark-bg: #ffffff;
    --dark-secondary: #f5f5f5;
    --dark-tertiary: #e0e0e0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #808080;
}

html.light-mode body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
}

html.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html.light-mode .section {
    background: var(--dark-secondary);
}

html.light-mode .card,
html.light-mode .service-card,
html.light-mode .testimonial-card,
html.light-mode .blog-card {
    background: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-theme {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0f0f 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orange {
    color: var(--orange-primary);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.navbar .container {
    padding-left: 0;
    padding-right: 20px;
    max-width: 100%;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
    opacity: 0.5;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.2), 0 0 0 1px rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.25);
    padding: 1rem 0;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem 0 1rem;
    width: 100%;
    gap: 1rem;
    position: relative;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-text:hover {
    transform: translateX(3px);
}

.logo-text .orange {
    color: var(--orange-primary);
    font-weight: 900;
    position: relative;
}

.logo-text .orange::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 2px;
    opacity: 0.8;
}

.logo {
    grid-column: 1;
    justify-self: start;
    margin-left: -1.5rem;
    padding-left: 0;
    margin-right: 0;
    position: relative;
    left: -0.5rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-image {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.2));
}

.logo-image:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 16px rgba(255, 107, 53, 0.4));
}

.navbar.scrolled .logo-image {
    height: 65px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    width: 100%;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

/* Hide mobile-only elements on desktop */
.nav-menu li.mobile-menu-logo,
.nav-menu li.mobile-menu-copyright {
    display: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 0.5rem;
    display: block;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover {
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link.active {
    color: var(--orange-primary);
    font-weight: 600;
}

.nav-link.active::before {
    width: 80%;
}

.nav-link.active::after {
    opacity: 1;
}

/* Nav Actions (Language + CTA) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    grid-column: 3;
    justify-self: end;
}

/* Header Language Selector */
.header-language-selector {
    position: relative;
}

.header-language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.header-language-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.header-language-btn.active {
    background: rgba(255, 107, 53, 0.25);
    border-color: var(--orange-primary);
}

.header-language-btn i:first-child {
    color: var(--orange-primary);
    font-size: 0.9rem;
}

.header-language-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.header-language-btn.active i:last-child {
    transform: rotate(180deg);
}

.header-language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.header-language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-language-options {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.header-language-option:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-primary);
    transform: translateX(4px);
}

.header-language-option.active {
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange-primary);
    font-weight: 600;
}

.header-language-option span {
    font-size: 1.2rem;
}

/* CTA Button */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta-btn::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: left 0.5s ease;
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--orange-secondary), var(--orange-primary));
    color: white !important;
}

.nav-cta-btn i {
    transition: transform 0.3s ease;
}

.nav-cta-btn:hover i {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--orange-primary);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--orange-primary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--orange-primary);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    width: 100%;
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 !important;
    margin-left: 0 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) contrast(1.1) blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(255, 107, 53, 0.15) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    margin-bottom: 4rem;
    padding-left: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left !important;
    width: 100%;
    max-width: 800px;
    margin-left: 0 !important;
    padding-left: 0;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--orange-primary) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 20px;
    z-index: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.animal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.animal {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.animal-1 {
    background: radial-gradient(circle, var(--orange-primary) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.animal-2 {
    background: radial-gradient(circle, var(--orange-secondary) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 150px;
    height: 150px;
}

.animal-3 {
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
    width: 80px;
    height: 80px;
}

.animal-4 {
    background: radial-gradient(circle, var(--orange-secondary) 0%, transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    width: 120px;
    height: 120px;
}

.animal-5 {
    background: radial-gradient(circle, var(--orange-primary) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 3s;
    width: 90px;
    height: 90px;
}

.animal-6 {
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-delay: 5s;
    width: 110px;
    height: 110px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--orange-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    text-align: left;
    width: 100%;
}

#typing-text {
    position: relative;
    display: inline-block;
}

#typing-text::after {
    content: '|';
    color: var(--orange-primary);
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    text-align: left;
    width: 100%;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--orange-secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    margin-left: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--orange-primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--orange-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.25) contrast(1.2) saturate(0.8);
    opacity: 0.4;
}

.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(255, 107, 53, 0.15) 100%);
    z-index: 1;
}

.about .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    display: block;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--orange-primary);
    font-weight: 600;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--orange-secondary);
    gap: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: visible;
    min-height: auto;
    position: relative;
    padding: 0 2rem;
}

.about-content > * {
    overflow: visible;
    min-width: 0;
    position: relative;
}

.about-image-section {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    max-width: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    width: 100%;
    overflow: visible;
    word-wrap: break-word;
    min-width: 0;
    max-width: 100%;
    font-weight: 400;
}

.about-text p {
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
}

.about-intro {
    margin-bottom: 2rem;
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
    font-size: 1.3rem;
    font-weight: 400;
}

.about-story {
    margin-bottom: 2.5rem;
    overflow: visible;
    word-wrap: break-word;
    white-space: normal;
    font-size: 1.3rem;
    font-weight: 400;
}

.about-promise {
    background: rgba(255, 107, 53, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--orange-primary);
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    overflow: visible;
    word-wrap: break-word;
    width: 100%;
    min-width: 0;
}

.promise-icon {
    font-size: 3.5rem;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.promise-content {
    flex: 1;
    min-width: 0;
    overflow: visible;
    word-wrap: break-word;
}

.promise-content p {
    overflow: visible;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
    word-wrap: break-word;
    white-space: normal;
}

.about-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    overflow: visible;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    overflow: visible;
    word-wrap: break-word;
    min-width: 0;
}

.skill-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
}

.skill-item i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.skill-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.promise-title {
    color: var(--orange-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: visible;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

/* ============================================
   Services Section
   ============================================ */

.services {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 2rem;
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.service-card {
    background: var(--dark-bg);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--orange-primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--orange-primary);
    font-size: 3.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--orange-primary);
    color: var(--text-primary);
    transform: rotate(5deg) scale(1.15);
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ============================================
   Companies Section
   ============================================ */

.companies {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companies .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.companies-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.companies-text {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 4rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* Companies Logos Grid */

.companies-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin: 0 auto 4rem auto;
    max-width: 1600px;
    padding: 0 2rem;
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.company-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3.5rem 2.5rem;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
    min-height: 200px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.company-logo:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.1);
}

.company-logo i {
    font-size: 5rem;
    color: var(--orange-primary);
    transition: all 0.3s ease;
}

.company-logo:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--orange-secondary);
}

.company-logo span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.company-logo:hover span {
    color: var(--orange-primary);
}

.companies-stats {
    font-size: 1.8rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    margin-top: 3rem;
    line-height: 1.5;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: var(--dark-bg);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.quote-icon {
    font-size: 4rem;
    color: var(--orange-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.stars i {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 400;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.rating-label {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   Blog Section
   ============================================ */

.blog {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.blog-card {
    background: var(--dark-bg);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-date {
    color: var(--orange-primary);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-author {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

.blog-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--orange-secondary);
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--dark-secondary) 50%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--orange-primary);
    color: var(--dark-bg);
    transform: rotate(5deg) scale(1.1);
}

.contact-details h3 {
    color: var(--orange-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-social {
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--dark-bg);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-social:hover::before {
    left: 100%;
}

.contact-social:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.contact-social h3 {
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--orange-primary) !important;
    text-decoration: none;
}

.social-link:hover {
    background: var(--orange-primary);
    color: var(--dark-bg) !important;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.social-link:hover {
    background: var(--orange-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--orange-primary);
}

.contact-form-wrapper {
    background: var(--dark-bg);
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: var(--dark-secondary);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-block:hover::before {
    width: 300px;
    height: 300px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success i {
    font-size: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 80px 0 30px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section p i {
    color: var(--orange-primary);
    font-size: 1.2rem;
    width: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    position: relative;
}

.footer-section ul li a i {
    color: var(--orange-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-section ul li a:hover i {
    transform: scale(1.2);
    color: var(--orange-secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--dark-secondary);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.05);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--orange-primary);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-form button:hover {
    background: var(--orange-secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.newsletter-form button:active {
    transform: translateY(-1px) scale(1.02);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom .orange {
    color: var(--orange-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-bottom .orange:hover {
    color: var(--orange-secondary);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ============================================
   Footer Redesign (Ky IPTV Style)
   ============================================ */

.footer-redesign {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Footer Top Section */
.footer-top {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    position: relative;
}

.footer-brand-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-logo .logo-text .orange {
    color: var(--orange-primary);
}

.footer-logo-image {
    height: 110px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-align: center;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Language Selector */
.footer-language-selector {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-left: auto;
}

.language-dropdown-btn {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
    justify-content: space-between;
}

.language-dropdown-btn:hover {
    background: var(--orange-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.language-dropdown-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.language-dropdown-btn.active i {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.language-dropdown-header {
    padding: 15px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-options {
    max-height: 320px;
    overflow-y: auto;
    padding: 5px 0;
}

.language-option {
    padding: 12px 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.language-flag {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.language-option:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    padding-left: 25px;
}

.language-option.active {
    background: rgba(255, 107, 53, 0.2);
    color: var(--orange-primary);
    font-weight: 600;
}

.language-option.active::before {
    content: '✓';
    margin-right: 10px;
    color: var(--orange-primary);
    font-weight: bold;
}

/* Scrollbar for language dropdown */
.language-options::-webkit-scrollbar {
    width: 6px;
}

.language-options::-webkit-scrollbar-track {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.language-options::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 10px;
}

.language-options::-webkit-scrollbar-thumb:hover {
    background: var(--orange-secondary);
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

[dir="rtl"] .footer-main {
    direction: rtl;
}

[dir="rtl"] .footer-column {
    text-align: right;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

[dir="rtl"] .footer-links li {
    text-align: right;
}

[dir="rtl"] .footer-language-selector {
    left: 0;
    right: auto;
}

[dir="rtl"] .language-dropdown-menu {
    left: 0;
    right: auto;
}

[dir="rtl"] .navbar {
    direction: rtl;
}

[dir="rtl"] .nav-menu {
    direction: rtl;
}

[dir="rtl"] .nav-menu li {
    text-align: right;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .about-content {
    text-align: right;
}

[dir="rtl"] .services-grid {
    direction: rtl;
}

[dir="rtl"] .portfolio-grid {
    direction: rtl;
}

[dir="rtl"] .blog-grid {
    direction: rtl;
}

/* Footer Main Content - 4 Columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-links li a i {
    color: var(--orange-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: scale(1.2);
    color: var(--orange-secondary);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-contact li a i {
    color: var(--orange-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-contact li a:hover i {
    transform: scale(1.2);
    color: var(--orange-secondary);
}

/* Social Media & Payment Methods */
.footer-social-payment {
    margin-bottom: 2rem;
}

/* Newsletter Section */
.footer-newsletter-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    color: var(--orange-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--dark-secondary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-submit-btn {
    padding: 0.875rem 2rem;
    background: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.newsletter-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.newsletter-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-newsletter-section {
        padding: 1.5rem;
    }
}

.footer-divider {
    height: 1px;
    background: rgba(255, 107, 53, 0.2);
    margin: 1.5rem 0;
}

.footer-social-payment-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--orange-primary);
    transform: translateY(-3px);
}

.social-divider {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 0 0.25rem;
}

.footer-payment {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: center;
    justify-items: center;
}

.payment-method-item {
    width: 70px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.payment-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.payment-method-item:hover .payment-logo {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.payment-more-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

/* Copyright Section */
.footer-copyright {
    text-align: center;
}

.copyright-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    padding-top: 1rem;
}

.copyright-text .orange {
    color: var(--orange-primary);
    font-weight: 700;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-top {
        margin-bottom: 2rem;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-language-selector {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social-payment-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-payment {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .payment-method-item {
        width: 60px;
        height: 40px;
    }
    
    .payment-more-text {
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (min-width: 1200px) {
    .companies-logos {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .companies-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    }
    
    .logo-image {
        height: 50px !important;
        max-width: 150px !important;
    }
    
    .navbar.scrolled .logo-image {
        height: 45px !important;
    }
    
    .footer-logo-image {
        height: 80px !important;
        max-width: 250px !important;
    }
    
    .nav-wrapper {
        padding: 0 1.25rem;
        gap: 1rem;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
    
    /* Menu button - Left */
    .menu-toggle {
        grid-column: 1;
        justify-self: start;
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: rgba(255, 107, 53, 0.1);
        border: 1px solid rgba(255, 107, 53, 0.2);
        padding: 0.5rem;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        order: 1;
    }
    
    .menu-toggle:hover {
        background: rgba(255, 107, 53, 0.2);
        border-color: rgba(255, 107, 53, 0.4);
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2.5px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .menu-toggle.active {
        background: rgba(255, 107, 53, 0.25);
        border-color: var(--orange-primary);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--orange-primary);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--orange-primary);
    }
    
    /* Logo - Center */
    .logo {
        grid-column: 2;
        justify-self: center;
        order: 2;
    }
    
    .logo-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        padding: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 2px solid rgba(255, 107, 53, 0.3);
        gap: 0;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 107, 53, 0.1);
        align-items: stretch;
        overflow-y: auto;
        z-index: 998;
        display: flex;
        justify-content: space-between;
    }
    
    /* Mobile Menu Logo */
    .mobile-menu-logo {
        display: block !important;
        padding: 2rem 1.5rem 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        margin-bottom: 1rem;
        background: rgba(255, 107, 53, 0.05);
    }
    
    .mobile-logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    
    .mobile-logo-image {
        height: 60px;
        width: auto;
        max-width: 200px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
        transition: all 0.3s ease;
    }
    
    .mobile-logo-link:hover .mobile-logo-image {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
    }
    
    /* Mobile Menu Copyright */
    .mobile-menu-copyright {
        display: block !important;
        margin-top: auto;
        padding: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        background: rgba(255, 107, 53, 0.05);
    }
    
    .mobile-copyright-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-copyright-text {
        color: var(--text-secondary);
        font-size: 0.85rem;
        margin: 0;
        font-weight: 500;
    }
    
    .mobile-copyright-text .orange {
        color: var(--orange-primary);
        font-weight: 700;
    }
    
    .mobile-copyright-subtext {
        color: var(--text-muted);
        font-size: 0.75rem;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    /* Logo and Copyright - No animation */
    .nav-menu li.mobile-menu-logo,
    .nav-menu li.mobile-menu-copyright {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    /* Navigation Links - With animation */
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright) {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.4s ease forwards;
    }
    
    .nav-menu.active li:not(.mobile-menu-logo):not(.mobile-menu-copyright) {
        animation: slideIn 0.4s ease forwards;
    }
    
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(2) { animation-delay: 0.1s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(3) { animation-delay: 0.15s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(4) { animation-delay: 0.2s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(5) { animation-delay: 0.25s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(6) { animation-delay: 0.3s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(7) { animation-delay: 0.35s; }
    .nav-menu li:not(.mobile-menu-logo):not(.mobile-menu-copyright):nth-of-type(8) { animation-delay: 0.4s; }
    
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        text-align: left;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 500;
        background: rgba(255, 107, 53, 0.08);
        border: 1px solid rgba(255, 107, 53, 0.15);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        overflow: hidden;
        margin: 0 1rem 0.5rem;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--orange-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: rgba(255, 107, 53, 0.18);
        border-color: rgba(255, 107, 53, 0.4);
        transform: translateX(8px);
        color: var(--orange-primary);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    }
    
    .nav-link:hover::before {
        transform: scaleY(1);
    }
    
    .nav-link.active {
        background: rgba(255, 107, 53, 0.25);
        border-color: var(--orange-primary);
        color: var(--orange-primary);
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    }
    
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    /* Language selector - Right */
    .nav-actions {
        grid-column: 3;
        justify-self: end;
        gap: 0.75rem;
        display: flex;
        align-items: center;
        order: 3;
    }
    
    /* Hide CTA button on mobile */
    .nav-cta-btn {
        display: none !important;
    }
    
    .header-language-selector {
        position: relative;
    }
    
    .header-language-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-width: auto;
        background: rgba(255, 107, 53, 0.15);
        border: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .header-language-btn span {
        display: none;
    }
    
    .header-language-btn i:first-child {
        font-size: 1rem;
        margin: 0;
    }
    
    .header-language-btn i:last-child {
        display: none;
    }
    
    .header-language-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
        top: calc(100% + 0.5rem);
    }
    

    /* Hero Section */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .hero-content-wrapper {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }
    
    .stat-item {
        width: 100%;
        text-align: left;
    }

    /* About Section */
    .about {
        padding: 60px 0;
        min-height: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-image-section {
        order: -1;
    }
    
    .about-text {
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .about-intro,
    .about-story {
        font-size: 1rem;
    }
    
    .about-promise {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .promise-icon {
        font-size: 2.5rem;
    }
    
    .promise-title {
        font-size: 1.4rem;
    }
    
    .promise-content p {
        font-size: 1rem;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
        min-height: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }

    /* Companies Section */
    .companies {
        padding: 60px 0;
        min-height: auto;
    }
    
    .companies-text {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .companies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .company-logo {
        padding: 1.5rem 1rem;
        min-width: auto;
        min-height: 140px;
    }
    
    .company-logo i {
        font-size: 2.5rem;
    }
    
    .company-logo span {
        font-size: 0.9rem;
    }
    
    .companies-stats {
        font-size: 1.1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    /* Testimonials Section */
    .testimonials {
        padding: 60px 0;
        min-height: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.95rem;
    }

    /* Blog Section */
    .blog {
        padding: 60px 0;
        min-height: auto;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0;
        min-height: auto;
    }
    
    .contact .container {
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        width: 100%;
    }
    
    /* Contact Info Section */
    .contact-info {
        width: 100%;
        order: 2;
    }
    
    .contact-item {
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details {
        width: 100%;
        text-align: center;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-link {
        font-size: 1rem;
        word-break: break-word;
        display: block;
    }
    
    .contact-social {
        padding: 1.5rem;
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .contact-social h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Contact Form Section */
    .contact-form-wrapper {
        padding: 2rem 1.25rem;
        order: 1;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }
    
    .btn-block {
        padding: 16px 24px;
        font-size: 1rem;
        width: 100%;
        margin-top: 0.5rem;
        min-height: 50px;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .about-image-section {
        order: -1;
    }
    
    .about-text {
        width: 100%;
        max-width: 100%;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 0;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.5rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        word-break: break-word;
    }
    
    .footer-section p i {
        font-size: 1rem;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
        width: 100%;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        justify-content: center;
        width: 100%;
    }
    
    .footer-section ul li a:hover {
        transform: none;
    }
    
    .footer-section ul li a i {
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0.5rem;
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .footer-bottom p {
        margin: 0;
        padding: 0;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Forms */
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Touch-friendly targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .companies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .company-logo {
        padding: 1.25rem 0.75rem;
        min-height: 120px;
    }
    
    .company-logo i {
        font-size: 2rem;
    }
    
    .company-logo span {
        font-size: 0.75rem;
    }
    
    .nav-wrapper {
        padding: 0 0.75rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-content-wrapper {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Contact Section - Extra Small */
    .contact {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .contact-social {
        padding: 1.25rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    /* Footer - Extra Small */
    .footer {
        padding: 35px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section p i {
        font-size: 0.9rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .newsletter-form input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .newsletter-form button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}
    
    .company-logo i {
        font-size: 3.5rem;
    }
    
    .company-logo span {
        font-size: 1rem;
    }
    
    .companies-stats {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}

/* ============================================
   Image Optimization & Performance
   ============================================ */

/* Lazy Loading Styles */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Images */
.hero-bg-image,
.about-bg-image {
    object-fit: cover;
    object-position: center;
}

/* Image Loading Placeholder */
img[data-src] {
    background: linear-gradient(90deg, var(--dark-tertiary) 25%, var(--dark-secondary) 50%, var(--dark-tertiary) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* WebP Support */
.webp-supported img {
    /* Additional optimizations for WebP supported browsers */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Image Performance Optimization */
img {
    will-change: auto;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Reduce layout shift for images */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Blur-up technique for better perceived performance */
.blur-up {
    filter: blur(5px);
    transition: filter 0.3s;
}

.blur-up.loaded {
    filter: blur(0);
}

/* ============================================
   Interactive Features
   ============================================ */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--dark-tertiary);
    border-top: 4px solid var(--orange-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--orange-primary);
}

.loading-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--orange-secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-tertiary);
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    color: var(--orange-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Parallax Elements */
.parallax {
    will-change: transform;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Light Mode Adjustments for Interactive Features */
html.light-mode .theme-toggle {
    background: var(--orange-primary);
    color: white;
}

html.light-mode .scroll-to-top {
    background: var(--dark-bg);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

html.light-mode .scroll-to-top:hover {
    background: var(--orange-primary);
    color: white;
}

html.light-mode .loading-screen {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

html.light-mode .loading-spinner {
    border-color: var(--dark-tertiary);
    border-top-color: var(--orange-primary);
}

/* Mobile Responsive for Interactive Features */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .scroll-to-top {
        bottom: 75px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .loading-content h2 {
        font-size: 1.5rem;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

.about-page {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(255, 107, 53, 0.03) 50%, rgba(10, 10, 10, 1) 100%);
}

/* About Hero Section */
.about-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Story Section */
.about-story-section {
    padding: 4rem 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Education Section */
.about-education-section {
    padding: 4rem 0;
}

.education-content {
    max-width: 900px;
    margin: 0 auto;
}

.education-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.education-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.education-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.education-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Learning Timeline Section */
.about-learning-section {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.02);
}

.learning-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.learning-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--orange-primary) 0%, rgba(255, 107, 53, 0.3) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    border: 4px solid var(--dark-bg);
}

.timeline-content {
    width: calc(50% - 60px);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Fiverr Section */
.about-fiverr-section {
    padding: 4rem 0;
}

.fiverr-content {
    max-width: 900px;
    margin: 0 auto;
}

.fiverr-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.fiverr-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.fiverr-icon {
    font-size: 4rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.fiverr-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.fiverr-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.fiverr-achievements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.achievement-badge {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--orange-primary);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: var(--orange-primary);
    color: white;
    transform: scale(1.05);
}

.achievement-badge i {
    font-size: 1.2rem;
}

/* Agency Section */
.about-agency-section {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.02);
}

.agency-content {
    max-width: 900px;
    margin: 0 auto;
}

.agency-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.agency-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.agency-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.agency-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.agency-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* CEO Section */
.about-ceo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
}

.ceo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem;
    border: 3px solid var(--orange-primary);
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.ceo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.ceo-badge {
    font-size: 4rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.ceo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.ceo-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.ceo-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Skills Section */
.about-skills-section {
    padding: 4rem 0;
}

.skills-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.skill-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.skill-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Promise Section */
.about-promise-section {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.02);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
}

.promise-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.promise-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.promise-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.promise-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.promise-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.promise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.promise-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.promise-feature i {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

/* Final Section */
.about-final-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.final-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.final-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--orange-primary);
    color: white;
    border: 2px solid var(--orange-primary);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-intro,
    .education-card,
    .fiverr-card,
    .agency-card,
    .promise-card {
        padding: 2rem;
    }
    
    .learning-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .ceo-card {
        padding: 2.5rem 1.5rem;
    }
    
    .ceo-title {
        font-size: 2rem;
    }
    
    .ceo-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    .final-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .fiverr-achievements {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promise-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(255, 107, 53, 0.03) 50%, rgba(10, 10, 10, 1) 100%);
}

/* Contact Hero Section */
.contact-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Content Section */
.contact-content-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* Contact Information Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.email-icon {
    background: rgba(255, 107, 53, 0.2);
    color: var(--orange-primary);
}

.phone-icon {
    background: rgba(34, 193, 195, 0.2);
    color: #22c1c3;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-method-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.contact-method-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-method-link:hover {
    color: var(--orange-secondary);
    transform: translateX(5px);
}

/* Social Media Section */
.contact-social-section {
    margin-top: 1rem;
}

.social-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-link-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-link-icon {
    font-size: 2rem;
    color: var(--orange-primary);
}

.upwork-link:hover .social-link-icon {
    color: #6fda44;
}

.linkedin-link:hover .social-link-icon {
    color: #0077b5;
}

.facebook-link:hover .social-link-icon {
    color: #1877f2;
}

.instagram-link:hover .social-link-icon {
    color: #e4405f;
}

.github-link:hover .social-link-icon {
    color: #ffffff;
}

.social-link-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.social-link-card:hover .social-link-text {
    color: var(--text-primary);
}

/* Response Time Card */
.response-time-card {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.response-time-icon {
    font-size: 2rem;
    color: var(--orange-primary);
}

.response-time-content {
    flex: 1;
}

.response-time-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.response-time-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Form Side */
.contact-form-side {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

/* Alert Messages */
.alert {
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alert-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.alert-list li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--orange-primary);
}

.required {
    color: var(--orange-primary);
}

.form-input,
.form-textarea {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.btn-submit {
    background: var(--orange-primary);
    color: white;
    border: 2px solid var(--orange-primary);
    border-radius: 10px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Additional Info Section */
.contact-additional-info {
    padding: 4rem 0;
    background: rgba(255, 107, 53, 0.02);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.info-card-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.info-card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.info-card-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-card-link:hover {
    color: var(--orange-secondary);
    transform: translateX(5px);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section-title {
        font-size: 2rem;
    }
    
    .contact-form-side {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Services Page Styles - NEW DESIGN
   ============================================ */

.services-page-new {
    padding-top: 120px;
    min-height: 100vh;
    background: var(--dark-bg);
}

/* Services Hero Section */
.services-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.services-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.services-stats .stat-item {
    text-align: center;
}

.services-stats .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
}

.services-stats .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Filter Section */
.services-filter-section {
    padding: 2rem 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    position: sticky;
    top: 100px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.service-card.popular {
    border-color: var(--orange-primary);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--orange-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.popular-badge i {
    font-size: 0.75rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-list li i {
    color: var(--orange-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.features-list li.more-features {
    color: var(--orange-primary);
    font-weight: 600;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.service-price,
.service-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-price i,
.service-delivery i {
    color: var(--orange-primary);
}

.service-price span {
    font-weight: 700;
    color: var(--orange-primary);
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-service-primary,
.btn-service-secondary {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-service-primary {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.btn-service-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-service-secondary {
    background: transparent;
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-service-secondary:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.services-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-cta-primary {
    background: var(--orange-primary);
    color: white;
    border-color: var(--orange-primary);
}

.btn-cta-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-cta-secondary:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid var(--orange-primary);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--orange-primary);
    border-radius: 50%;
    color: var(--orange-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--orange-primary);
    color: white;
    transform: rotate(90deg);
}

.modal-service-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.modal-service-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--orange-primary);
    margin: 0 auto 1.5rem;
}

.modal-service-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-service-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.modal-meta-item i {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

.modal-meta-item strong {
    color: var(--text-primary);
}

.modal-features-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.modal-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-features-list li i {
    color: var(--orange-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.modal-service-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.btn-modal-primary {
    background: var(--orange-primary);
    color: white;
    border: 2px solid var(--orange-primary);
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-modal-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-stats {
        gap: 2rem;
    }
    
    .services-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .btn-service-primary,
    .btn-service-secondary {
        width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .modal-features-list {
        grid-template-columns: 1fr;
    }
    
    .services-filter-section {
        position: static;
    }
}

/* ============================================
   NEW Services Page Design
   ============================================ */

/* Hero Section */
.services-hero-new {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
}

.services-hero-content-new {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-title-new {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.services-hero-subtitle-new {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid-new {
    padding: 3rem 0 5rem;
}

.services-grid-new .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-item-new {
    position: relative;
}

.service-item-inner {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item-inner:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-item-inner:hover::before {
    opacity: 1;
}

.service-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--orange-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-item-inner:hover .service-icon-new {
    background: var(--orange-primary);
    color: white;
    transform: scale(1.1);
}

.service-content-new {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header-new {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-title-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
}

.service-badge-new {
    background: var(--orange-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.service-description-new {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-info-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.service-price-new,
.service-time-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-price-new i,
.service-time-new i {
    color: var(--orange-primary);
    font-size: 0.85rem;
}

.service-price-new {
    font-weight: 600;
    color: var(--orange-primary);
}

.service-actions-new {
    margin-top: auto;
}

.btn-service-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--orange-primary);
    border-radius: 10px;
    color: var(--orange-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-service-new:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* CTA Section */
.services-cta-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(10, 10, 10, 1) 100%);
    text-align: center;
}

.cta-content-new {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-text-new {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-cta-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-new:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-new .container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero-title-new {
        font-size: 2.2rem;
    }
    
    .services-hero-subtitle-new {
        font-size: 1rem;
    }
    
    .services-grid-new {
        padding: 2rem 0 4rem;
    }
    
    .services-grid-new .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item-inner {
        padding: 1.5rem;
    }
    
    .service-title-new {
        font-size: 1.2rem;
    }
    
    .cta-title-new {
        font-size: 2rem;
    }
    
    .cta-text-new {
        font-size: 1rem;
    }
    
    .btn-cta-new {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

