/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Using Grassroots red from logo */
    --primary-color: #e63946;
    --secondary-color: #d62d20;
    --accent-color: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --background-primary: #000000;
    --background-secondary: #111111;
    --background-tertiary: #1a1a1a;
    --border-color: #333333;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    
    /* Glass morphism colors */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    
    /* Borders */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    /* Shadows - Updated to use Grassroots red */
    --shadow-sm: 0 1px 2px 0 rgba(230, 57, 70, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(230, 57, 70, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(230, 57, 70, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(230, 57, 70, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-primary.large, .btn-secondary.large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    z-index: 1000;
    transition: all var(--transition-normal);
    height: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar:hover {
    background: rgba(20, 20, 20, 0.98);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-lg);
    max-width: none;
    margin: 0;
    height: 100%;
}

/* Nav Logo Container */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 150px; /* Ensure minimum space for logo */
}

.nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-logo .accent {
    color: var(--primary-color);
    margin-left: 0.2em;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(230, 57, 70, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    padding: 10px;
    border-radius: 20px;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.05);
}

.hamburger:hover {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.05);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 100px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--spacing-lg);
    z-index: 9999;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-menu.active .nav-link {
    font-size: 1.1rem;
    margin: var(--spacing-xs) 0;
    padding: var(--spacing-sm) var(--spacing-lg);
    width: 100%;
    text-align: center;
    border-radius: 15px;
    border: 1px solid transparent;
}

.nav-menu.active .nav-link:hover {
    border-color: rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.1);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height for all screen sizes */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#physics-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    cursor: grab;
}

#physics-canvas:active {
    cursor: grabbing;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(230, 57, 70, 0.1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    pointer-events: none;
}

.hero-content * {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(
        135deg,
        var(--text-primary) 0%,
        var(--primary-color) 50%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    line-height: 1.6;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-content .btn-primary,
.hero-content .btn-secondary {
    pointer-events: auto;
}

/* Modern Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease-out forwards;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) translateZ(50px) rotateX(8deg) rotateY(5deg) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 50px rgba(230, 57, 70, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    margin: 0 auto var(--spacing-md) auto;
    box-shadow: 
        0 10px 25px rgba(230, 57, 70, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    border-radius: inherit;
    transition: opacity var(--transition-normal);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

/* 3D Lucide Icon Styling */
.service-icon .lucide-3d {
    width: 40px;
    height: 40px;
    color: white;
    stroke-width: 1.8;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2))
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    z-index: 2;
    position: relative;
    transition: all var(--transition-bounce);
    transform-style: preserve-3d;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1) rotateX(15deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(230, 57, 70, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15),
        0 0 30px rgba(230, 57, 70, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 0.8;
}

.service-card:hover .service-icon::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.service-card:hover .service-icon .lucide-3d {
    transform: scale(1.05) rotateZ(5deg);
    filter: 
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 40px rgba(230, 57, 70, 0.3));
}

/* Add pulse animation for extra appeal */
@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 10px 25px rgba(230, 57, 70, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 30px rgba(230, 57, 70, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.15),
            0 0 20px rgba(230, 57, 70, 0.4);
    }
}

.service-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    animation: none;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Modern Portfolio Section */
.portfolio {
    padding: var(--spacing-3xl) 0;
    background: var(--background-secondary);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 20%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.portfolio-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease-out forwards;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.3s; }
.portfolio-item:nth-child(3) { animation-delay: 0.5s; }

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.portfolio-item:hover::after {
    transform: scaleX(1);
}

.portfolio-item:hover {
    transform: translateY(-12px) translateZ(40px) rotateX(6deg) rotateY(-3deg) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(230, 57, 70, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portfolio-item h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
}

.portfolio-item p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.portfolio-stats {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.portfolio-stats span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    transition: transform var(--transition-normal);
}

.portfolio-item:hover .portfolio-stats span {
    transform: scale(1.05);
}

/* Modern About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-tertiary) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.feature {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease-out forwards;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(247, 147, 30, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-10px) translateZ(30px) rotateX(5deg) rotateY(2deg) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(230, 57, 70, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.375rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--primary-color) 50%, 
        #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.feature h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff4757);
    border-radius: 1px;
    transition: width 0.4s ease;
}

.feature:hover h4::after {
    width: 60px;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section - Motion Primitives Inspired Design */
.contact {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, 
        rgba(6, 6, 6, 0.98) 0%, 
        rgba(12, 12, 12, 0.95) 40%,
        rgba(18, 18, 18, 0.92) 80%,
        rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 71, 87, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact .section-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        rgba(230, 57, 70, 0.9) 50%, 
        var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-content > p {
    font-size: 1.375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Main Contact Layout - Grid Based */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-4xl);
    align-items: start;
    margin-top: var(--spacing-2xl);
}

/* Contact Info - Stacked Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.contact-section-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg) var(--spacing-xl);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff4757);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.03) 0%, 
        rgba(255, 71, 87, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-item:hover::before {
    width: 100%;
}

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

.contact-item:hover {
    transform: translateY(-4px) translateX(2px);
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(230, 57, 70, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.025em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-item h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
    flex-shrink: 0;
}

.contact-item p {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Form Section - Modern Card Design */
.contact-form-section {
    position: relative;
}

.form {
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.6) 0%, 
        rgba(25, 25, 25, 0.8) 100%);
    backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(230, 57, 70, 0.5), 
        transparent);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    background: rgba(12, 12, 12, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: var(--font-primary);
    font-weight: 500;
    position: relative;
}

.form input::placeholder,
.form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(12, 12, 12, 0.95);
    box-shadow: 
        0 0 0 4px rgba(230, 57, 70, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iI2ZmZmZmZiIgZmlsbC1vcGFjaXR5PSIwLjQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    background-size: 12px;
    padding-right: var(--spacing-2xl);
}

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

.btn-primary.full-width {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-primary.full-width:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 25px 50px rgba(230, 57, 70, 0.35),
        0 10px 20px rgba(230, 57, 70, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: var(--spacing-2xl) 0;
    }
    
    .contact .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .contact-content > p {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-2xl);
    }
    
    .form {
        padding: var(--spacing-xl);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-item {
        padding: var(--spacing-md) var(--spacing-lg);
        text-align: center;
    }
    
    .contact-item h4 {
        justify-content: center;
    }
    
    .contact-section-label {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form input,
    .form select,
    .form textarea {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .contact-item h4 {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 1.125rem;
    }
}

/* Modern Footer */
.footer {
    background: var(--background-primary);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.footer-logo .accent {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width var(--transition-normal);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        top: 15px;
        width: calc(100% - 20px);
        height: 55px;
        border-radius: 30px;
    }
    
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-logo {
        min-width: 120px; /* Adjust for mobile */
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        top: 85px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        padding: var(--spacing-md);
    }
    
    .hero {
        padding-top: 40px;
        height: 100vh; /* Ensure full viewport height on mobile */
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn-primary.large,
    .hero-cta .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }

    /* Mobile Logo Image Styles */
    .logo-image {
        height: 32px;
    }
    
    .footer-logo-image {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 30px;
        height: 100vh; /* Ensure full viewport height on smallest screens */
    }
    
    .hero-title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .service-card,
    .portfolio-item,
    .feature,
    .contact-item {
        padding: var(--spacing-md);
    }
    
    .form {
        padding: var(--spacing-lg);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.accent { color: var(--primary-color); } 

/* Logo Image Styles */
.logo-image {
    height: 40px;
    width: auto;
    transition: all var(--transition-normal);
    filter: brightness(1);
    display: block;
    object-fit: contain;
    vertical-align: middle;
}

.logo-image:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-xs);
    filter: brightness(0.9);
    transition: all var(--transition-normal);
}

.footer-logo-image:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #d32f2f;
    box-shadow: 
        0 8px 25px rgba(230, 57, 70, 0.25),
        0 0 0 4px rgba(230, 57, 70, 0.1);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.02);
}

.double-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.3s ease;
}

.arrow {
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
    transform: rotate(45deg);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.arrow-1 {
    margin-bottom: -2px;
}

.arrow-2 {
    opacity: 0.7;
    margin-top: -2px;
}

.back-to-top:hover .double-arrow {
    transform: translateY(-1px);
}

.back-to-top:hover .arrow {
    opacity: 1;
    border-color: #d32f2f;
}

.back-to-top:hover .arrow-2 {
    opacity: 0.8;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .arrow {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }
}

/* Strategic Edge Section - Modern Design */
.strategic-edge-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(17, 17, 17, 0.6) 30%,
        rgba(26, 26, 26, 0.8) 70%,
        rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.strategic-edge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.strategic-edge-container {
    position: relative;
    z-index: 2;
}

.strategic-edge-title {
    text-align: center;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.strategic-edge-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.strategic-edge-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    font-weight: 400;
}

.strategic-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.feature-card-primary::before {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
}

.feature-card-secondary::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.feature-card-accent::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.feature-card-gradient::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
}

.feature-card-adaptive::before {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(230, 57, 70, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card-primary .feature-icon {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.1));
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.feature-card-secondary .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.feature-card-accent .feature-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.feature-card-gradient .feature-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-card-adaptive .feature-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-lucide-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-card:hover .feature-lucide-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px currentColor);
}

.feature-card-header h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.strategic-edge-footer {
    text-align: center;
    position: relative;
    padding-top: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.strategic-edge-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 1px;
}

.footer-content {
    padding-top: var(--spacing-2xl);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.footer-tagline {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.footer-cta {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.08));
    border: 2px solid rgba(230, 57, 70, 0.4);
    border-radius: var(--border-radius-xl);
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

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

.footer-cta:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 12px 35px rgba(230, 57, 70, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(230, 57, 70, 0.1));
}

/* Mobile responsiveness for Strategic Edge footer */
@media (max-width: 768px) {
    .strategic-edge-footer {
        padding-top: var(--spacing-xl);
        margin-top: var(--spacing-lg);
    }
    
    .footer-content {
        padding-top: var(--spacing-xl);
        max-width: 90%;
        gap: var(--spacing-lg);
    }
    
    .footer-tagline {
        font-size: 1.125rem;
    }
    
    .footer-cta {
        font-size: 1.125rem;
        padding: var(--spacing-md) var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-tagline {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .footer-cta {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

/* Mobile responsiveness for Strategic Edge */
@media (max-width: 768px) {
    .strategic-edge-section {
        padding: var(--spacing-xl);
    }
    
    .strategic-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-card-header {
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-lucide-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .strategic-edge-section {
        padding: var(--spacing-lg);
    }
    
    .strategic-edge-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .strategic-edge-subtitle {
        font-size: 1rem;
    }
}

/* Campaign Blocks - New Portfolio Design */
.campaign-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.campaign-block {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.campaign-block:nth-child(1) { animation-delay: 0.1s; }
.campaign-block:nth-child(2) { animation-delay: 0.2s; }
.campaign-block:nth-child(3) { animation-delay: 0.3s; }
.campaign-block:nth-child(4) { animation-delay: 0.4s; }
.campaign-block:nth-child(5) { animation-delay: 0.5s; }

.campaign-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, 
        rgba(12, 12, 12, 0.8) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
}

.campaign-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.campaign-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.campaign-year,
.campaign-region {
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.1) 0%, 
        rgba(255, 71, 87, 0.05) 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.campaign-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(230, 57, 70, 0.05) 0%, 
        rgba(255, 71, 87, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.campaign-block:hover::after {
    opacity: 1;
}

.campaign-block:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(230, 57, 70, 0.1);
}

.campaign-block:hover .campaign-image {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

.campaign-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    flex-shrink: 0;
}

.campaign-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.925rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(230, 57, 70, 0.2);
    align-self: flex-start;
}

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

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

.view-more-btn:hover {
    background: rgba(230, 57, 70, 0.2);
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* Responsive adjustments for campaign blocks */
@media (max-width: 768px) {
    .campaign-blocks-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .campaign-block {
        padding: var(--spacing-lg);
        min-height: 180px;
    }
    
    .campaign-title {
        font-size: 1.25rem;
    }
} 