:root {
    --black: #000000;
    --gray-950: #0a0a0a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-600: #6a6a6a;
    --gray-500: #8a8a8a;
    --gray-400: #aaaaaa;
    --gray-300: #cccccc;
    --gray-200: #e0e0e0;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f8;
    
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --red-500: #ef4444;
    --red-400: #f87171;
    --red-300: #fca5a5;
    
    --silver-400: #cbd5e1;
    --silver-300: #e2e8f0;
    
    --white: #ffffff;
    
    --font-display: 'Orbitron', 'Rajdhani', 'Outfit', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-red: 0 10px 30px rgba(220, 38, 38, 0.4);
    --shadow-red-lg: 0 20px 40px rgba(220, 38, 38, 0.5);
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--red-600);
    transition: all var(--transition-base);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
    clip-path: inset(2px 2px 2px 2px);
}

.logo-text {
    display: inline-block;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-600);
    box-shadow: 0 0 8px var(--red-600);
    transition: width var(--transition-base);
}

nav a:hover {
    color: var(--red-400);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, var(--gray-950) 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    color: var(--red-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-400);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
    color: var(--white);
    box-shadow: var(--shadow-red);
    border: 1px solid var(--red-500);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-lg);
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid var(--gray-600);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-600);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem 2.5rem;
}

section.alt-bg {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-red);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Core Values */
.core-values {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.core-values h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.value-content h4 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.value-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-600) 0%, var(--red-800) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    box-shadow: 0 0 10px var(--red-600);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-red);
    border: 1px solid var(--red-500);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    transition: transform var(--transition-base);
}

.team-member:hover {
    transform: translateY(-8px);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--gray-900) 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--red-700);
}

.team-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--red-600);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
    font-weight: 600;
    font-size: 0.95rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--red-600);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
    color: var(--white);
    border: 1px solid var(--red-500);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-red);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red-lg);
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-red);
    border: 1px solid var(--red-500);
}

.info-text h3 {
    color: var(--navy-900);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-text p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--gray-400);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid var(--red-600);
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */

/* Tablets and below */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }
    
    section {
        padding: 5rem 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
    /* Mobile menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 76px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: right var(--transition-slow);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        z-index: 999;
        border-left: 2px solid var(--red-600);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 1.25rem;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-800);
    }
    
    .nav-menu a::after {
        bottom: 0.75rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
    }
    
    /* Hero section */
    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    /* Sections */
    section {
        padding: 4rem 1.5rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    /* About */
    .core-values {
        padding: 2rem;
    }
    
    .value-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact-form {
        padding: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    nav {
        padding: 1rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 48px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Team single column */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }
    
    /* Contact info */
    .info-item {
        gap: 1rem;
    }
    
    .info-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    /* Form inputs */
    input, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Large desktop optimization */
@media (min-width: 1400px) {
    section {
        padding: 8rem 2.5rem;
    }
    
    .hero {
        padding: 10rem 2rem 6rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    nav a,
    .cta-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .team-member:hover,
    .stat-card:hover {
        transform: none;
    }
    
    /* Make cards tappable with visual feedback */
    .service-card:active,
    .stat-card:active {
        transform: scale(0.98);
    }
}

/* Print styles */
@media print {
    header {
        position: relative;
        background: var(--white);
        color: var(--navy-950);
    }
    
    .hero-grid,
    .mobile-menu-toggle,
    .cta-group,
    footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Service Links */
.service-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--red-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: var(--font-display);
}

.service-link:hover {
    color: var(--red-400);
    transform: translateX(5px);
}

/* Service Detail Pages */
.service-detail-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, var(--gray-950) 100%);
    color: var(--white);
    text-align: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
}

.service-detail-hero p {
    font-size: 1.5rem;
    color: var(--gray-400);
    position: relative;
    z-index: 1;
}

.service-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-description h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.service-description h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-description li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
}

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

.pricing-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.pricing-section h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--red-600);
    box-shadow: var(--shadow-red);
    transform: translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.pricing-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-section .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive for service pages */
@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 8rem 1.5rem 3rem;
    }
    
    .service-detail-content {
        padding: 3rem 1.5rem;
    }
}