/* Axcendy - Complete Professional Styles */

/* Axcendy Brand Colors */
:root {
    --primary-color: #BF1922;
    --primary-dark: #92131a;
    --primary-light: #e32832;
    --secondary-color: #BF1922;
    --accent-color: #e32832;
    --dark-color: #111111;
    --gray-color: #2a2a2a;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #BF1922 0%, #e32832 100%);
    --gradient-secondary: linear-gradient(135deg, #92131a 0%, #BF1922 100%);
    --gradient-accent: linear-gradient(135deg, #e32832 0%, #BF1922 50%, #92131a 100%);
    --gradient-dark: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Large Screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .hero__container {
        gap: 120px;
    }
    
    .hero__title {
        font-size: 5rem;
    }
    
    .hero__description {
        font-size: 1.5rem;
    }
    
    .services, .stats, .about-preview, .process, .testimonials, .cta {
        padding: 120px 0;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 80px;
    }
    
    .hero__graphic,
    .about-preview__graphic {
        width: 350px;
        height: 350px;
        font-size: 6rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Premium Header */
.header {
    padding: 15px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--gray-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 18px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::before {
    opacity: 0.7;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

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

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    color: var(--white);
}

.btn:active {
    transform: translateY(-2px) scale(1.01);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Main */
.main {
    min-height: 60vh;
}

.content-section {
    padding: 40px 0;
}

/* Global overflow fix */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* Axcendy Premium Hero Section */
.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, rgba(191, 25, 34, 0.02) 70%, #ffffff 100%);
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(191, 25, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(227, 40, 50, 0.03) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    min-height: auto;
    padding: 30px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 100%;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 1s both;
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 100%; }
}

.hero__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    line-height: 1.5;
    max-width: 90%;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-bottom: 2rem;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__stats .stat {
    text-align: center;
}

.hero__stats .stat__number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.hero__stats .stat__label {
    font-size: 0.85rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.hero__graphic {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    animation: float 8s ease-in-out infinite, rotate 20s linear infinite;
    position: relative;
}

.hero__features {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero__features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(191, 25, 34, 0.1);
    transition: all 0.3s ease;
}

.hero__features .feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
}

.hero__features .feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.hero__features .feature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.hero__graphic::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(from 0deg, var(--gradient-primary), var(--gradient-accent), var(--gradient-secondary));
    border-radius: 50%;
    z-index: -1;
    animation: spin 15s linear infinite reverse;
}

.hero__graphic::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-15px) scale(1.02); }
    50% { transform: translateY(-30px) scale(1); }
    75% { transform: translateY(-15px) scale(0.98); }
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-color);
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Axcendy Floating Elements */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(191, 25, 34, 0.2), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(227, 40, 50, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(146, 19, 26, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(191, 25, 34, 0.1), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(42, 42, 42, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingDots 20s linear infinite;
    pointer-events: none;
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-3px);
}

/* Sections */
.services, .stats, .about-preview, .process, .testimonials, .cta {
    padding: 50px 0;
    min-height: auto;
    display: block;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.section__title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: clamp(20px, 3vw, 40px);
    width: 100%;
}

.service__card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service__header {
    padding: 25px 25px 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service__badge {
    background: rgba(191, 25, 34, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
.service__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    pointer-events: none;
}
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        #e32832 50%, 
        var(--primary-color) 100%);
    border-radius: 16px 16px 0 0;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service__card:hover {
    transform: translateY(-6px) scale(1.01);
}

.service__card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, 
        #e32832 0%, 
        var(--primary-color) 25%,
        #ff4757 50%,
        var(--primary-color) 75%,
        #e32832 100%);
}

.service__card:hover::after {
    opacity: 1;
}

.service__icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service__icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, var(--gradient-primary), transparent, var(--gradient-accent));
    border-radius: 18px;
    z-index: -1;
    animation: iconRotate 6s linear infinite;
}

.service__card:hover .service__icon {
    transform: scale(1.1) rotate(10deg);
}

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

.service__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.service__description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service__content {
    padding: 0 25px;
    flex: 1;
}

.service__footer {
    padding: 20px 25px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(191, 25, 34, 0.1);
    margin-top: auto;
}

.service__price {
    text-align: right;
}

.service__price .price__label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-bottom: 0.2rem;
}

.service__price .price__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service__link {
    padding: 8px 16px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.service__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.service__features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Services CTA */
.services__cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(191, 25, 34, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(191, 25, 34, 0.1);
}

.services__cta .cta__content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.services__cta .cta__content p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.service__features {
    list-style: none;
    margin-bottom: 25px;
}

.service__features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service__features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service__link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    text-align: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

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

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(30px, 5vw, 60px);
    width: 100%;
}

.stat__item {
    padding: 20px;
}

.stat__number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
    display: block;
}

.stat__label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========================
   Footer Section
======================== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1f2937 50%, #111827 100%);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0 0;
    margin-top: clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}

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

.footer__main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer__section {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer__section:first-child {
    text-align: left;
}

.footer__section:first-child {
    grid-column: span 1;
}

.footer__brand {
    margin-bottom: 1.5rem;
}

.footer__brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__brand .logo i {
    color: var(--primary);
    font-size: 1.2em;
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer__links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer__links a:hover::before {
    width: 0.25rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--primary);
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item span {
    line-height: 1.4;
}

.contact-item span strong {
    color: var(--primary);
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

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

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__section {
        text-align: left;
    }
    
    .footer__section:first-child {
        text-align: center;
    }
    
    .footer__section:first-child .footer__brand {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__legal {
        justify-content: center;
    }
    
    .footer__title::after {
        left: 0;
        transform: none;
    }
    
    .footer__section:first-child .footer__title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: clamp(3rem, 6vw, 4rem) 0 0;
    }
    
    .footer__section:first-child {
        text-align: center;
    }
    
    .footer__section:not(:first-child) {
        text-align: left;
    }
    
    .footer__links {
        align-items: flex-start;
    }
    
    .footer__links a:hover {
        padding-left: 0.5rem;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero__container {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 50vh;
        padding: 50px 0;
    }
    
    .hero__container,
    .about-preview__content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3rem);
        text-align: center;
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .hero__image,
    .about-preview__image {
        order: -1;
    }
    
    .about-preview__graphic {
        width: clamp(150px, 30vw, 180px);
        height: clamp(150px, 30vw, 180px);
    }
    
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    }
    
    .services, .stats, .about-preview, .process, .testimonials, .cta {
        padding: 60px 0;
    }
    
    /* About preview specific for tablets */
    .about-preview__content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .about-preview__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 40vh;
        padding: 30px 0;
    }
    
    .hero__container {
        padding: 20px 0;
        gap: 30px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero__graphic,
    .about-preview__graphic {
        width: clamp(130px, 35vw, 170px);
        height: clamp(130px, 35vw, 170px);
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services, .stats, .about-preview, .process, .testimonials, .cta {
        padding: 50px 0;
    }
    
    .highlight__item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service__card,
    .testimonial__card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services,
    .stats,
    .about-preview,
    .process,
    .testimonials,
    .cta {
        padding: 40px 0;
    }
    
    .about-preview__content {
        gap: 1.5rem;
        padding: 2rem 0;
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .about-preview__image {
        order: -1;
    }
    
    .about-preview__highlights {
        text-align: left;
        max-width: 100%;
    }
    
    .about-preview__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-preview__description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
    
    .highlight__item__content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .highlight__item__content p {
        font-size: 0.8rem;
    }
    
    .about-preview__graphic {
        width: 140px;
        height: 140px;
        font-size: 2rem;
    }
    
    .hero {
        padding: 20px 0;
        min-height: 35vh;
    }
    
    .hero__container {
        padding: 15px 0;
        gap: 25px;
    }
    
    .hero__graphic,
    .about-preview__graphic {
        width: clamp(100px, 30vw, 130px);
        height: clamp(100px, 30vw, 130px);
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service__card,
    .testimonial__card {
        padding: 25px 20px;
    }
    
    .section__header {
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .nav {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 24px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero__buttons .btn,
    .cta__buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .service__card,
    .testimonial__card {
        padding: 20px 15px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
        padding: 20px 0;
    }
    
    .hero__image {
        order: 2;
    }
    
    .hero__graphic,
    .about-preview__graphic {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
    
    .services, .stats, .about-preview, .process, .testimonials, .cta {
        padding: 40px 0;
        min-height: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-toggle,
    .hero__buttons,
    .cta__buttons,
    .btn {
        display: none;
    }
    
    .hero,
    .services,
    .stats,
    .about-preview,
    .process,
    .testimonials,
    .cta {
        padding: 20px 0;
        min-height: auto;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* About Preview Section */
.about-preview {
    background: #fff;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    overflow: hidden;
}

.about-preview .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.about-preview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 5rem);
    align-items: center;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Force single column on smaller screens */
@media (max-width: 1024px) {
    .about-preview__content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .about-preview__image {
        order: -1;
    }
}

.about-preview__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-preview__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-preview__highlights {
    margin-bottom: 2.5rem;
}

.highlight__item {
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 1.5rem;
}

/* Responsive highlight items */
@media (max-width: 768px) {
    .highlight__item {
        text-align: left;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .highlight__item {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

.highlight__item i {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.highlight__item__content h4 {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
}

.highlight__item__content p {
    color: #666;
    margin: 0;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    line-height: 1.5;
}

.about-preview__image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about-preview__graphic {
    width: clamp(180px, 25vw, 220px);
    height: clamp(180px, 25vw, 220px);
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

/* Process Section */
.process {
    background: #f8f9fa;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

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

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 30px;
}

.process__step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.step__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step__description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
}

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

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 25px;
}

.testimonial__card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
}

.testimonial__stars {
    margin-bottom: 20px;
}

.testimonial__stars i {
    color: #ddd;
    margin-right: 5px;
}

.testimonial__stars i.active {
    color: var(--primary-light);
}

.testimonial__message {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.7;
}

.author__name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author__company {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Axcendy Professional CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 4rem 0 3rem;
}

.cta .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta__content {
    position: relative;
    z-index: 3;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

.cta__description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Options */
.cta__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta__option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.option__icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.cta__option h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.cta__option p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.option__actions {
    display: flex;
    justify-content: center;
}

.option__actions .btn {
    min-width: 160px;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.option__actions .btn--primary {
    background: var(--white);
    color: #1a1a1a;
    border: none;
}

.option__actions .btn--primary:hover {
    background: #f5f5f5;
    color: #000;
}

/* Contact Information Section */
.quick-info {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quick-info__grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.info-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    border: none;
}

.info-item:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.info-action {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-action:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
}

.business-hours {
    margin-top: 2.5rem;
    text-align: center;
}

.hours-content {
    display: inline-block;
    background: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.hours-content h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-content h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.hours-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid var(--secondary-color);
}

.form-message.error {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message ul {
    margin: 0;
    padding-left: 20px;
}

.form-message li {
    margin-bottom: 5px;
}

/* Premium Header Scroll Effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.header.scrolled::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(191, 25, 34, 0.3), 
        rgba(227, 40, 50, 0.2), 
        transparent
    );
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Axcendy Brand Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Smooth Transitions for All Elements */
* {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States */
.nav-link:focus,
.btn:focus,
.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Menu Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1002;
    background: transparent;
    border: none;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    display: block;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav {
        position: relative;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        padding: 15px 0;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile Improvements */
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 30px 15px;
    }
    
    /* Full-width sections mobile - keep the technique */
    .hero,
    .services,
    .stats,
    .process,
    .testimonials,
    .cta {
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .hero .container,
    .services .container,
    .stats .container,
    .process .container,
    .testimonials .container,
    .cta .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero__stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero__features {
        gap: 1rem;
    }
    
    .hero__features .feature {
        padding: 0.8rem;
    }
    
    .hero__graphic {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    /* CTA Mobile */
    .cta {
        padding: 3rem 0;
    }
    
    .cta__title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }
    
    .cta__description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .cta__options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta__option {
        padding: 1.5rem 1rem;
    }
    
    .option__icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cta__option h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .cta__option p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .option__actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Contact Information Mobile */
    .quick-info {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .quick-info__grid {
        flex-direction: column;
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .info-item {
        padding: 2rem 1.5rem;
        background: white;
        border: none;
    }
    
    .info-item:hover {
        transform: translateY(-2px);
    }
    
    .hours-content {
        padding: 1.5rem 2rem;
        margin: 0 1rem;
    }
    
    .hours-content h4 {
        font-size: 1.1rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .info-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .info-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Service Details Section */
.service-details {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
}

.detail-section {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.detail-section:hover {
    border-color: #e0e0e0;
}

.detail-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
}

.detail-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.detail-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section ul li {
    padding: 0.8rem 0;
    color: #444;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

.detail-section ul li:last-child {
    border-bottom: none;
}

.detail-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Mobile Service Details */
@media (max-width: 768px) {
    .service-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .detail-section {
        padding: 2rem 1.5rem;
    }
    
    .detail-section h3 {
        font-size: 1.2rem;
    }
    
    .detail-section h3::after {
        width: 30px;
    }
}

/* Marketing Tools Section */
.marketing-tools {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.marketing-tools .section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.marketing-tools .section__title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.marketing-tools .section__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.tool-item {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.tool-item:hover {
    border-color: #e0e0e0;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
}

.tool-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tool-item p {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Marketing Tools */
@media (max-width: 768px) {
    .marketing-tools {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .marketing-tools .section__title {
        font-size: 1.8rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tool-item {
        padding: 2rem 1.5rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .tool-item h4 {
        font-size: 1rem;
    }
    
    .tool-item p {
        font-size: 0.85rem;
    }
}

/* Pricing Section */
.pricing-toggle {
    padding: 2rem 0;
    background: white;
    text-align: center;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
    color: #666;
    font-size: 1.1rem;
}

.discount-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-label-switch:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-label-switch {
    background-color: var(--primary-color);
}

.toggle-input:checked + .toggle-label-switch:before {
    transform: translateX(30px);
}

.pricing {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.features-comparison {
    margin: 4rem 0;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
}

.features-comparison h3 {
    text-align: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.comparison-table {
    display: grid;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name,
.plan-column,
.plan-feature {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #e9ecef;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    color: #1a1a1a;
}

.plan-column {
    font-weight: 600;
    color: var(--primary-color);
}

.plan-feature {
    color: #666;
}

.text-success {
    color: #28a745 !important;
}

.text-muted {
    color: #6c757d !important;
}

.individual-services {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 12px;
}

.individual-services .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.individual-services .section-header h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.individual-services .section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.service-price-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-price-card:hover {
    transform: translateY(-3px);
    background: white;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.service-price-card h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-price {
    margin-bottom: 1rem;
}

.service-price .amount {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.service-price .period {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

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

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.custom-solutions {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.custom-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.custom-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.faq {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(191, 25, 34, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.pricing-cta {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.pricing-cta .cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-cta .cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Mobile */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .feature-name,
    .plan-column,
    .plan-feature {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .toggle-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-label {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .features-comparison {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .feature-name,
    .plan-column,
    .plan-feature {
        text-align: left;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 0.8rem 1rem;
    }
    
    .plan-column {
        background: #f8f9fa;
        font-weight: 700;
    }
    
    .custom-solutions {
        padding: 2rem 1.5rem;
    }
    
    .custom-content h3 {
        font-size: 1.5rem;
    }
    
    .custom-content p {
        font-size: 1rem;
    }
    
    .individual-services {
        margin: 2rem 0;
        padding: 2rem 1.5rem;
    }
    
    .individual-services .section-header h3 {
        font-size: 1.6rem;
    }
    
    .services-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-price-card {
        padding: 1.2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
    
    .pricing-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .pricing-cta .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #666;
}

.plan-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.btn-full {
    width: 100%;
}

.custom-solutions {
    margin-top: 4rem;
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.custom-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.custom-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .custom-solutions {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.method-link:hover {
    color: var(--primary-dark);
}

.social-links h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Form */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.form-container h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-container > p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-input {
    margin-top: 2px;
}

.checkbox-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

/* Quick Contact Section */
.quick-contact {
    padding: 4rem 0;
    background: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.quick-item h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quick-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.quick-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.quick-link:hover {
    color: var(--primary-dark);
}

/* Mobile Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-item {
        padding: 1.5rem 1rem;
    }
}

/* Portfolio Styles */
.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, rgba(191, 25, 34, 0.02) 70%, #ffffff 100%);
    text-align: center;
}

.page-hero__content h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-hero__content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #888;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.portfolio-filter {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.portfolio-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(191, 25, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    color: var(--primary-color);
}

.project-info {
    padding: 2rem;
}

.project-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.project-info h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.portfolio-stats {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.portfolio-cta {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 2rem;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    margin-bottom: 2rem;
}

.modal-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
}

.modal-details h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-features ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Portfolio Mobile */
@media (max-width: 768px) {
    .page-hero__content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero__content p {
        font-size: 1rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-overview {
    padding: 5rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-highlights {
    margin-top: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ccc;
}

.company-values {
    padding: 5rem 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-section {
    padding: 5rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: #adb5bd;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.company-stats {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.company-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    text-align: center;
}

.mission-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.about-cta .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* About Mobile Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .overview-content p {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .visual-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .value-card,
    .team-member,
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-cta .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}