:root {
    --primary-red: #DC143C;
    --primary-red-dark: #B8122E;
    --primary-red-light: #FF2D55;
    --dark-grey: #2C2C2C;
    --darker-grey: #1A1A1A;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --text-grey: #CCCCCC;
    --text-grey-light: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--darker-grey);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: all 0.25s ease-out;
    will-change: background, padding, box-shadow;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    order: 3;
    margin-left: auto;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6)) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: static;
    flex-direction: row;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: auto;
    text-align: center;
    transition: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    z-index: auto;
    height: auto;
    overflow: visible;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    order: 2;
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
    padding: 0.5rem 0;
    width: auto;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.nav-menu a:hover {
    color: var(--primary-red);
    text-shadow: 0 2px 15px rgba(220, 20, 60, 0.6);
}

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

.nav-menu a.active {
    color: var(--primary-red);
    text-shadow: 0 2px 20px rgba(220, 20, 60, 0.8);
}

.nav-menu a.active::after {
    width: 100%;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 32px;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(220, 20, 60, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    order: 1;
}

.hamburger:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.08);
    box-shadow: 0 4px 25px rgba(220, 20, 60, 0.4);
}

.hamburger:active {
    transform: scale(0.92);
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    box-shadow: 0 2px 15px rgba(220, 20, 60, 0.7), 0 0 20px rgba(220, 20, 60, 0.5);
    transform: translateX(-50%);
}

.hamburger:hover span {
    background: var(--primary-red);
    box-shadow: 0 2px 18px rgba(220, 20, 60, 0.8), 0 0 25px rgba(220, 20, 60, 0.6);
    height: 4px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active {
    background: rgba(220, 20, 60, 0.25);
    box-shadow: 0 4px 25px rgba(220, 20, 60, 0.4);
}

.hamburger.active span {
    background: var(--primary-red);
    box-shadow: 0 2px 15px rgba(220, 20, 60, 0.9), 0 0 25px rgba(220, 20, 60, 0.6);
    height: 4px;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 30px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    width: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30px;
}

.nav-menu li {
    margin: 0;
    list-style: none;
}

/* Hero Section - Complete Redesign */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}

/* New Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    will-change: auto;
}

.animated-grid {
    display: none;
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    will-change: auto;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(220, 20, 60, 0.15);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(220, 20, 60, 0.12);
    bottom: -80px;
    right: -80px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(220, 20, 60, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Container - Split Layout */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: 100vh;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.08);
    filter: blur(80px);
    animation: float-shape 25s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-delay: 8s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: 10%;
    animation-delay: 15s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-float 20s infinite;
    box-shadow: 0 0 8px var(--primary-red);
}

.particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    left: 35%;
    animation-delay: 3s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 55%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 75%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 4s;
    animation-duration: 17s;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(30px) scale(1);
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    z-index: 1;
}

/* Hero Left - Content Section */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    align-items: flex-start;
}

.hero-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(220, 20, 60, 0.3);
    animation: ring-pulse 3s ease-in-out infinite;
}

.logo-glow-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(220, 20, 60, 0.5);
    animation: ring-rotate 8s linear infinite;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.hero-logo-img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(220, 20, 60, 0.8));
    animation: logo-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 60px rgba(220, 20, 60, 0.8));
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        filter: drop-shadow(0 0 80px rgba(220, 20, 60, 1));
    }
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.logo-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: particle-orbit 8s linear infinite;
}

.logo-particles span:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.logo-particles span:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.logo-particles span:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 4s;
}

.logo-particles span:nth-child(4) {
    top: 50%;
    left: 0;
    animation-delay: 6s;
}

.logo-particles span:nth-child(5) {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes particle-orbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

/* Hero Right - Logo Section */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
    color: var(--primary-red);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(10px);
    width: fit-content;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.2);
    animation: badge-slide-in 0.8s ease-out;
    margin-bottom: 0;
    align-self: flex-start;
}

.badge-icon {
    font-size: 1.2rem;
    animation: icon-spin 3s linear infinite;
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes badge-slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title-new {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    animation: title-fade-in 1s ease-out 0.2s both;
    align-self: flex-start;
    width: 100%;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    letter-spacing: 8px;
    text-transform: uppercase;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff3366 50%, var(--primary-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

@keyframes title-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-grey);
    margin: 0;
    font-weight: 400;
    line-height: 1.7;
    animation: tagline-fade-in 1s ease-out 0.4s both;
    max-width: 600px;
    align-self: flex-start;
}

@keyframes tagline-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-services-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
    animation: services-fade-in 1s ease-out 0.6s both;
    align-self: flex-start;
    width: 100%;
}

@keyframes services-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.1);
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon-wrapper {
    background: rgba(220, 20, 60, 0.3);
    transform: rotate(5deg) scale(1.1);
}

.service-card span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

.hero-buttons-new {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0;
    animation: buttons-fade-in 1s ease-out 0.8s both;
    align-self: flex-start;
}

@keyframes buttons-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-modern svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s;
}

.btn-modern:hover svg {
    transform: translateX(5px);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.5);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.7);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-grey);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    animation: scroll-indicator-pulse 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-red) 0%, transparent 100%);
    border-radius: 2px;
    animation: scroll-line-move 2s ease-in-out infinite;
}

@keyframes scroll-line-move {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

@keyframes scroll-indicator-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Old hero styles removed - using new design */

.hero-logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 45px rgba(220, 20, 60, 0.7));
    animation: logo-glow 4s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

.hero-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 80px rgba(220, 20, 60, 1));
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 50px rgba(220, 20, 60, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(220, 20, 60, 0.95));
        transform: scale(1.01);
    }
}

.hero-services {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 0 2.5rem 0;
    padding: 0;
    position: relative;
    flex-wrap: nowrap;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.hero-service-item:hover {
    transform: translateX(3px) scale(1.01);
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 5px 25px rgba(220, 20, 60, 0.4);
}

.service-bullet {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    animation: bullet-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bullet-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(220, 20, 60, 0.9);
    }
}

@keyframes bullet-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(220, 20, 60, 0.9);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5), 0 0 30px rgba(220, 20, 60, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 35px rgba(220, 20, 60, 0.7), 0 0 50px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.3s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--dark-grey);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
    text-align: center;
}


/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--darker-grey) 0%, var(--dark-grey) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.5), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    will-change: transform, opacity;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-grey-light);
    margin-top: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, var(--darker-grey) 0%, rgba(44, 44, 44, 0.5) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    will-change: transform, opacity;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4), 0 0 60px rgba(220, 20, 60, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--darker-grey) 0%, rgba(220, 20, 60, 0.1) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-grey);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.additional-services {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
    position: relative;
}

.additional-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.additional-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
    width: 100%;
}

.additional-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.additional-subtitle {
    text-align: center;
    color: var(--text-grey);
    font-size: 1.1rem;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.additional-item {
    background: linear-gradient(135deg, var(--darker-grey) 0%, rgba(44, 44, 44, 0.6) 100%);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    will-change: transform, opacity;
}

.additional-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.additional-item:hover::before {
    transform: scaleX(1);
}

.additional-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.additional-item:hover::after {
    opacity: 1;
}

.additional-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4), 0 0 60px rgba(220, 20, 60, 0.2);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(44, 44, 44, 0.8) 100%);
}

.additional-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(220, 20, 60, 0.3);
    color: var(--primary-red);
}

.additional-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.additional-item:hover .additional-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
}

.additional-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.additional-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.additional-content p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s;
}

.additional-item:hover .additional-content h4 {
    color: var(--primary-red);
}

.additional-item:hover .additional-content p {
    color: var(--text-grey-light);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--darker-grey) 100%);
    position: relative;
}

.about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-description {
    will-change: transform, opacity;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-description p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(220, 20, 60, 0.03) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.08) 100%);
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateX(5px);
}

/* About visual section removed - using features grid instead */

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--darker-grey) 0%, var(--dark-grey) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.5), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, var(--darker-grey) 0%, rgba(44, 44, 44, 0.5) 100%);
    border-radius: 25px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4), 0 0 60px rgba(220, 20, 60, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    color: var(--primary-red);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--darker-grey) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(44, 44, 44, 0.6) 100%);
    border-radius: 30px;
    border: 2px solid rgba(220, 20, 60, 0.15);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, opacity;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), var(--primary-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
}

.contact-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translate(50%, 50%);
}

.contact-item:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px) translateX(5px);
    box-shadow: 0 25px 60px rgba(220, 20, 60, 0.5), 
                0 0 80px rgba(220, 20, 60, 0.3),
                inset 0 0 30px rgba(220, 20, 60, 0.1);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(220, 20, 60, 0.08) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-red);
    border: 3px solid rgba(220, 20, 60, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
}

.contact-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    transform: rotate(-8deg) scale(1.15);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.7),
                0 0 50px rgba(220, 20, 60, 0.5),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-item:hover .contact-icon svg {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.contact-details {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: left;
}

.contact-details h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    transition: all 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item:hover .contact-details h4 {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
    transform: translateX(5px);
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

.contact-details a:hover {
    color: var(--primary-red-light);
    transform: translateY(-3px) translateX(5px);
    text-shadow: 0 0 25px rgba(220, 20, 60, 0.8),
                 0 5px 15px rgba(220, 20, 60, 0.4);
}

.contact-details p {
    color: var(--text-grey);
    line-height: 2;
    font-size: 1.05rem;
    margin: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-details p {
    color: var(--text-grey-light);
    transform: translateX(3px);
}

.contact-form-container {
    background: linear-gradient(135deg, var(--dark-grey) 0%, rgba(26, 26, 26, 0.8) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.contact-form-container:hover {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    background: var(--darker-grey);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.15), 0 0 20px rgba(220, 20, 60, 0.2);
    transform: translateY(-2px);
    background: rgba(26, 26, 26, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--darker-grey) 0%, #0f0f0f 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.5), transparent);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

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

.footer-info p {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
}

.footer-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
    transition: left 0.5s;
}

.footer-phone:hover::before {
    left: 100%;
}

.footer-phone::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-red-light));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.footer-phone:hover::after {
    transform: scaleY(1);
}

.footer-phone:hover {
    color: var(--white);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(220, 20, 60, 0.15) 100%);
    border-color: var(--primary-red);
    transform: translateX(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4), 0 0 40px rgba(220, 20, 60, 0.2);
}

.phone-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(220, 20, 60, 0.2);
    border-radius: 12px;
    transition: all 0.4s;
    flex-shrink: 0;
    border: 2px solid rgba(220, 20, 60, 0.4);
}

.footer-phone:hover .phone-icon {
    background: var(--primary-red);
    transform: scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.6);
}

.phone-number {
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: flex !important;
        list-style: none;
        gap: 0;
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        width: 100%;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                    opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                    visibility 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                    background 0.5s ease,
                    backdrop-filter 0.5s ease,
                    -webkit-backdrop-filter 0.5s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
        padding: 5rem 0 2rem 0;
        border-top: none;
        z-index: 999;
        height: 100vh;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: center;
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
        list-style: none;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.45s; }

    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        width: 100%;
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-red);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(220, 20, 60, 0.05);
        padding-left: 2.5rem;
    }

    .nav-menu a:hover::before {
        transform: scaleY(1);
    }

    .hamburger {
        display: flex;
        width: 36px;
        height: 30px;
        padding: 8px 6px;
    }
    
    .hamburger span {
        width: 26px;
        height: 3px;
    }
    
    .hamburger:hover span,
    .hamburger.active span {
        height: 3.5px;
    }
    
    .hamburger.active span:nth-child(1),
    .hamburger.active span:nth-child(3) {
        width: 26px;
    }

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

    .hero-logo-img {
        width: 150px;
        height: 150px;
    }

    .hero-services {
        gap: 1rem;
    }

    .hero-service-item {
        font-size: 1.1rem;
    }

    .large-tune {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-left,
    .contact-right {
        gap: 2rem;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-item {
        padding: 2.5rem 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
    }

    .contact-icon svg {
        width: 40px;
        height: 40px;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .contact-details a {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .contact-item:hover .contact-details h4,
    .contact-item:hover .contact-details p {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        width: 120px;
        height: 120px;
    }

    .footer-contact {
        text-align: center;
        align-items: center;
    }

    .footer-phone {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-left {
        order: 2;
        margin-bottom: 0.5rem;
        margin-top: 1rem;
        gap: 2rem;
    }

    .hero-right {
        order: 1;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge-new,
    .hero-title-new,
    .hero-tagline,
    .hero-services-new,
    .hero-buttons-new {
        align-self: center;
    }

    .hero-logo-img {
        width: 180px;
        height: 180px;
    }

    .logo-glow-ring {
        width: 240px;
        height: 240px;
    }

    .hero-badge-new {
        margin-bottom: 0;
    }

    .hero-title-new {
        font-size: 3.5rem;
        align-items: center;
        margin-bottom: 0;
        gap: 0.3rem;
    }

    .title-line {
        letter-spacing: 4px;
    }

    .hero-tagline {
        margin-bottom: 0;
    }

    .hero-services-new {
        justify-content: center;
        margin: 0;
        gap: 1rem;
    }

    .hero-services-new .service-card {
        min-width: 120px;
        flex: 0 1 auto;
        padding: 1.4rem 1.2rem;
    }

    .hero-buttons-new {
        margin-top: 0;
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

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

    .hero-left {
        order: 2;
        margin-bottom: 0.5rem;
        margin-top: 1.5rem;
        gap: 2rem;
    }

    .hero-right {
        order: 1;
        gap: 1.3rem;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge-new,
    .hero-title-new,
    .hero-tagline,
    .hero-services-new,
    .hero-buttons-new {
        align-self: center;
    }

    .hero-logo-img {
        width: 140px;
        height: 140px;
    }

    .logo-glow-ring {
        width: 200px;
        height: 200px;
    }

    .hero-badge-new {
        padding: 0.75rem 1.8rem;
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 0;
    }

    .hero-title-new {
        font-size: 2.5rem;
        margin-bottom: 0;
        gap: 0.2rem;
    }

    .title-line {
        letter-spacing: 3px;
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .hero-services-new {
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
        margin: 0;
    }

    .hero-services-new .service-card {
        width: 100%;
        min-width: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
        text-align: center;
        border-radius: 18px;
    }

    .hero-services-new .service-icon-wrapper {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .hero-services-new .service-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .hero-services-new .service-card span {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-buttons-new {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 0;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 2rem;
        margin-top: 0.8rem;
        color: var(--text-grey-light);
        font-weight: 500;
        letter-spacing: 0.3px;
        text-align: center;
        display: block;
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 0;
    }

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

    .services-grid .service-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-features {
        margin-top: 1rem;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        padding-left: 1.2rem;
    }

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

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .additional-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .additional-subtitle {
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
    }

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

    .additional-item {
        padding: 2rem 1.5rem;
    }

    .additional-icon {
        width: 70px;
        height: 70px;
    }

    .additional-icon svg {
        width: 35px;
        height: 35px;
    }

    .additional-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .additional-content p {
        font-size: 0.9rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 0.8rem 1rem;
    }

    .feature-item svg {
        width: 20px;
        height: 20px;
    }

    .feature-item span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo-large {
        flex-direction: column;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
        line-height: 1.65;
        margin-top: 0.7rem;
        color: var(--text-grey-light);
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    .section-title {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0;
    }

    .hero-services-new .service-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-services-new .service-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .hero-services-new .service-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }

    .hero-services-new .service-card span {
        font-size: 1.1rem;
    }

    .services-grid .service-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .services-grid .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
    }

    .services-grid .service-card p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.8rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
        padding-left: 1rem;
    }
}