/* =====================================================
   Empire Deck Collective
   Elegant Light Theme - Deep Purple & Silver
   ===================================================== */

/* --------------------- CSS Variables --------------------- */
:root {
    /* Brand Colors */
    --purple: #6b21a8;
    --purple-dark: #581c87;
    --purple-light: #7e22ce;
    --silver: #94a3b8;
    --silver-light: #cbd5e1;
    --silver-dark: #64748b;
    --gold: #b8860b;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #faf7f5;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: 140px 0;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.1);
    --shadow-purple: 0 12px 40px rgba(107, 33, 168, 0.2);
}

/* --------------------- Reset --------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul { list-style: none; }

button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

button { cursor: pointer; background: none; }

/* --------------------- Utility --------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-padding);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple);
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-intro .section-subtext {
    margin: 0 auto;
}

/* --------------------- Buttons --------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

.btn-primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.btn-light {
    background: var(--white);
    color: var(--purple);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* --------------------- Header --------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-emblem {
    width: 44px;
    height: 44px;
    color: var(--purple);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--silver-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--purple);
    transition: width var(--transition-base);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gray-900);
}

.nav-cta {
    padding: 12px 24px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}

/* --------------------- Hero Section - Split Design --------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--cream);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Content Side */
.hero-content-side {
    display: flex;
    align-items: center;
    padding: 120px 60px 80px 80px;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.content-inner {
    max-width: 560px;
    margin-left: auto;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 1s ease forwards 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--purple);
}

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    color: var(--gray-900);
    line-height: 1.05;
    margin-bottom: 24px;
}

.headline-word {
    display: block;
}

.headline-accent {
    display: block;
    font-style: italic;
    color: var(--purple);
    font-size: 0.85em;
    margin-top: 8px;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-badges {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.badge {
    text-align: center;
}

.badge-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--purple);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}

/* Right Image Side */
.hero-image-side {
    position: relative;
    min-height: 100vh;
}

.image-container {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(107, 33, 168, 0.3) 0%,
        rgba(107, 33, 168, 0.1) 100%
    );
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.floating-card-1 {
    top: 25%;
    left: 20px;
    opacity: 0;
    animation: floatIn 0.8s ease forwards 0.8s, floatY 4s ease-in-out infinite 1.6s;
}

.floating-card-2 {
    bottom: 20%;
    right: 20px;
    opacity: 0;
    animation: floatIn 0.8s ease forwards 1s, floatY 5s ease-in-out infinite 1.8s;
}

@keyframes floatIn {
    to {
        opacity: 1;
    }
}

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

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.card-title {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Decorative Ring */
.hero-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--purple);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
}

/* --------------------- About Section --------------------- */
.about {
    background: var(--white);
}

.about-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.content-primary {
    padding-right: 40px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 24px;
}

.content-primary p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.9;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-block {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--purple);
    transition: all var(--transition-base);
}

.feature-block:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--purple);
}

.feature-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-block p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* --------------------- Services Section --------------------- */
.services {
    background: var(--gray-50);
    position: relative;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

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

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    position: relative;
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.item-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--gray-100);
    line-height: 1;
}

.item-content {
    position: relative;
    z-index: 1;
}

.item-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all var(--transition-base);
}

.service-item:hover .item-icon {
    background: var(--purple);
}

.item-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--purple);
    transition: stroke var(--transition-base);
}

.service-item:hover .item-icon svg {
    stroke: var(--white);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-item p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.item-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.item-link:hover {
    gap: 14px;
}

.item-link::after {
    content: '\2192';
}

/* --------------------- Excellence Section --------------------- */
.excellence {
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: start;
}

.excellence-text {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 50px;
}

.excellence-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pillar {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.pillar:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--purple);
    flex-shrink: 0;
    width: 40px;
}

.pillar-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pillar-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.excellence-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.metric {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* --------------------- CTA Section --------------------- */
.cta-section {
    padding: 0;
    background: var(--gray-50);
}

.cta-card {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* --------------------- Contact Section --------------------- */
.contact {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 48px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-block {
    display: flex;
    gap: 20px;
}

.block-icon {
    width: 52px;
    height: 52px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.block-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--purple);
}

.block-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.block-details p,
.block-details a {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.block-details a:hover {
    color: var(--purple);
}

.contact-form-container {
    background: var(--gray-50);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.5px;
}

.form-field input,
.form-field textarea {
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--gray-800);
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 50px;
}

.form-success.show {
    display: block;
}

.success-emblem {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.success-emblem svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-500);
}

/* --------------------- Footer --------------------- */
.footer {
    background: var(--gray-900);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand .logo-emblem {
    color: var(--purple-light);
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: var(--silver);
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-group li,
.footer-links-group a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--purple-light);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

/* --------------------- Animations --------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------- Responsive --------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-content-side {
        padding: 140px 40px 60px;
        order: 2;
    }

    .content-inner {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image-side {
        height: 450px;
        min-height: 450px;
        order: 1;
    }

    .floating-card-1 {
        top: auto;
        bottom: 80px;
        left: 20px;
    }

    .floating-card-2 {
        bottom: auto;
        top: 20px;
        right: 20px;
    }

    .hero-ring {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .content-primary {
        padding-right: 0;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .excellence-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .excellence-metrics {
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-list,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-base);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-link {
        padding: 18px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-cta {
        display: flex;
        width: 100%;
        margin-top: 24px;
        justify-content: center;
    }

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

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

    .hero-content-side {
        padding: 120px 20px 50px;
    }

    .hero-image-side {
        height: 350px;
        min-height: 350px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-card-1 {
        bottom: 60px;
        left: 15px;
    }

    .floating-card-2 {
        top: 15px;
        right: 15px;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-title {
        font-size: 0.8rem;
    }

    .card-subtitle {
        font-size: 0.65rem;
    }

    .hero-badges {
        gap: 16px;
        flex-wrap: wrap;
    }

    .badge-value {
        font-size: 1.35rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .metric-value {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .service-item {
        padding: 35px 25px;
    }

    .item-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }

    .pillar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pillar-number {
        width: auto;
    }

    .metric {
        padding: 30px 20px;
    }

    .metric-value {
        font-size: 2rem;
    }
}
