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

:root {
    --primary: #FF6B35;
    --secondary: #F7931E;
    --accent: #004E89;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #FAFAFA;
    --gray: #C5C6C7;
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-cool: linear-gradient(135deg, #004E89 0%, #1F7A8C 100%);
    --gradient-mixed: linear-gradient(135deg, #FF6B35 0%, #004E89 100%);
    --gradient-animated: linear-gradient(45deg, #FF6B35, #F7931E, #004E89, #1F7A8C);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 78, 137, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-warm);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-cool);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 5%;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary);
    transform: rotate(45deg);
    top: 50%;
    left: 80%;
    animation: float 18s infinite ease-in-out;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    border-radius: 50% 50% 0 0;
    bottom: 5%;
    right: 30%;
    animation: float 22s infinite ease-in-out;
}

.header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-nav.scrolled {
    background: rgba(250, 250, 250, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.brand-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand:hover .brand-icon {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 2px;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 3rem 80px;
    position: relative;
    z-index: 1;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(250, 250, 250, 0.92) 100%);
    z-index: -1;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--dark);
    text-shadow: 2px 2px 0 rgba(255, 107, 53, 0.1);
    letter-spacing: -1px;
}

.heading-line {
    display: block;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.heading-line:nth-child(1) {
    animation-delay: 0.2s;
}

.heading-line:nth-child(2) {
    animation-delay: 0.4s;
}

.heading-line:nth-child(3) {
    animation-delay: 0.6s;
}

.heading-line.highlight {
    background: var(--gradient-animated);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

.heading-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
    animation: expandWidth 1s ease 0.8s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-warm);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5), 0 0 0 3px rgba(255, 107, 53, 0.1);
    animation: buttonPulse 1.5s ease infinite;
}

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

.cta-button.outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cta-button.outline:hover {
    background: var(--dark);
    color: white;
}

.hero-visual {
    position: relative;
    height: 450px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    z-index: 0;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(0, 78, 137, 0.3));
    mix-blend-mode: multiply;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05) rotateZ(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.visual-card i {
    font-size: 3rem;
    color: var(--primary);
}

.visual-card span {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 6s infinite ease-in-out;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 6s infinite ease-in-out 2s;
}

.card-3 {
    bottom: 0;
    left: 20%;
    animation: float 6s infinite ease-in-out 4s;
}

.scroll-prompt {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--primary);
    animation: scrollLine 2s infinite;
}

.services-section {
    padding: 120px 3rem;
    background: white;
    position: relative;
    z-index: 1;
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    margin-bottom: 5rem;
}

.section-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
}

.service-showcase {
    display: grid;
    gap: 3rem;
}

.service-item {
    background: var(--light);
    border-radius: 30px;
    padding: 0;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image {
    transform: scale(1.1);
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(250, 250, 250, 1), transparent);
    pointer-events: none;
}

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

.service-item:hover {
    border-color: var(--primary);
    transform: translateX(10px) scale(1.01);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), -10px 0 30px rgba(255, 107, 53, 0.1);
}

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

.service-item.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 2rem 3rem 0;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.3);
    line-height: 1;
}

.service-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.primary-badge {
    background: var(--gradient-warm);
    color: white;
}

.secondary-badge {
    background: var(--gradient-cool);
    color: white;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 3rem 3rem;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.service-item:hover .service-icon-large {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.service-item:not(.featured) .service-icon-large {
    background: var(--gradient-cool);
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-intro {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.offering-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offering-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-warm);
    transition: height 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), -5px 0 20px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.offering-item:hover::before {
    height: 100%;
}

.offering-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.offering-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: var(--gradient-warm);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-item:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 107, 53, 0.2);
}

.offering-item:hover .offering-icon::after {
    opacity: 1;
}

.offering-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.offering-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    width: fit-content;
    margin-top: 1rem;
}

.service-link:hover {
    background: var(--primary);
    gap: 15px;
}

.about-section {
    padding: 120px 3rem;
    background: var(--dark);
    color: white;
    position: relative;
    z-index: 1;
}

.about-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 5rem;
}

.about-sidebar {
    position: relative;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 3rem;
    font-weight: 900;
    white-space: nowrap;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-image-section {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-section:hover .about-image {
    transform: scale(1.05);
}

.about-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 78, 137, 0.2));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-story {
    margin-bottom: 4rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: var(--gradient-warm);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
}

.value-card:hover .value-icon::before {
    opacity: 0.6;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-section {
    padding: 120px 3rem;
    background: var(--light);
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-info a,
.detail-info span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-info a:hover {
    color: var(--primary);
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.social-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.contact-form-modern {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.form-field label {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

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

.submit-button {
    grid-column: 1 / -1;
    padding: 18px 36px;
    background: var(--gradient-warm);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5), 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-button:active {
    transform: translateY(-1px) scale(1);
}

.site-footer {
    background: var(--darker);
    color: white;
    padding: 4rem 3rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollLine {
    0% {
        height: 0;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5), 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5), 0 0 0 6px rgba(255, 107, 53, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-title,
    .service-intro {
        grid-column: 1;
    }
}

@media (max-width: 968px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .about-image-section {
        height: 300px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .service-offerings {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-section {
        padding: 100px 1.5rem 60px;
    }
    
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 280px;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
    
    .about-image-section {
        height: 250px;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .visual-card i {
        font-size: 2rem;
    }
    
    .services-section,
    .about-section,
    .contact-section {
        padding: 80px 1.5rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern {
        padding: 2rem;
    }
    
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}
