/* Algaari Studio - Main Stylesheet */

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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #151515;
    --card-bg: #1a1a1a;
    --accent-orange: #ff8c42;
    --accent-gold: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a2a;
    --spiritual-glow: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 150px;
    height: 150px;
    position: relative;
    animation: floatPulse 3s ease-in-out infinite;
}

.loader-icon img,
.logo-spin {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*filter: drop-shadow(0 0 30px var(--spiritual-glow));*/
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        /*filter: drop-shadow(0 0 30px var(--spiritual-glow));*/
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        /*filter: drop-shadow(0 0 50px var(--accent-gold));*/
    }
}

.loader-text {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 3px;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loader-subtext {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 80%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: 1000;
    transition: all 0.3s ease;
}
/*.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}*/

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
    filter: drop-shadow(0 0 10px var(--spiritual-glow));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
    /*filter: drop-shadow(0 0 20px var(--accent-gold));*/
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

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

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .highlight {
    color: var(--accent-orange);
    -webkit-text-fill-color: var(--accent-orange);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-3d-showcase {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-3d-showcase::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--spiritual-glow) 0%, transparent 70%);
    animation: orbitGlow 8s linear infinite;
}

@keyframes orbitGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(150px); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(150px); }
}

.character-3d {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 30%, rgba(255, 140, 66, 0.1) 50%, transparent 70%),
        radial-gradient(circle at 50% 40%, #2a2a2a 0%, transparent 60%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-silhouette {
    width: 80%;
    height: 85%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-body {
    width: 200px;
    height: 400px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 100px 100px 40px 40px;
    position: relative;
    box-shadow: 
        0 0 60px rgba(255, 140, 66, 0.3),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
    animation: characterFloat 4s ease-in-out infinite;
}

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

.character-head {
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 50px 50px 40px 40px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.character-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.tech-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-circle {
    position: absolute;
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.tech-circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tech-circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services,
.services-preview {
    padding: 6rem 2rem;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

/* Portfolio */
.portfolio {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

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

.portfolio-item {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.portfolio-3d-model {
    width: 60%;
    height: 70%;
    position: relative;
    z-index: 1;
}

.model-character {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    clip-path: polygon(30% 0%, 70% 0%, 85% 100%, 15% 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    position: relative;
}

.model-character::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
    opacity: 0.1;
}

.portfolio-item:nth-child(1) .model-character {
    clip-path: polygon(30% 0%, 70% 0%, 85% 100%, 15% 100%);
}

.portfolio-item:nth-child(2) .model-character {
    clip-path: polygon(20% 0%, 80% 0%, 90% 50%, 80% 100%, 20% 100%, 10% 50%);
}

.portfolio-item:nth-child(3) .model-character {
    clip-path: ellipse(50% 60% at 50% 40%);
}

.portfolio-item:nth-child(4) .model-character {
    clip-path: polygon(50% 0%, 90% 25%, 90% 75%, 50% 100%, 10% 75%, 10% 25%);
}

.portfolio-item:nth-child(5) .model-character {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.portfolio-item:nth-child(6) .model-character {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    color: var(--accent-orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.portfolio-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.portfolio-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Process */
.process {
    padding: 6rem 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

/* Contact Form */
.contact-section {
    padding: 6rem 2rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.btn-submit {
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.info-card p {
    color: var(--text-secondary);
}

.info-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

/* ============================================
   MODERN PAGE REDESIGNS
   ============================================ */

/* Common Modern Elements */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ============================================
   SERVICES PAGE - MODERN REDESIGN
   ============================================ */

.services-hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-txt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Blocks */
.services-main {
    padding: 6rem 2rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-reverse {
    direction: rtl;
}

.service-reverse > * {
    direction: ltr;
}

.service-visual-wrapper {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--spiritual-glow) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.service-3d-preview {
    width: 70%;
    height: 70%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-icon {
    font-size: 10rem;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px var(--accent-orange));
}

.preview-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 140, 66, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 140, 66, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.service-content {
    position: relative;
}

.service-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 140, 66, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
}

.service-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
}

.feature-tag svg {
    color: var(--accent-orange);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
}

/* Tech Stack Section */
.tech-stack {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.tech-column-title {
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--border-color);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-item {
    padding: 0.8rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--accent-orange);
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Why Choose Modern */
.why-choose-modern {
    padding: 6rem 2rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point {
    display: flex;
    gap: 1.5rem;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
    position: relative;
    overflow: hidden;
}

.cta-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-modern-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-modern-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.cta-modern-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    word-wrap: break-word;
}

.cta-buttons-modern {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-modern {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
}

.btn-secondary-modern {
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary-modern:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-3px);
}

/* ============================================
   PORTFOLIO PAGE - MODERN REDESIGN
   ============================================ */

.portfolio-hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 140, 66, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.portfolio-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.portfolio-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.portfolio-hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Modern Filters */
.portfolio-filters-section {
    padding: 3rem 2rem;
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.portfolio-filters-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn-modern {
    padding: 0.8rem 1.8rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-btn-modern:hover,
.filter-btn-modern.active {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Portfolio Masonry */
.portfolio-gallery {
    padding: 6rem 2rem;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-orange);
}

.portfolio-card-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-3d-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-shape {
    width: 60%;
    height: 70%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    position: relative;
}

.shape-1 { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.shape-2 { clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.shape-3 { clip-path: ellipse(50% 60% at 50% 40%); }
.shape-4 { clip-path: polygon(50% 0%, 90% 25%, 90% 75%, 50% 100%, 10% 75%, 10% 25%); }
.shape-5 { clip-path: polygon(30% 0%, 70% 0%, 85% 100%, 15% 100%); }
.shape-6 { clip-path: polygon(20% 0%, 80% 0%, 90% 50%, 80% 100%, 20% 100%, 10% 50%); }

.visual-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    opacity: 0.1;
}

.portfolio-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.portfolio-card:hover .portfolio-hover-content {
    opacity: 1;
}

.hover-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 66, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.hover-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.portfolio-card-content {
    padding: 2rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-category-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-year {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.portfolio-card-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.portfolio-card-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.tech-badge {
    padding: 0.4rem 0.8rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Stats Banner */
.portfolio-stats-banner {
    padding: 4rem 2rem;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stats-banner-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stats-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
}

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

.quote-icon {
    font-size: 8rem;
    color: var(--accent-orange);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -2rem;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 0.3rem;
}

.author-company {
    color: var(--text-secondary);
}

/* ============================================
   ABOUT PAGE - MODERN REDESIGN
   ============================================ */

.about-hero {
    margin-top: 80px;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 66, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-content {
    max-width: 100%;
}

.about-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.about-hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-quick-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    flex-direction: column;
}

.quick-stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.quick-stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-hero-visual {
    width: 100%;
    max-width: 100%;
}

.hero-visual-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--spiritual-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.about-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--spiritual-glow));
    display: block;
}

.visual-card-text {
    position: relative;
    z-index: 1;
}

.location-badge {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: var(--accent-orange);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission Vision Modern */
.mission-vision-modern {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

.mv-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-modern-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mv-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mv-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.mv-card-header h3 {
    font-size: 2rem;
}

.mv-card-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.mv-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

/* Philosophy Modern */
.philosophy-modern {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
    position: relative;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.philosophy-content-modern {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.philosophy-logo-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.logo-glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.logo-glow-ring::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.philosophy-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--spiritual-glow));
    position: relative;
    z-index: 1;
}

.philosophy-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.philosophy-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.philosophy-description p {
    margin-bottom: 1.5rem;
}

.philosophy-description strong {
    color: var(--accent-orange);
}

.philosophy-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.principle-check {
    width: 30px;
    height: 30px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

/* Team Departments Modern */
.team-departments-modern {
    padding: 6rem 2rem;
}

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

.department-modern-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.department-modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.15);
}

.dept-card-icon {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 16px;
    opacity: 0.1;
}

.dept-card-icon span {
    position: relative;
    font-size: 3rem;
    display: block;
    text-align: center;
    line-height: 80px;
}

.department-modern-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.department-modern-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.dept-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dept-skills span {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 6px;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Location Banner */
.location-banner {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
}

.location-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.location-icon {
    font-size: 4rem;
}

.location-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.location-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Adjustments for New Designs */
@media (max-width: 968px) {
    .services-hero-title,
    .portfolio-hero-title,
    .about-hero-title {
        font-size: 3rem;
    }
    
    .service-block,
    .why-choose-grid,
    .story-grid,
    .mv-modern-grid,
    .philosophy-content-modern,
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .service-reverse {
        direction: ltr;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .portfolio-masonry {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-hero-title,
    .portfolio-hero-title,
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .service-title,
    .philosophy-title {
        font-size: 2rem;
    }
    
    .hero-stats-row,
    .about-quick-stats {
        gap: 2rem;
    }
    
    .cta-modern-content h2 {
        font-size: 2.2rem;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT PAGE - MODERN REDESIGN
   ============================================ */

.contact-hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 140, 66, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.contact-hero-desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Main Layout */
.contact-main {
    padding: 6rem 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Form Section */
.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Modern Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    margin-bottom: 0.7rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-orange);
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 1rem 1.2rem;
    background: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
}

.btn-submit-modern svg {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover svg {
    transform: translateX(5px);
}

/* Alert Styles */
.alert {
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.alert-content p,
.alert-content ul {
    margin: 0;
    font-size: 0.95rem;
}

.alert-content ul {
    list-style: none;
    padding-left: 0;
}

.alert-content ul li {
    padding: 0.2rem 0;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-success .alert-icon {
    background: rgba(34, 197, 94, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-error .alert-icon {
    background: rgba(239, 68, 68, 0.2);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card-modern:hover {
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.info-card-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--accent-orange);
}

.info-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-card-modern a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-modern a:hover {
    color: var(--accent-orange);
}

/* Social Connect */
.social-connect-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.social-connect-modern h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

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

.social-link-modern {
    width: 50px;
    height: 50px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-modern:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

/* FAQ Modern */
.faq-modern {
    padding: 6rem 2rem;
    background: var(--secondary-bg);
}

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

.faq-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.faq-card-modern:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.faq-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-card-modern p {
    color: var(--text-secondary);
    line-height: 1.7;
}


.project-hero {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 140, 66, 0.1) 0%, transparent 60%);
}

.project-breadcrumb {
    margin-bottom: 2rem;
}

.project-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-breadcrumb a:hover {
    color: var(--accent-orange);
}

.project-category-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.project-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-viewer-section {
    padding: 4rem 2rem;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.viewer-hint {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.project-details-section {
    padding: 4rem 2rem;
    background: var(--secondary-bg);
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.project-main-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.project-image {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-orange);
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.info-value {
    color: var(--text-primary);
}

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

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.related-projects-section {
    padding: 4rem 2rem;
}

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

.related-project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.related-project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.related-project-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: 0.3;
}

.related-project-info {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.related-project-info h3 {
    font-size: 1.3rem;
}

/* ============================================================
   MOBILE NAVIGATION & HAMBURGER
   ============================================================ */

/* nav-right wrapper (CTA + hamburger side by side) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.25s;
    flex-shrink: 0;
}
.hamburger:hover { border-color: var(--accent-orange); }
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
/* X state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}
.mobile-nav-links li {
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav-links li:first-child {
    border-top: 1px solid var(--border-color);
}
.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--accent-orange);
    padding-left: 0.5rem;
}
.mobile-cta {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,140,66,0.4); }

/* Overlay behind mobile menu */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.visible { opacity: 1; }

/* Footer logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}
.footer-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE — GLOBAL SHARED
   ============================================================ */

@media (max-width: 1024px) {
    .nav-container { padding: 1rem 1.5rem; }
}

/* Show hamburger on tablet/mobile */
@media (max-width: 900px) {
    .nav-links      { display: none !important; }
    .hamburger      { display: flex; }
    .mobile-menu    { display: block; }
    .mobile-overlay { display: block; }
    /* Keep CTA button visible on tablet, hide on very small */
    .cta-button     { display: none; }
}

/* ============================================================
   RESPONSIVE — FOOTER
   ============================================================ */

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-brand { grid-column: 1; }
    .footer { padding: 3rem 1.5rem 1.5rem; }
    .footer-bottom { font-size: 0.78rem; }
}

/* ============================================================
   RESPONSIVE — LOADER
   ============================================================ */

@media (max-width: 480px) {
    .loader-icon   { width: 100px; height: 100px; }
    .loader-text   { font-size: 1.1rem; letter-spacing: 2px; }
    .loader-subtext{ font-size: 0.75rem; }
    .loader-spinner{ width: 44px; height: 44px; }
}

/* ============================================================
   RESPONSIVE — HERO (home cinematic)
   ============================================================ */

@media (max-width: 768px) {
    .hero-cinematic { min-height: 100svh; }

    .hero-center-content { padding: 0 1.2rem; }

    .title-line-1 { font-size: clamp(1.2rem, 4vw, 2rem); letter-spacing: 5px; }
    .title-line-2 { font-size: clamp(2.8rem, 12vw, 5rem); flex-direction: column; gap: 0; letter-spacing: -1px; }
    .title-line-3 { font-size: clamp(0.9rem, 3vw, 1.6rem); letter-spacing: 4px; }

    .hero-subtitle { font-size: 0.88rem; line-height: 1.7; margin-bottom: 2rem; }
    .hero-subtitle br { display: none; }

    .hero-cta-group { gap: 0.75rem; }
    .btn-inner      { padding: 0.85rem 1.4rem; font-size: 0.88rem; }

    .hero-stats-bar { gap: 1rem; }
    .stats-divider  { display: none; }
    .hero-stat-num  { font-size: clamp(1.3rem, 4vw, 1.8rem); }
    .hero-stat-label{ font-size: 0.58rem; }

    .slider-indicators { right: 1rem; bottom: 80px; }
    .slider-label-wrap { left: 1rem; bottom: 80px; }
    .hero-scroll-caret { bottom: 1.5rem; }
}

@media (max-width: 400px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-btn       { width: 100%; }
    .btn-inner      { justify-content: center; }
    .hero-btn-ghost { display: none; }
}

/* ============================================================
   RESPONSIVE — PROCESS PAGE
   ============================================================ */

@media (max-width: 768px) {
    .page-header      { padding: 5rem 1.5rem 3rem; }
    .page-title       { font-size: 2rem; }
    .page-description { font-size: 1rem; }

    .process          { padding: 3rem 1.5rem; }
    .process-steps    { grid-template-columns: 1fr; gap: 2rem; }

    .workflow-details { padding: 3rem 1.5rem; }
    .workflow-grid    { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .technologies     { padding: 3rem 1.5rem; }
    .tech-categories  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .workflow-grid   { grid-template-columns: 1fr; }
    .tech-categories { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — PORTFOLIO SHOW PAGE
   ============================================================ */

@media (max-width: 768px) {
    .portfolio-detail { padding: 1.5rem; }
    .detail-grid      { grid-template-columns: 1fr; }
}