/* Reset and Base Styles */
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0e27;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch Optimization */
button, 
.btn, 
a[role="button"], 
input[type="submit"], 
input[type="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent zoom on input focus for iOS */
input, 
textarea, 
select {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    input, 
    textarea, 
    select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Modern Blue Color Palette */
:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #93c5fd;
    --dark-blue: #1e3a8a;
    --navy: #0f172a;
    --slate: #1e293b;
    --dark-grey: #374151;
    --light-grey: #9ca3af;
    --white: #ffffff;
}

/* Sleek gradients */
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 50%, var(--primary-blue) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Ensure container never exceeds viewport */
@media (max-width: 1240px) {
    .container {
        max-width: calc(100% - 40px);
    }
}

/* Modern Typography with Fluid Scaling */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
    line-height: 1.3;
}

h5 {
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    line-height: 1.4;
}

h6 {
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: var(--light-grey);
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
    line-height: 1.6;
}

/* Section titles responsive scaling */
.section-title {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw + 0.25rem, 1.5rem);
    color: var(--light-grey);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero title with better scaling */
.hero-title {
    font-size: clamp(2.25rem, 6vw + 1rem, 5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    animation: slideInLeft 1s ease-out;
}

.hero-description {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.5rem);
    color: var(--light-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.3s both;
}

/* Sleek Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 48px; /* Better touch target */
    min-width: 120px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 52px;
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-contact {
    margin-left: auto;
    margin-right: 2rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-1px);
}

.phone-link i {
    font-size: 0.75rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
}

.logo-container {
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    max-width: 250px;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin: 0;
    letter-spacing: -0.025em;
}

.tagline {
    font-size: 0.875rem;
    color: var(--light-grey);
    margin-top: -2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--light-grey);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 50%, var(--primary-blue) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.05));
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.1));
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.05));
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 50%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.12));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 14, 39, 0.3) 0%, rgba(30, 64, 175, 0.2) 100%);
    animation: heroBackground 8s ease-in-out infinite alternate;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 400px 300px at 10% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse 500px 200px at 90% 70%, rgba(96, 165, 250, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 300px 400px at 60% 10%, rgba(30, 64, 175, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse 600px 300px at 20% 90%, rgba(147, 197, 253, 0.15) 0%, transparent 60%);
    animation: heroFlares 12s ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroFlares {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.9;
    }
    66% {
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.05) rotate(1deg);
        opacity: 0.85;
    }
}

@keyframes heroBackground {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(1deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title .highlight {
    color: var(--accent-blue);
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    }
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 2px;
    animation: expandWidth 2s ease-out 0.5s both;
}

@keyframes expandWidth {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-graphic {
    width: 450px;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icons-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: orbit 20s linear infinite;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
    z-index: 10;
}

.tech-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-icon-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 35%;
    right: 15%;
    animation-delay: -3.3s;
}

.tech-icon-3 {
    bottom: 35%;
    right: 15%;
    animation-delay: -6.6s;
}

.tech-icon-4 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

.tech-icon-5 {
    bottom: 35%;
    left: 15%;
    animation-delay: -13.3s;
}

.tech-icon-6 {
    top: 35%;
    left: 15%;
    animation-delay: -16.6s;
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

.central-graphic {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(96, 165, 250, 0.3);
    }
}

.central-graphic i {
    font-size: 3rem;
    color: white;
}

/* Promise Section */
.promise-section {
    background: var(--slate);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
}

.promise-section h2 {
    color: white;
    position: relative;
    z-index: 2;
}

.promise-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--light-grey);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Enhanced Grid Layouts */
.promise-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.accreditation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.promise-point {
    padding: 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    animation: fadeInScale 0.8s ease-out;
    animation-fill-mode: both;
}

.promise-point:nth-child(1) {
    animation-delay: 0.2s;
}

.promise-point:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.promise-point:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px) scale(1.02);
}

.promise-point h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.promise-point p {
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Foundations Section */
.foundations-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
}

.foundations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
}

.foundations-content {
    position: relative;
    z-index: 2;
}

.foundations-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.foundations-text {
    display: grid;
    gap: 2rem;
}

.foundation-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.foundation-point:nth-child(1) {
    animation-delay: 0.1s;
}

.foundation-point:nth-child(2) {
    animation-delay: 0.2s;
}

.foundation-point:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.foundation-point:hover {
    background: rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
    border-left-color: var(--secondary-blue);
}

.foundation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.foundation-icon i {
    font-size: 1.5rem;
    color: white;
}

.foundation-point h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.foundation-point p {
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
}

.foundation-point strong {
    color: var(--accent-blue);
    font-weight: 700;
}

.foundations-cta {
    background: rgba(59, 130, 246, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.cta-highlight {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    position: relative;
}

.cta-highlight i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
}

.cta-highlight .fa-quote-left {
    top: 0.5rem;
    left: 0.5rem;
}

.cta-highlight .fa-quote-right {
    bottom: 0.5rem;
    right: 0.5rem;
}

.cta-highlight h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    padding: 0 2rem;
}

.foundations-cta p {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contract-types {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.contract-types li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-align: left;
}

.contract-types li:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.contract-types i {
    color: var(--accent-blue);
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contract-types span {
    flex: 1;
}

@media (max-width: 1024px) {
    .foundations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .foundations-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .foundation-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .foundations-cta {
        padding: 2rem;
    }
}

/* Services Section */
.services-section {
    background: var(--slate);
    padding: 80px 0;
}

.service-card {
    background: rgba(59, 130, 246, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.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(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--light-grey);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.service-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    color: var(--light-grey);
    font-size: 0.875rem;
}

/* Staffing Roles Section */
.staffing-roles {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
}

.staffing-roles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(96, 165, 250, 0.03) 100%);
}

.role-card {
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.role-card:hover::before {
    left: 100%;
}

.role-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.role-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.role-card h3 {
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* How We Work Section */
.how-we-work {
    background: var(--slate);
    padding: 80px 0;
}

.process-item {
    background: rgba(59, 130, 246, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.1);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.process-item h3 {
    margin-top: 1rem;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-item p {
    color: var(--light-grey);
    line-height: 1.6;
    margin: 0;
}

/* Accreditations Section */
.accreditations {
    background: var(--navy);
    padding: 80px 0;
}

.accreditation-card {
    background: rgba(59, 130, 246, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.accreditation-card:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.accreditation-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.accreditation-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.accreditation-card p {
    color: var(--light-grey);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--slate);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    font-size: 1.25rem;
    color: var(--light-grey);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--light-grey);
}

.contact-item i {
    color: var(--accent-blue);
    margin-right: 1rem;
    width: 20px;
    font-size: 1.25rem;
}

.contact-form {
    background: rgba(59, 130, 246, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(59, 130, 246, 0.05);
    color: white;
    transition: all 0.3s ease;
    min-height: 48px; /* Better touch targets */
    appearance: none; /* Remove default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-grey);
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Enhanced touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 52px;
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    .form-group textarea {
        min-height: 140px;
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 0;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    margin-top: auto;
}

/* Main content wrapper to push footer down */
.header ~ * {
    flex: 1 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light-grey);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--accent-blue);
    width: 16px;
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office {
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-blue);
}

.office h5 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office h5 i {
    font-size: 0.75rem;
}

.office p {
    color: var(--light-grey);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-size: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: var(--light-grey);
    font-size: 0.875rem;
    background: var(--navy);
    margin-top: 2rem;
}

/* Enhanced Responsive Design */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-graphic {
        width: 400px;
        height: 400px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .central-graphic {
        width: 130px;
        height: 130px;
    }
}

/* Large Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 25px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-graphic {
        width: 350px;
        height: 350px;
    }
    
    .foundations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .foundations-cta {
        position: static;
        margin-top: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .work-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .roles-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Medium Tablet (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    /* Enhanced Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        position: relative;
    }
    
    /* Top row with logo and hamburger */
    .nav-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-brand {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        z-index: 1000;
    }
    
    .logo-container {
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 180px;
    }
    
    .nav-contact {
        order: 3;
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 15px;
        margin-top: 0.5rem;
    }
    
    .phone-link {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        width: auto;
        min-width: 220px;
        max-width: 100%;
        justify-content: center;
        white-space: nowrap;
        border-radius: 25px;
        background: rgba(96, 165, 250, 0.15);
        border: 1px solid rgba(96, 165, 250, 0.4);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        z-index: 999;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        text-align: center;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 140px 0 100px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-graphic {
        width: 280px;
        height: 280px;
    }
    
    .tech-icon {
        width: 45px;
        height: 45px;
    }
    
    .tech-icon i {
        font-size: 1.25rem;
    }
    
    .central-graphic {
        width: 100px;
        height: 100px;
    }
    
    .central-graphic i {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .promise-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promise-point {
        padding: 2rem 1.5rem;
    }
    
    .foundation-point {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 320px;
        padding: 2rem 1.5rem;
    }
    
    .work-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-item {
        padding: 2rem 1.5rem;
    }
    
    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .role-card {
        padding: 1.75rem 1.25rem;
    }
    
    .role-card i {
        font-size: 2.25rem;
    }
    
    .role-card h3 {
        font-size: 1rem;
    }
    
    .accreditation-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .office-locations {
        gap: 1.5rem;
    }
    
    .office {
        padding: 1.25rem;
    }
}

/* Small Mobile (480px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-graphic {
        width: 240px;
        height: 240px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon i {
        font-size: 1.1rem;
    }
    
    .central-graphic {
        width: 80px;
        height: 80px;
    }
    
    .central-graphic i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .role-card {
        padding: 1.5rem 1rem;
    }
    
    .role-card i {
        font-size: 2rem;
    }
    
    .role-card h3 {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .promise-point,
    .service-card,
    .process-item {
        padding: 1.5rem 1.25rem;
    }
    
    .foundation-point {
        padding: 1.5rem;
    }
    
    .foundations-cta {
        padding: 2rem 1.5rem;
    }
    
    .contract-types li {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 12px;
    }
    
    .logo-image {
        height: 30px;
        max-width: 150px;
    }
    
    .phone-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
        min-width: 200px;
        max-width: 260px;
        background: rgba(96, 165, 250, 0.12);
        border: 1px solid rgba(96, 165, 250, 0.3);
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
    }
    
    .tech-icon i {
        font-size: 1rem;
    }
    
    .central-graphic {
        width: 70px;
        height: 70px;
    }
    
    .central-graphic i {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .roles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem;
    }
    
    .role-card {
        padding: 1.25rem 0.875rem;
    }
    
    .role-card i {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .role-card h3 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .promise-point,
    .service-card,
    .process-item,
    .foundation-point {
        padding: 1.25rem 1rem;
    }
    
    .service-icon,
    .foundation-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .foundation-icon i {
        font-size: 1.5rem;
    }
    
    .foundations-cta {
        padding: 1.75rem 1.25rem;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .office {
        padding: 1rem;
    }
    
    .office h5 {
        font-size: 0.8rem;
    }
    
    .office p {
        font-size: 0.75rem;
    }
}

/* Landscape Phone (up to 667px height) */
@media (max-height: 667px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
    }
    
    .central-graphic {
        width: 60px;
        height: 60px;
    }
    
    .central-graphic i {
        font-size: 1.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape {
        animation: none;
    }
    
    .tech-icon {
        animation: none;
    }
    
    .hero::before,
    .hero::after {
        animation: none;
    }
}

/* Smooth scrolling and Performance Optimizations */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

/* Performance optimizations for mobile devices */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .shape,
    .tech-icon,
    .animated-shapes {
        will-change: transform;
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    /* Reduce animations on low-end devices */
    @media (prefers-reduced-motion: reduce) {
        .shape,
        .tech-icon {
            animation: none !important;
        }
    }
}

/* Ensure no horizontal overflow */
body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Fix for iOS Safari viewport height issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* Loading and animation states */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
