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

:root {
    --bg-primary: #0A0C0F;
    --bg-secondary: #121518;
    --bg-card: rgba(18, 21, 24, 0.7);
    --glass-border: rgba(200, 170, 110, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --gold: #C8AA6E;
    --gold-light: #DCC28C;
    --gold-dim: rgba(200, 170, 110, 0.2);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}
/* ===== AMBIENT BACKGROUND ===== */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.02 0"/></filter><rect width="100%25" height="100%25" filter="url(%23noise)"/></svg>');
    opacity: 0.15;
    pointer-events: none;
    z-index: 1000;
}

.gradient-sphere {
    position: fixed;
    top: -50vh;
    right: -20vw;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle at center, rgba(200, 170, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.ambient-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(200, 170, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ===== MOUSE GLOW ===== */
.mouse-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(200, 170, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(30px);
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.2;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* ===== GLASS EFFECT ===== */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-highlight);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(10, 12, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

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

.logo-mark {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: -2px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-cta .btn {
    padding: 10px 24px;
}

/* Desktop styles - hamburger hidden */
.hamburger {
    display: none;
}

/* Mobile styles - hamburger visible */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
        position: relative;
        justify-content: center;
        align-items: center;
        z-index: 1001;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        margin: 3px 0;
        transition: all 0.3s ease-in-out;
        display: block;
    }

    .hamburger.active span {
        background: var(--gold); /* Optional: changes color when active */
    }

    /* Ensure smooth transitions */
    .hamburger span {
        transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, width 0.3s ease-in-out, background 0.3s ease;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* ===== REVEAL ANIMATIONS ===== */
/* ===== HERO BUTTONS FADE UP ===== */
.hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-cta a {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.hero-cta a:first-child {
    animation-delay: 0.8s;
}

.hero-cta a:last-child {
    animation-delay: 1s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep existing reveal class for other elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO CONTENT ===== */
.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gold-text {
    color: var(--gold);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
}

/* ===== HERO CTA ===== */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 170, 110, 0.2);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(200, 170, 110, 0.05);
    transform: translateY(-2px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    animation: scrollGlow 2s ease infinite;
}

@keyframes scrollGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    padding: 50px 40px;
    border-radius: 16px;
    position: relative;
    width: 100%;
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.card-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid var(--gold-dim);
}

.card-corner:nth-child(1) {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.card-corner:nth-child(2) {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    text-align: center;
}

.hero-stat {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.code-decoration {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.code-line {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 2px;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-element {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 5;
}

.float-1 {
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    bottom: -10px;
    left: -30px;
    animation: float 8s ease-in-out infinite;
}

.float-3 {
    top: 40%;
    right: -40px;
    animation: float 7s ease-in-out infinite;
}

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

/* ===== HERO BOTTOM GRADIENT ===== */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
    z-index: 5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .title-line { font-size: 3.8rem; }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero { padding: 140px 0 80px; }
    .title-line { font-size: 3.2rem; }
    .hero-visual { max-width: 600px; margin: 0 auto; }
}

/* ===== HERO VISUAL - MOBILE OPTIMIZED ===== */
@media (max-width: 768px) {
    .hero-visual {
        margin-top: 40px;
        width: 100%;
        padding: 0 10px;
    }

    .hero-card {
        padding: 35px 25px !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        display: flex;
        justify-content: space-around;
        gap: 15px;
        margin-bottom: 25px;
    }

    .hero-stat {
        flex: 1;
        text-align: center;
        min-width: 0; /* Prevents flex items from overflowing */
    }

    .stat-value {
        font-size: 2rem !important;
        margin-bottom: 5px;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.7rem !important;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .code-decoration {
        padding-top: 15px;
    }

    .code-line {
        font-size: 0.75rem;
    }

    /* Adjust floating elements for mobile */
    .floating-element {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .float-1 {
        top: -15px;
        right: 0px;
    }

    .float-2 {
        bottom: -10px;
        left: 0px;
    }

    .float-3 {
        top: 30%;
        right: -10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-visual {
        margin-top: 30px;
        padding: 0 5px;
    }

    .hero-card {
        padding: 30px 20px !important;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-value {
        font-size: 1.6rem !important;
    }

    .stat-label {
        font-size: 0.6rem !important;
        letter-spacing: 0.5px;
    }

    .code-line {
        font-size: 0.7rem;
    }

    /* Hide floating elements on very small screens if they cause overlap */
    .floating-element {
        display: none;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .hero-card {
        padding: 25px 15px !important;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-stat {
        flex: 0 0 calc(33.333% - 10px);
    }

    .stat-value {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.55rem !important;
    }
}
@media (max-width: 768px) {
    .container { padding: 0 30px; }
    .title-line { font-size: 2.5rem; }
    .desktop-only {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.3s;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    
    .hero-cta { flex-direction: column; }
    .hero-card { padding: 40px 30px; }
    .stat-value { font-size: 2.2rem; }
    .floating-element { display: none; }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    .title-line { font-size: 2rem; }
    .hero-label { font-size: 0.7rem; }
    .hero-description { font-size: 1rem; }
    .hero-card { padding: 30px 20px; }
}

/* ===== CLIENTS SECTION ===== */
.clients {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Section Header */
.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.header-line {
    width: 60px;
    height: 1px;
    background: var(--gold-dim);
    margin: 0 auto;
}

/* Clients Grid - Centered & Wrapped */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    justify-content: center;
}

/* Client Card - Perfect Squares */
.client-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
}

.client-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.client-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) grayscale(0.8);
    transition: all 0.4s ease;
}

/* Hover Effects */
.client-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(200, 170, 110, 0.08);
    box-shadow: 0 15px 40px rgba(200, 170, 110, 0.15);
}

.client-card:hover .client-logo img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1);
}

.client-card:hover .client-card-inner {
    transform: scale(0.98);
}

/* Client Hover Info */
.client-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(10, 12, 15, 0.95), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-align: center;
}

.client-card:hover .client-hover {
    opacity: 1;
    transform: translateY(0);
}

.client-year {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-weight: 600;
}

.client-project {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Client Card Corners */
.client-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid var(--gold-dim);
    opacity: 0;
    transition: all 0.3s ease;
}

.client-card:hover .client-corner {
    opacity: 1;
}

.client-corner:nth-child(3) {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.client-corner:nth-child(4) {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

/* Animation */
.client-card {
    animation: floatIn 0.6s ease forwards;
    opacity: 0;
}

.client-card:nth-child(1) { animation-delay: 0.1s; }
.client-card:nth-child(2) { animation-delay: 0.2s; }
.client-card:nth-child(3) { animation-delay: 0.3s; }
.client-card:nth-child(4) { animation-delay: 0.4s; }
.client-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

/* Desktop Large */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 900px;
    }
}

/* Desktop Medium */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .clients-header h2 {
        font-size: 2.2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .clients {
        padding: 80px 0;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .clients-header h2 {
        font-size: 1.8rem;
    }
}

/* ===== MOBILE OPTIMIZATION - FULL WIDTH CARDS ===== */
@media (max-width: 576px) {
    .clients {
        padding: 50px 0;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
        max-width: 100%; /* Take full width */
        width: 100%;
    }
    
    /* Cards take full width of their grid cells */
    .client-card {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
        width: 100%; /* Take full width of grid cell */
        max-width: none; /* Remove any max-width restrictions */
        margin: 0;
    }
    
    .client-card-inner {
        padding: 15px;
    }
    
    /* Bigger logos */
    .client-logo img {
        max-width: 90%;
        max-height: 70px;
        filter: brightness(1) grayscale(0.5);
    }
    
    /* Hide hover info on mobile */
    .client-hover {
        display: none;
    }
    
    /* Smaller corners */
    .client-corner {
        width: 12px;
        height: 12px;
    }
    
    .client-corner:nth-child(3) {
        top: 8px;
        left: 8px;
    }
    
    .client-corner:nth-child(4) {
        bottom: 8px;
        right: 8px;
    }
    
    /* Header adjustments */
    .clients-header {
        margin-bottom: 30px;
    }
    
    .clients-header h2 {
        font-size: 1.6rem;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .section-tag {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .header-line {
        width: 45px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .clients-grid {
        gap: 12px;
        padding: 0 12px;
    }
    
    .client-card-inner {
        padding: 12px;
    }
    
    .client-logo img {
        max-height: 60px;
        max-width: 95%;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .clients-grid {
        gap: 10px;
        padding: 0 10px;
    }
    
    .client-card-inner {
        padding: 10px;
    }
    
    .client-logo img {
        max-height: 55px;
    }
}

/* For single column layout on very small phones - optional */
@media (max-width: 320px) {
    .clients-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px;
    }
    
    .client-card {
        max-width: 240px;
        margin: 0 auto; /* Center the cards */
    }
}

.expertise-signature {
    font-size: 0.85rem;
    color: var(--gold);
    margin-top: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Remove unused styles */
.clients-stats,
.stat-divider,
.stat-item,
.testimonial-pane {
    display: none;
}
/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== STORY CARD ===== */
.story-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

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

.story-icon {
    margin-bottom: 30px;
}

.story-icon .logo-mark {
    font-size: 2.5rem;
    color: var(--gold);
}

.story-heading {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 10px;
}

/* Location Badge - Interactive */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 40px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-badge i {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.location-badge span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.location-badge:hover {
    border-color: var(--gold);
    background: rgba(200, 170, 110, 0.1);
}

.location-badge:hover i {
    transform: scale(1.2);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 170, 110, 0.2), transparent);
    transition: left 0.6s ease;
}

.location-badge:hover .badge-glow {
    left: 100%;
}

/* ===== EXPERTISE CARD ===== */
.expertise-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

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

.expertise-icon {
    margin-bottom: 30px;
}

.expertise-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.expertise-heading {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.expertise-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 40px;
}

/* Service Pills - Interactive */
.service-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.service-pill {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(200, 170, 110, 0.05);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-pill:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.service-pill.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* Service Description - Dynamic */
.service-description {
    padding: 15px 0;
    border-top: 1px solid var(--glass-border);
}

.desc-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    transition: all 0.3s ease;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .story-card,
    .expertise-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .story-heading,
    .expertise-heading {
        font-size: 1.5rem;
    }
    
    .story-paragraph,
    .expertise-paragraph {
        font-size: 1rem;
    }
}


/* ===== MOBILE OPTIMIZATION - FULL WIDTH RECTANGULAR CARDS ===== */
@media (max-width: 576px) {
    .clients {
        padding: 50px 0;
    }
    
    .clients-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 15px;
        padding: 0 15px;
        width: 100%;
    }
    
    /* Rectangular cards - not squares */
    .client-card {
        aspect-ratio: auto; /* Remove square constraint */
        width: 100%;
        height: auto;
        min-height: 100px; /* Minimum height */
        padding: 20px 0;
        border-radius: 12px;
    }
    
    .client-card-inner {
        padding: 10px 20px;
    }
    
    .client-logo img {
        max-width: 100%;
        max-height: 60px;
        filter: brightness(1) grayscale(0.5);
    }
    
    /* Hide hover info on mobile */
    .client-hover {
        display: none;
    }
    
    /* Smaller corners */
    .client-corner {
        width: 12px;
        height: 12px;
    }
    
    .client-corner:nth-child(3) {
        top: 8px;
        left: 8px;
    }
    
    .client-corner:nth-child(4) {
        bottom: 8px;
        right: 8px;
    }
    
    /* Header adjustments */
    .clients-header {
        margin-bottom: 30px;
    }
    
    .clients-header h2 {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .section-tag {
        font-size: 0.7rem;
    }
    
    .header-line {
        width: 45px;
    }
}

/* Client Spotlight Effect */
    .client-spotlight {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle at center, rgba(200, 170, 110, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 5;
        opacity: 0;
        transition: opacity 0.2s ease;
        filter: blur(30px);
        top: 0;
        left: 0;
    }
    
    .clients {
        position: relative;
        overflow: hidden;
    }
    
    /* Client Particles */
    .client-particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.15;
        animation: floatParticle linear infinite;
        z-index: 2;
    }
    
    /* About Particles */
    .about-particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.1;
        animation: floatParticle linear infinite;
        z-index: 1;
    }
    
    /* Hero Particles */
    .particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        opacity: 0.2;
        animation: floatParticle linear infinite;
        z-index: 1;
    }
    
    @keyframes floatParticle {
        0% {
            transform: translateY(0) translateX(0);
            opacity: 0;
        }
        10% {
            opacity: 0.2;
        }
        90% {
            opacity: 0.15;
        }
        100% {
            transform: translateY(-100px) translateX(20px);
            opacity: 0;
        }
    }
    
    /* Client Card Enhancements */
    .client-card {
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
        position: relative;
        z-index: 10;
    }
    
    .client-card:hover {
        border-color: var(--gold) !important;
        box-shadow: 0 15px 40px rgba(200, 170, 110, 0.2) !important;
    }
    
    /* Work & Service Cards */
    .work-card, .design-card, .service-card {
        transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    }
    
    /* Ensure containers are positioned */
    .hero, .clients, .about {
        position: relative;
        overflow: hidden;
    }
/* ===== ABOUT SECTION - QUICK FADE CENTER GLOW ===== */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(200, 170, 110, 0.35) 0%,
        rgba(200, 170, 110, 0.18) 15%,
        rgba(200, 170, 110, 0.05) 30%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 1;
}

/* Make sure content stays above the background glow */
.about .container {
    position: relative;
    z-index: 10;
}

.about .about-grid,
.about .about-header,
.about .story-card,
.about .expertise-card {
    position: relative;
    z-index: 15;
}

/* ===== WORK ===== */
.work {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Section Header */
.work .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.work .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.work .section-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ===== WORK PARTICLES - DENSE ===== */
.work-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.work-particles .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold) !important;
    border-radius: 50%;
    animation: workFloat 25s infinite linear;
    opacity: 0;
    box-shadow: 0 0 8px rgba(200, 170, 110, 0.4);
    will-change: transform, opacity;
}

@keyframes workFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
    }
    95% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) translateX(40px);
        opacity: 0;
    }
}

/* Container above particles */
.work .container {
    position: relative;
    z-index: 2;
}

/* ===== WORK CATEGORY ===== */
.work-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dim), transparent);
}

/* ===== WORK GRID ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.work-card {
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* ===== LIVE PREVIEW ===== */
.live-preview {
    position: relative;
    width: 100%;
    height: 224px;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: #0a0a0a;
}

.site-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 896px;
    border: none;
    transform: scale(0.25);
    transform-origin: top left;
    pointer-events: none;
    opacity: 1; /* Always full opacity */
    transition: none; /* Remove transition */
}

/* Remove this entire block */
.work-card:hover .site-iframe {
    opacity: 1;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(10, 10, 10, 0), 
        rgba(10, 10, 10, 0)
    );
    pointer-events: none;
    z-index: 3;
}

/* ===== WORK INFO ===== */
.work-info {
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.work-info h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.work-card:hover .work-info h4 {
    color: var(--gold);
}

.work-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0;
}

.arrow {
    color: var(--gold-dim);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.work-card:hover .arrow {
    transform: translateX(6px);
    color: var(--gold);
}

/* Updated CSS */
.design-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.design-card {
    border-radius: 12px;
    padding: 24px 20px;
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
    cursor: default;
    
    /* Add these for background images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px; /* Adjust as needed */
    display: flex;
    align-items: flex-end; /* Push info to bottom */
    position: relative;
}

/* ===== DESIGN GRID ===== */
.design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hidden-designs {
    display: none;
    margin-top: 20px;
}

.hidden-designs.show {
    display: grid;
}

.design-card {
    border-radius: 12px;
    padding: 24px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

/* Overlay for better text readability */
.design-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    z-index: 1;
    transition: opacity 0.3s ease;
}



.design-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Category tag */
.design-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.design-info {
    position: relative;
    z-index: 2;
    width: 100%;
}

.design-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.design-info p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    margin: 0;
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 20px;
}

.view-more-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.view-more-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== WORK FOOTER ===== */
.work-footer {
    text-align: center;
    margin-top: 80px;
}

.work-footer .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--gold);
    padding: 14px 42px;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 40px;
    font-weight: 400;
}

.work-footer .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.work-footer .btn-outline i {
    transition: transform 0.3s ease;
}

.work-footer .btn-outline:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */

/* Desktop Large */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .work .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Desktop Medium */
@media (max-width: 992px) {
    .work {
        padding: 100px 0;
    }
    .work .section-header h2 {
        font-size: 2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .work {
        padding: 80px 0;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .work-category {
        margin-bottom: 60px;
    }
    
    .live-preview {
        height: 200px;
    }
    
    .site-iframe {
        height: 800px;
    }
    
    .work .section-header h2 {
        font-size: 1.8rem;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .work {
        padding: 60px 0;
    }
    
    .work .section-header {
        margin-bottom: 50px;
    }
    
    .work .section-header h2 {
        font-size: 1.6rem;
        padding: 0 20px;
    }
    
    .design-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .work-info {
        padding: 20px 18px;
    }
    
    .work-info h4 {
        font-size: 1rem;
    }
    
    .work-info p {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    
    .design-card {
        padding: 20px 18px;
    }
    
    .work-footer {
        margin-top: 60px;
    }
    
    .work-footer .btn-outline {
        padding: 12px 32px;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Mobile Small */
@media (max-width: 400px) {
    .work .section-header h2 {
        font-size: 1.4rem;
    }
    
    .live-preview {
        height: 180px;
    }
    
    .site-iframe {
        height: 720px;
    }
    
    .work-info {
        padding: 18px 16px;
    }
    
    .design-card {
        padding: 18px 16px;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

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

.services .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.services .section-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* UNIFORM CARD STYLING */
.service-card {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-dim);
    background: rgba(18, 21, 24, 0.9);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(200, 170, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid var(--gold-dim);
}

.service-icon i {
    font-size: 24px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Price styling - only on web card */
.service-price {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    opacity: 0.7;
}

.price-current {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.pricing-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-link:hover {
    background: var(--gold);
    color: var(--bg-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 170, 110, 0.3);
}

.service-divider {
    width: 40px;
    height: 2px;
    background: var(--gold-dim);
    margin-bottom: 20px;
}

/* Description styling */
.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-description-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 20px 0 0;
    font-style: italic;
    border-left: 2px solid var(--gold-dim);
    padding-left: 15px;
}

/* UNIFORM PRICING LIST FOR ALL CARDS */
.service-pricing-list {
    margin: 10px 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--glass-border);
}

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

.pricing-service {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-price {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(200, 170, 110, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--gold-dim);
    white-space: nowrap;
}

/* Features list - only for social card */
.service-features-list {
    margin: 5px 0 15px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-feature i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
}

/* Service Link - UNIFORM */
.service-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--gold-light);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Add to your existing services CSS */
.tagline-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.tagline-note a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tagline-note a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Adjust the description tagline to accommodate the new note */
.service-description-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 15px 0 0;
    font-style: italic;
    border-left: 2px solid var(--gold-dim);
    padding-left: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .price-current {
        font-size: 1.8rem;
    }
    
    .pricing-item {
        font-size: 0.85rem;
    }
    
    .pricing-price {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
}

/* ===== STUDIO ===== */
.studio {
    padding: 120px 0;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.studio-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 30px 0 40px;
    line-height: 1.8;
}

.studio-principles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.principle-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.8;
}

.principle-text {
    font-size: 1rem;
    color: var(--text-primary);
}

.studio-card {
    padding: 50px;
    border-radius: 12px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.quote-author {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 30px 0 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 20px;
    color: var(--gold);
    font-size: 1rem;
}

.contact-item a,
.contact-item span {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--gold);
}

.form-status {
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

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

.contact-form-container {
    width: 100%;
}

.contact-form {
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 500;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.4);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--text-muted);
}

.form-row select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand .logo-mark {
    font-size: 1.3rem;
}

.footer-brand .logo-text {
    font-size: 1rem;
}

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

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    h1 { font-size: 4rem; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .design-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .container { padding: 0 30px; }
    h1 { font-size: 3.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .studio-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.3s;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .design-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { flex-direction: column; gap: 30px; }
    .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 576px) {
    .container { padding: 0 20px; }
    h1 { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; }
    .design-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-legal { justify-content: center; }
}