:root {
    --nav-height: 80px;

    /* Primitive Color Tokens */
    --color-white: rgba(255, 255, 255, 1);
    --color-black: rgba(0, 0, 0, 1);
    --color-cream-50: rgba(252, 252, 249, 1);
    --color-cream-100: rgba(255, 255, 253, 1);
    --color-gray-200: rgba(245, 245, 245, 1);
    --color-gray-300: rgba(167, 169, 169, 1);
    --color-gray-400: rgba(119, 124, 124, 1);
    --color-slate-500: rgba(98, 108, 113, 1);
    --color-brown-600: rgba(94, 82, 64, 1);
    --color-charcoal-700: rgba(31, 33, 33, 1);
    --color-charcoal-800: rgba(38, 40, 40, 1);
    --color-slate-900: rgba(19, 52, 59, 1);

    /* RGB versions */
    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 0, 0, 0;
    --color-gray-200-rgb: 245, 245, 245;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-400-rgb: 119, 124, 124;
    --color-charcoal-800-rgb: 38, 40, 40;

    /* Typography */
    --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
        Monaco, Consolas, monospace;

    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
    --font-size-2xl: 20px;
    --font-size-3xl: 24px;
    --font-size-4xl: 30px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 550;
    --font-weight-bold: 600;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --letter-spacing-tight: -0.01em;

    /* Spacing */
    --space-0: 0;
    --space-1: 1px;
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-base: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);

    /* Animation */
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;

    /* Carets */
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23312D27' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* ========================================
     D.A STUDIO BRAND TOKENS
  ======================================== */
    --color-gold: #FFF18D;
    --color-charcoal: #312D27;
    --color-light-gray: #D1D1D1;
    --color-gold-rgb: 255, 241, 141;
    --color-charcoal-rgb: 49, 45, 39;
    --color-light-gray-rgb: 209, 209, 209;

    /* Keep current font setup */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Josefin Sans', sans-serif;
    --font-accent: 'Bodoni Moda', serif;

    --spacing-xs: var(--space-8);
    --spacing-sm: var(--space-16);
    --spacing-md: var(--space-24);
    --spacing-lg: var(--space-32);
    --spacing-xl: 48px;
    --spacing-2xl: 64px;

    --transition-fast: var(--duration-fast) var(--ease-standard);
    --transition-normal: var(--duration-normal) var(--ease-standard);

    /* LIGHT THEME */
    --color-background: #FFFFFF;
    --color-background-opposite: #312D27;
    --color-surface: #FFFFFF;
    --color-surface-muted: #F9F9F9;
    --color-text: #312D27;
    --color-text-light: #312D27;
    --color-text-light-grey: #d1d1d1;
    --color-text-secondary: rgba(49, 45, 39, 0.72);
    --color-text-soft: rgba(49, 45, 39, 0.52);
    --color-primary: #FFF18D;
    --color-primary-hover: #F7E97C;
    --color-primary-active: #EBDD68;
    --color-secondary: rgba(49, 45, 39, 0.06);
    --color-secondary-hover: rgba(49, 45, 39, 0.10);
    --color-secondary-active: rgba(49, 45, 39, 0.14);
    --color-border: rgba(49, 45, 39, 0.18);
    --color-border-secondary: rgba(49, 45, 39, 0.18);
    --color-card-border: rgba(49, 45, 39, 0.12);
    --color-card-border-inner: rgba(49, 45, 39, 0.12);
    --color-btn-primary-text: #312D27;
    --color-focus-ring: rgba(255, 241, 141, 0.40);

    --color-error: #312D27;
    --color-success: #312D27;
    --color-warning: #312D27;
    --color-info: #312D27;
    --color-success-rgb: 49, 45, 39;
    --color-error-rgb: 49, 45, 39;
    --color-warning-rgb: 49, 45, 39;
    --color-info-rgb: 49, 45, 39;

    --status-bg-opacity: 0.10;
    --status-border-opacity: 0.18;
}

@media (prefers-color-scheme: light) {
    .contact-info {
        --color-gold: #312D27;
    }
}

/* ========================================
   DARK THEME - AUTO
======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --color-background: #000000;
        --color-background-opposite: #000000;
        --color-surface: #312D27;
        --color-surface-muted: rgba(209, 209, 209, 0.08);
        --color-text: #FFFFFF;
        --color-text-light: #FFF18D;
        --color-text-light-grey: #FFF18D;
        --color-text-secondary: rgba(209, 209, 209, 0.88);
        --color-text-soft: rgba(209, 209, 209, 0.64);

        --color-primary: #FFF18D;
        --color-primary-hover: #F7E97C;
        --color-primary-active: #EBDD68;

        --color-secondary: rgba(209, 209, 209, 0.10);
        --color-secondary-hover: rgba(209, 209, 209, 0.14);
        --color-secondary-active: rgba(209, 209, 209, 0.20);

        --color-border: rgba(255, 241, 141, 0.22);
        --color-border-secondary: rgba(255, 241, 141, 0.24);
        --color-card-border: rgba(255, 241, 141, 0.16);
        --color-card-border-inner: rgba(255, 241, 141, 0.10);
        --color-btn-primary-text: #312D27;
        --color-focus-ring: rgba(255, 241, 141, 0.45);

        --color-error: #FFF18D;
        --color-success: #FFF18D;
        --color-warning: #FFF18D;
        --color-info: #D1D1D1;
        --color-success-rgb: 255, 241, 141;
        --color-error-rgb: 255, 241, 141;
        --color-warning-rgb: 255, 241, 141;
        --color-info-rgb: 209, 209, 209;

        --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.25);
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.30), 0 1px 2px rgba(0, 0, 0, 0.22);
        --shadow-md: 0 6px 14px rgba(0, 0, 0, 0.36);
        --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.42);
        --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.08),
            inset 0 -1px 0 rgba(0, 0, 0, 0.22);
    }
}

/* ========================================
   MANUAL THEME OVERRIDES
======================================== */
[data-color-scheme="light"] {
    --color-background: #FFFFFF;
    --color-surface: #FFFFFF;
    --color-surface-muted: #F9F9F9;
    --color-text: #312D27;
    --color-text-secondary: rgba(49, 45, 39, 0.72);
    --color-text-soft: rgba(49, 45, 39, 0.52);
    --color-primary: #FFF18D;
    --color-primary-hover: #F7E97C;
    --color-primary-active: #EBDD68;
    --color-secondary: rgba(49, 45, 39, 0.06);
    --color-secondary-hover: rgba(49, 45, 39, 0.10);
    --color-secondary-active: rgba(49, 45, 39, 0.14);
    --color-border: rgba(49, 45, 39, 0.18);
    --color-border-secondary: rgba(49, 45, 39, 0.18);
    --color-card-border: rgba(49, 45, 39, 0.12);
    --color-card-border-inner: rgba(49, 45, 39, 0.12);
    --color-btn-primary-text: #312D27;
    --color-focus-ring: rgba(255, 241, 141, 0.40);

    --color-error: #312D27;
    --color-success: #312D27;
    --color-warning: #312D27;
    --color-info: #312D27;
    --color-success-rgb: 49, 45, 39;
    --color-error-rgb: 49, 45, 39;
    --color-warning-rgb: 49, 45, 39;
    --color-info-rgb: 49, 45, 39;
}

[data-color-scheme="dark"] {
    --color-background: #000000;
    --color-surface: #312D27;
    --color-surface-muted: rgba(209, 209, 209, 0.08);
    --color-text: #FFFFFF;
    --color-text-secondary: rgba(209, 209, 209, 0.88);
    --color-text-soft: rgba(209, 209, 209, 0.64);

    --color-primary: #FFF18D;
    --color-primary-hover: #F7E97C;
    --color-primary-active: #EBDD68;

    --color-secondary: rgba(209, 209, 209, 0.10);
    --color-secondary-hover: rgba(209, 209, 209, 0.14);
    --color-secondary-active: rgba(209, 209, 209, 0.20);

    --color-border: rgba(255, 241, 141, 0.22);
    --color-border-secondary: rgba(255, 241, 141, 0.24);
    --color-card-border: rgba(255, 241, 141, 0.16);
    --color-card-border-inner: rgba(255, 241, 141, 0.10);
    --color-btn-primary-text: #312D27;
    --color-focus-ring: rgba(255, 241, 141, 0.45);

    --color-error: #FFF18D;
    --color-success: #FFF18D;
    --color-warning: #FFF18D;
    --color-info: #D1D1D1;
    --color-success-rgb: 255, 241, 141;
    --color-error-rgb: 255, 241, 141;
    --color-warning-rgb: 255, 241, 141;
    --color-info-rgb: 209, 209, 209;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.30), 0 1px 2px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 6px 14px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.42);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

/* ========================================
   BASE STYLES
======================================== */
html {
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: var(--line-height-normal);
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

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

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

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

p {
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.8;
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--spacing-lg) 0;
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-text);
    letter-spacing: var(--letter-spacing-tight);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-md);
}

code,
pre {
    font-family: var(--font-family-mono);
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--space-16);
    padding-left: var(--space-16);
}

@media (min-width: 640px) {
    .container {
        max-width: var(--container-sm);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: var(--container-xl);
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12) var(--space-32);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-text);
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: -1;
    transition: left var(--transition-normal);
}

.btn:hover::before,
.cta-button:hover::before {
    left: 0;
}

.btn:hover,
.cta-button:hover {
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.btn:focus-visible,
.cta-button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px var(--color-focus-ring);
}

.submit-btn {

    width: 100%;
    padding: 1rem;

    background: var(--color-charcoal);
    color: white;

    border: none;
    border-radius: 6px;

    font-size: 0.9rem;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;
}

.submit-btn:hover {

    background: var(--color-gold);
    color: var(--color-charcoal);

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.15);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 1.5rem;
}

/* LABEL */

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--color-text);
    letter-spacing: 0.3px;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    background: #FFFFFF;
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s ease;
}


/* TEXTAREA HEIGHT */

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


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: var(--color-gold);

    background: white;

    box-shadow:
        0 0 0 3px rgba(255, 241, 141, 0.15);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color var(--transition-fast), color var(--transition-fast);
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-control::placeholder {
    color: var(--color-text-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(255, 241, 141, 0.18);
}

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

select.form-control,
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: var(--select-caret-light);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

@media (prefers-color-scheme: dark) {

    select.form-control,
    .form-group select {
        background-image: var(--select-caret-dark);
    }
}

[data-color-scheme="dark"] select.form-control,
[data-color-scheme="dark"] .form-group select {
    background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control,
[data-color-scheme="light"] .form-group select {
    background-image: var(--select-caret-light);
}

/* ========================================
   NAVIGATION
======================================== */
nav {
    position: sticky;
    top: 0;
    background: var(--color-background-opposite);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.nav-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 32px);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: static;
    overflow: visible;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color var(--transition-normal);
}


.logo img {
    height: 70px;
    width: auto;
    display: block;

    object-fit: contain;

    transition: transform 0.3s ease;
}


.logo:hover img {
    transform: scale(1.05);
}

.logo:hover {
    color: var(--color-gold);
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: var(--spacing-2xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.6px;

    color: var(--color-gold);
    position: relative;

    padding: 4px 0;

    transition: color var(--transition-normal);
}

.nav-links a::after {
    content: '';
    position: absolute;

    bottom: -6px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--color-gold);
    color: #666;

    transition: width var(--transition-normal);
}

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-2xl);
    color: #fff;
    padding: var(--space-8);
}

/* ========================================
  INDEX PAGE HERO SECTION
======================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.hero-content {
    max-width: var(--container-xl);
    width: 100%;
    padding: var(--spacing-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    animation: fadeInUp 1s var(--ease-standard);
}

.hero-text h1 {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    animation: slideInLeft 0.8s var(--ease-standard);
    letter-spacing: var(--letter-spacing-tight);
}

.hero-text h1 span {
    color: var(--color-text-light);
}

.hero-text p {
    font-size: var(--font-size-md);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: slideInLeft 0.8s var(--ease-standard) 0.2s both;
}

.hero-image {
    position: relative;
    height: 500px;
    background: var(--color-secondary);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s var(--ease-standard) 0.2s both;
    color: var(--color-text-secondary);
    font-size: var(--font-size-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

/* ========================================
   INTRO SECTION
======================================== */
.intro-section {
    padding: var(--spacing-2xl);
    max-width: var(--container-xl);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.intro-text h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
    line-height: var(--line-height-tight);
}

.intro-text h2 span {
    color: var(--color-text-light);
}

.intro-text p {
    font-size: var(--font-size-base);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.9;
}

.intro-image {
    height: 400px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    animation: zoomIn 0.8s var(--ease-standard);
    overflow: hidden;
}

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

/* ========================================
   PORTFOLIO SECTION
======================================== */
.portfolio-section {
    padding: var(--spacing-2xl);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 0.8s var(--ease-standard);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.section-header h2 span {
    color: var(--color-text-light);
}

.section-header p {
    color: var(--color-text);
    font-size: var(--font-size-base);
    margin: 0;
}

.portfolio-grid {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.portfolio-card {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s var(--ease-standard);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    overflow: hidden;
}

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

.portfolio-content {
    padding: var(--spacing-lg);
}

.portfolio-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.portfolio-location {
    font-size: var(--font-size-xs);
    color: var(--color-text-light-grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.portfolio-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.view-more {
    font-size: var(--font-size-xs);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-block;
    border-bottom: 1px solid transparent;
    font-weight: var(--font-weight-semibold);
}

.view-more:hover {
    border-bottom: 1px solid var(--color-text);
    color: var(--color-gold);
}

/* ========================================
   SERVICES SECTION
======================================== */

/* SERVICES HERO */

.services-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    position: relative;
    overflow: hidden;
    color: white;

    /* background image */
    background:
        url("photos/service_baner.png");
    background-size: cover;
    background-position: center;
}

/* subtle glass effect behind text */

.services-hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 1px;
    padding: 20px 40px;

    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #FFFFFF;
}

/* gold highlight */

.services-hero span {
    color: var(--color-gold);
}

/* decorative top gradient */

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.6));
}

/* decorative bottom line */

.services-hero::after {
    content: "";
    position: absolute;
    bottom: 60px;
    width: 90px;
    height: 3px;
    background: var(--color-gold);
}

/* smooth title animation */

.services-hero h1 {
    animation: heroFade 1s ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.services-design-consultation,
.services-turnkey-solution {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* gold accent bar */
.services-design-consultation::before,
.services-turnkey-solution::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-gold);
}

/* hover effect */
.services-design-consultation:hover,
.services-turnkey-solution:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.process-section {
    padding: var(--spacing-2xl);
    max-width: var(--container-xl);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border);
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: var(--spacing-xl);
}

.process-card {
    padding: var(--spacing-lg);
    border-left: 3px solid var(--color-gold);
    animation: fadeInUp 0.8s var(--ease-standard);
    transition: all var(--transition-normal);
    min-width: 0;
}

.process-card:hover {
    padding-left: calc(var(--spacing-lg) + var(--space-8));
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.process-card p {
    color: var(--color-text);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.ready-to-transform {
    margin: 4rem 0;
    text-align: center;
    background: var(--color-surface-muted);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.ready-to-transform h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.ready-to-transform p {
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: var(--spacing-2xl);
    background: var(--color-charcoal);
    color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.testimonials-container {
    max-width: var(--container-xl);
    margin: 0 auto;
}

.testimonials-header h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    color: var(--color-white);
}

.testimonials-header h2 span {
    color: var(--color-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: rgba(255, 241, 141, 0.08);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 241, 141, 0.2);
    animation: fadeInUp 0.8s var(--ease-standard);
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    background: rgba(255, 241, 141, 0.12);
}

.testimonial-text {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    color: rgba(255, 255, 255, 0.86);
}

.testimonial-author {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    color: var(--color-white);
}

.testimonial-role {
    font-size: var(--font-size-xs);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.82);
    padding: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 241, 141, 0.2);
}

.footer-content {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
}

.footer-section p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: var(--font-size-sm);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 241, 141, 0.2);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    text-align: center;
    font-size: var(--font-size-xs);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78) !important;
}

.footer-bottom a {
    color: var(--color-gold) !important;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom a:hover {
    color: var(--color-white) !important;
}


/* ========================================
   PROJECTS
======================================== */

/* PREMIUM PROJECT HERO */

.projects-hero-premium {
    position: relative;
    height: 75vh;

    background-image: linear-gradient(rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.55)),
        url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
}

/* HERO CONTENT */

.hero-content-premium {
    max-width: 700px;
    padding: 20px;
}

/* TITLE */

.hero-content-premium h1 {
    font-size: 60px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-content-premium span {
    color: var(--color-gold);
}

/* GOLD DIVIDER */

.hero-divider {
    width: 80px;
    height: 2px;
    background: #caa75e;
    margin: 20px auto;
}

/* SUBTITLE */

.hero-content-premium p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    color: #D1D1D1;
}

/* SCROLL INDICATOR */

.scroll-down {
    margin-top: 50px;
}

.scroll-down span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: auto;

    animation: scrollAnim 1.6s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}


.projects-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: var(--spacing-2xl);
}

.project-item {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-card-border);
    animation: fadeInUp 0.8s var(--ease-standard);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.project-item:nth-child(even) {
    grid-template-columns: 1.3fr 0.9fr;
    direction: rtl;
}

.project-item:nth-child(even)>* {
    direction: ltr;
}

.project-info h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.project-location {
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-semibold);
}

.project-description {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.project-image-box {
    position: relative;
    height: 400px;
    background: var(--color-secondary);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.project-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-track img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(49, 45, 39, 0.72);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(49, 45, 39, 0.9);
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--color-gold);
    transform: scale(1.1);
}


/* ========================================
   ABOUT US
======================================== */

.about-hero {
    position: relative;
    height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("photos/about_banner.webp") center/cover no-repeat;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.about-hero span {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 180px;
        padding: 30px 16px 24px;
    }

    .about-subtitle {
        font-size: 0.88rem;
    }
}

.section-divider {
    width: 80px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto 2.5rem auto;
}

.coming-soon {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 1rem;
}

.coming-soon {
    background: linear-gradient(to bottom,
            transparent,
            var(--color-surface-muted),
            transparent);
}

.coming-soon h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.coming-soon p {
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: 1.8rem;
}

.coming-soon b {
    color: var(--color-text-light);
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-categories-items h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-categories div {
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--color-card-border);
    border-radius: 10px;
    background: var(--color-surface);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

/* hover animation */
.service-categories div:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

/* gold underline animation */
.service-categories div::after {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--color-gold);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.service-categories div:hover::after {
    width: 60%;
}


.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* better balance */
    gap: 4rem;
    align-items: center;
    margin: 1rem 0;
}

.founder h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.founder p {
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    /* 👈 very small gap */
    border: 1px solid rgba(255, 215, 0, 0.4);
    /* softer gold */
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.08),
            transparent);
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* slightly smaller than container */
    display: block;
    animation: imageReveal 0.9s ease forwards;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Team */
/* TEAM SECTION */

.team-section {
    margin: 5rem 0;
    text-align: center;
}

.team-title {
    font-family: var(--font-display);
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    position: relative;
}

/* gold accent line */

.team-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    display: block;
    margin: 12px auto 0;
}

/* GRID */

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

/* CARD */

.team-card {
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: 8px;
    transition: all .35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* IMAGE PLACEHOLDER */

.team-image {
    height: 200px;
    margin-bottom: 1.2rem;
    border-radius: 6px;

    background: linear-gradient(135deg,
            var(--color-surface-muted),
            var(--color-surface));

}

/* TEXT */

.team-card h4 {
    font-family: var(--font-display);
    margin-bottom: 0.3rem;
    color: var(--color-text);
    font-size: 1.15rem;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* HOVER EFFECT */

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================
   CONTACT PAGE SUPPORT
======================================== */
/* ========================================
   CONTACT HERO BANNER
======================================== */

/* ========================================
   CONTACT HERO BANNER
======================================== */

.contact-hero {
    padding: 160px 6% 90px;
    text-align: center;
    position: relative;
    overflow: hidden;

    background-image: url('photos/contact_banner.webp');
    background-size: cover;
    background-position: 90% center;
    /* 🔥 key fix */
    background-repeat: no-repeat;
}

/* soft glow */

.contact-hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;

    top: -200px;
    left: 50%;

    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 65%);

    animation: heroGlow 8s ease-in-out infinite alternate;

    pointer-events: none;
}

/* subtle architectural grid */

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 60px 60px;

    opacity: 0.3;
    pointer-events: none;
}

/* inner container */

.contact-hero-inner {
    max-width: 750px;
    margin: 0 auto;
}

.contact-hero-inner h1 {
    color: #000000;
}

.contact-hero-inner p {
    color: #000000;
    font-size: large;
}

/* ========================================
   TITLE
======================================== */

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text);

    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
}

.hero-title span {
    color: var(--color-accent);
    transition: color 0.4s ease;
}

/* divider line */

.hero-title::after {
    content: "";
    display: block;

    width: 0;
    height: 2px;

    background: var(--color-accent);
    margin: 22px auto 0;

    animation: lineExpand 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* ========================================
   SUBTITLE
======================================== */

.contact-subtitle {
    margin-top: 22px;
    font-size: 1.05rem;
    max-width: 520px;

    margin-left: auto;
    margin-right: auto;

    color: #000000;
    line-height: 1.6;

    opacity: 0;
    transform: translateY(30px);

    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes lineExpand {

    from {
        width: 0;
    }

    to {
        width: 70px;
    }

}

@keyframes heroGlow {

    from {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }

}

.contact-headers {
    text-align: center;

    max-width: 650px;

    margin: 0 auto 3.5rem auto;
}

.contact-headers h2 {
    font-family: var(--font-display);

    font-size: 2.2rem;

    margin-bottom: 1rem;
}

.contact-headers p {

    color: #666;

    line-height: 1.8;

    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 8px;

    border: 1px solid var(--color-card-border);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);

    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-4px);
}

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

/* INFO BLOCK CONTAINER */

.info-block {
    padding: 0.6rem 1rem;
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--color-card-border);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.info-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

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

.info-block:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
}



/* LINKS */
.info-block a {

    font-size: 0.95rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}


/* LINK HOVER */
.info-block a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;

    border-radius: 50%;
    border: 1px solid var(--color-border);

    transition: all .3s ease;
}

.social-links a:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-icon {
    width: 18px;
    height: 20px;
    fill: var(--color-text);
    transition: fill .3s ease;
}

.social-links a:hover .social-icon {
    fill: var(--color-accent);
}



/* ========================================
   PROJECTS CTA SECTION
======================================== */
.projects-cta {
    margin: 4rem 0;
    text-align: center;
    background: var(--color-surface-muted);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.projects-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.projects-cta p {
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* ========================================
   FLOATING ENQUIRE BUTTON
======================================== */

#floatingEnquire {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 999999;
    display: block;
    padding: 15px 22px;
    background: #FFF18D;
    color: #090909;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    animation: enquirePop 1.3s ease-in-out infinite;
}

#floatingEnquire:hover {
    background: #FFF18D;
}

@keyframes enquirePop {
    0% {
        transform: translateX(0) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: translateX(0) scale(1.08);
        box-shadow: 0 14px 35px #FFF18D;
    }

    100% {
        transform: translateX(0) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }
}

/* ========================================
   OPTIONAL WHATSAPP BUTTON
======================================== */

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .nav-links.active {
        position: absolute;
        top: calc(var(--nav-height) + 8px);
        right: 16px;
        left: 16px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: #312D27;
        border: 1px solid var(--color-card-border);
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .index-section-banner {
        min-height: 260px;
    }

    .index-banner-hero-content {
        min-height: 260px;
        padding: 20px 15px;
    }

    .index-section-banner p {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }

    .hero-text h1 {
        font-size: var(--font-size-3xl);
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .intro-text h2,
    .services,
    .ready-to-transform,
    .projects-cta,
    .info-block,
    .contact-info,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-header h2 {
        font-size: var(--font-size-2xl);
    }

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

    .project-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .project-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .project-image-box {
        order: 1;
    }

    .project-info {
        order: 2;
    }

    .project-info h2 {
        font-size: var(--font-size-xl);
    }

    .project-image-box {
        height: 300px;
    }

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

    #floatingEnquire {
        right: 0;
        bottom: 14px;
        font-size: 11px;
        padding: 13px 16px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }

    /* optional: show image first */
    .founder {
        order: 2;
    }

    .founder-image {
        order: 1;
        height: auto;
    }

    .founder-image img {
        width: 100%;
        height: auto;
        max-height: none;
        /* 🔥 IMPORTANT */
    }

    .founder h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .founder p {
        font-size: 0.95rem;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 var(--spacing-md);
    }



    .index-section-banner {
        min-height: 220px;
    }

    .index-banner-hero-content {
        min-height: 220px;
    }

    .index-section-banner p {
        font-size: 11px;
    }

    .logo {
        font-size: var(--font-size-lg);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: var(--spacing-md);
        gap: var(--spacing-lg);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-text h1 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
    }

    .hero-text p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }

    .hero-image {
        height: 250px;
    }

    .intro-section,
    .services,
    .info-block,
    .portfolio-section,
    .process-section,
    .ready-to-transform,
    .projects-cta,
    .contact-info,
    .projects-cta,
    .testimonials-section,
    footer,
    .projects-container {
        padding: var(--spacing-lg);
    }

    .intro-grid {
        gap: var(--spacing-md);
    }

    .intro-text h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-md);
    }

    .intro-text p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }

    .intro-image {
        height: 300px;
    }

    .section-header {
        margin-bottom: var(--spacing-lg);
    }

    .section-header h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
    }

    .section-header p {
        font-size: var(--font-size-sm);
    }

    .portfolio-grid,

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .portfolio-content,
    .testimonial-card,
    .contact-form {
        padding: var(--spacing-md);
    }

    .portfolio-content h3,
    .process-card h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }

    .process-card {
        padding: var(--spacing-md);
    }

    .process-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-md);
        margin-bottom: var(--spacing-sm);
    }

    .testimonials-header h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-lg);
    }

    .testimonial-text {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }

    .footer-section h4 {
        font-size: var(--font-size-md);
        margin-bottom: var(--spacing-sm);
    }

    .footer-section p,
    .footer-links a {
        font-size: var(--font-size-xs);
    }

    .footer-links li {
        margin-bottom: var(--spacing-sm);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 241, 141, 0.2);
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
        text-align: center;
        font-size: var(--font-size-xs);
        color: var(--color-gray-200);
    }

    .project-item {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .project-image-box {
        order: 1;
    }

    .project-info {
        order: 2;
    }

    .project-info h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }

    .project-location {
        margin-bottom: var(--spacing-sm);
    }

    .project-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }

    .project-image-box {
        height: 250px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }


    .coming-soon {
        padding: var(--spacing-lg) 0;
    }

    .coming-soon h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }

    .coming-soon p {
        font-size: var(--font-size-sm);
    }

    .cta-button,
    .btn {
        padding: var(--space-10) var(--space-20);
        font-size: var(--font-size-xs);
        width: 100%;
        text-align: center;
    }

    .founder-image {
        height: auto;
    }

    .founder-image img {
        width: 100%;
        height: auto;
        max-height: none;
        /* 🔥 IMPORTANT */
    }

    .founder p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

}

@font-face {
    font-family: 'FKGroteskNeue';
    src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
}




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