/* ============================================
   MOHAMMED AL-AWAD — PREMIUM PERSONAL BRAND
   Design System — v2.0
   ============================================ */

/* === FONT FACES === */
@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long100 Regular.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long300 Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zain';
    src: url('../assets/fonts/zain mob-long500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TheYearofHandicrafts';
    src: url('../assets/fonts/OTF/TheYearofHandicrafts-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
    /* Off-White Ivory + Warm Gray palette */
    --bg-primary: #faf9f6;
    --bg-secondary: #f3f1ec;
    --bg-tertiary: #ebe8e2;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(250, 249, 246, 1);

    /* Royal Blue Accent System */
    --accent-primary: #1a3a8c;
    --accent-light: #2b52b4;
    --accent-dark: #112a6e;
    --accent-glow: rgba(26, 58, 140, 0.06);
    --accent-gradient: linear-gradient(135deg, #1a3a8c 0%, #2b52b4 50%, #1a3a8c 100%);
    --accent-gradient-text: linear-gradient(135deg, #1a3a8c 0%, #2b52b4 50%, #112a6e 100%);

    /* Matte Gold for highlights */
    --gold: #b8963e;
    --gold-light: #c5a55a;
    --gold-matte: #a68832;

    /* Text Colors — Dark gray, not pure black */
    --text-primary: #2d3436;
    --text-secondary: #576574;
    --text-muted: #9ba4b0;
    --text-accent: #1a3a8c;

    /* Glassmorphism — Warm variant */
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(27, 54, 93, 0.1);
    --glass-border-hover: rgba(27, 54, 93, 0.25);

    /* Spacing & Sizing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --container-padding: 0 40px;
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;

    /* Typography — Zain is PRIMARY for all main text */
    --font-primary: 'Zain', 'Segoe UI', sans-serif;
    --font-decorative: 'TheYearofHandicrafts', 'Zain', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-decorative);
    font-weight: 300;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    line-height: 1.8;
    position: relative;
}

/* Ambient background glow — subtle on white */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(27, 54, 93, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(27, 54, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: rgba(27, 54, 93, 0.2);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Styled monogram instead of image logo */
.nav-monogram {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1.5px solid rgba(27, 54, 93, 0.25);
    border-radius: 10px;
    font-family: var(--font-decorative);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--accent-light);
    letter-spacing: 0;
}

.nav-logo-text {
    font-family: var(--font-decorative);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-decorative);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width var(--transition-medium);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-weight: 500 !important;
    color: var(--accent-light) !important;
    border: 1px solid var(--accent-primary);
    padding: 8px 24px !important;
    border-radius: 50px;
    transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--accent-primary);
    color: #fff !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    max-width: 100vw;
}

/* Animated Grid Background */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(27, 54, 93, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 54, 93, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* Decorative Triangle */
.hero-triangle-deco {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
}

.hero-triangle-deco svg {
    width: 100%;
    height: 100%;
    animation: triangleRotate 30s linear infinite;
}

@keyframes triangleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-glow);
    border: 1px solid rgba(27, 54, 93, 0.18);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-name {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(0.95);
}

.hero-tagline {
    font-family: var(--font-decorative);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-quote {
    font-family: var(--font-decorative);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 32px;
    padding-right: 20px;
    border-right: 3px solid var(--accent-primary);
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ========================================
   HERO VISUAL — Cinematic Photo + Floating Triangle
   ======================================== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ---- Large Cinematic Photo ---- */
.hero-photo-wrap {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Circular glow behind the person — large and atmospheric */
.hero-photo-circle-bg {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(27, 54, 93, 0.05) 0%,
            rgba(184, 150, 62, 0.03) 40%,
            transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: circleBgPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* Decorative ring */
.hero-photo-circle-bg::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(184, 150, 62, 0.12);
}

.hero-photo-circle-bg::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-radius: 50%;
    border: 1px solid rgba(27, 54, 93, 0.03);
}

@keyframes circleBgPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.hero-photo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid rgba(184, 150, 62, 0.15);
    filter: contrast(1.04) brightness(1.02);
}

/* ---- Floating Creative Triangle — Glass Panel ---- */
.creative-triangle-float {
    position: absolute;
    bottom: 40px;
    left: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(27, 54, 93, 0.15);
    border-radius: 16px;
    padding: 20px 24px 28px;
    animation: floatTriangle 5s ease-in-out infinite;
}

@keyframes floatTriangle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.creative-triangle-float .ct-svg {
    width: 180px;
    height: 150px;
    display: block;
    margin: 0 auto;
}

/* Vertex dots pulse */
.ct-vertex-dot {
    animation: vertexPulse 3s ease-in-out infinite;
}

.ct-v1 {
    animation-delay: 0s;
}

.ct-v2 {
    animation-delay: 1s;
}

.ct-v3 {
    animation-delay: 2s;
}

@keyframes vertexPulse {

    0%,
    100% {
        r: 3.5;
        opacity: 0.8;
    }

    50% {
        r: 5.5;
        opacity: 1;
    }
}

/* Compact vertex labels */
.ctf-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 6;
    white-space: nowrap;
}

.ctf-label svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.ctf-label span {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
}

/* Top vertex — Content Creator (Blue) */
.ctf-top {
    top: 6px;
    left: 50%;

    transform: translateX(-50%);
}

.ctf-top svg {
    stroke: #1a3a8c;
}

.ctf-top span {
    color: #1a3a8c;
}

/* Bottom-Right — Voice Over (Violet) */
.ctf-br {
    bottom: 6px;
    right: 10px;
}

.ctf-br svg {
    stroke: #b8963e;
}

.ctf-br span {
    color: #a68832;
}

/* Bottom-Left — Influence Expert (Emerald) */
.ctf-bl {
    bottom: 6px;
    left: 10px;
}

.ctf-bl svg {
    stroke: #4a6741;
}

.ctf-bl span {
    color: #3d5635;
}

/* ---- Hero Services Summary Strip ---- */
.hero-services-strip {
    background: linear-gradient(135deg, #1a3a8c 0%, #152a4a 100%);
    border-radius: 14px;
    padding: 22px 28px;
    margin: 20px 0;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(27, 54, 93, 0.18);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
}

.strip-titles {
    display: contents;
}

.strip-titles span {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.strip-descs {
    display: contents;
}

.strip-descs span {
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.5;
    padding-top: 14px;
    text-align: center;
}


/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(27, 54, 93, 0.15);
    border-radius: 14px;
}

.section-header-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Section title — uses Zain (primary font) */
.section-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-family: var(--font-decorative);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    margin: 0 auto 24px;
    border-radius: 3px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-family: var(--font-decorative);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2.2;
    text-align: center;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 30px;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(27, 54, 93, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #1a3a8c 0%, #152e72 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    background: linear-gradient(145deg, #1f42a0 0%, #1a3a8c 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 58, 140, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-decorative);
    font-weight: 900;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.service-subtitle {
    font-family: var(--font-decorative);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-decorative);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.service-detail-item .detail-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-top: 10px;
}

/* ============================================
   WHY ME SECTION
   ============================================ */
.why-me {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(145deg, #1a3a8c 0%, #152e72 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8963e, #c5a55a);
    transition: width var(--transition-medium);
    border-radius: 3px;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #1f42a0 0%, #1a3a8c 100%);
    box-shadow: 0 20px 60px rgba(26, 58, 140, 0.3);
}

.why-card:hover::after {
    width: 60px;
}

.why-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.why-card:hover .why-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.why-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-title {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-desc {
    font-family: var(--font-decorative);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================
.clients-section {
    overflow: hidden;
}

/* Infinite Marquee — direction:ltr prevents RTL reversal */
.clients-marquee {
    width: 100%;
    overflow: hidden;
    direction: ltr;
}

.clients-marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 130px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.client-logo-card:hover {
    border-color: var(--glass-border-hover);
    background: var(--bg-card-hover);
}

/* Natural colors — bigger logos */
.client-logo-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* Works/Projects Marquee — Reverse direction */
.works-marquee {
    width: 100%;
    overflow: hidden;
    direction: ltr;
    margin-top: 40px;
}

.works-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: worksMarqueeScroll 35s linear infinite;
}

@keyframes worksMarqueeScroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.work-card {
    flex-shrink: 0;
    width: 200px;
    height: auto;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
    background: #fff;
    cursor: pointer;
}

.work-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 30px rgba(27, 54, 93, 0.12);
    transform: translateY(-4px);
}

.work-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* Portfolio CTA */
.portfolio-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.portfolio-cta .btn {
    width: auto !important;
    padding: 14px 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 36px;
    background: linear-gradient(145deg, #1a3a8c 0%, #152e72 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    width: 100%;
    max-width: 500px;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.contact-method-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #1f42a0 0%, #1a3a8c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 58, 140, 0.3);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method-info {
    text-align: right;
}

.contact-method-label {
    font-family: var(--font-decorative);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.contact-method-value {
    font-family: var(--font-decorative);
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    direction: ltr;
    text-align: right;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-decorative);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(27, 54, 93, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid rgba(27, 54, 93, 0.3);
}

.btn-outline:hover {
    background: var(--accent-glow);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-primary);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-monogram {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);

    border: 1px solid rgba(27, 54, 93, 0.15);
    border-radius: 8px;
    font-family: var(--font-decorative);
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--accent-primary);
}

.footer-brand-text {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-copy {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
}

.footer-license {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.7;
}

/* ============================================
   SCROLL ANIMATIONS (Non-text elements only)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-glow);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 30px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-name {
        font-size: 2.8rem;
    }

    .hero-services-strip {
        max-width: 100%;
        margin: 16px auto;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-quote {
        margin: 0 auto 32px;
        border-right: none;
        border-bottom: 3px solid var(--accent-primary);
        padding-right: 0;
        padding-bottom: 16px;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-photo-wrap {
        width: 360px;
        height: 360px;
    }

    .hero-photo-circle-bg {
        width: 390px;
        height: 390px;
    }

    .creative-triangle-float {
        bottom: 20px;
        left: 10px;
        padding: 16px 20px 24px;
    }

    .creative-triangle-float .ct-svg {
        width: 150px;
        height: 125px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition-medium);
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* ---- Mobile Hero Reordering ---- */
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-content,
    .hero-visual {
        display: contents;
    }

    .hero-photo-wrap {
        order: 1;
        width: 300px;
        height: auto;
        aspect-ratio: 1;
        max-width: 70vw;
    }

    .hero-photo-circle-bg {
        width: 330px;
        height: 330px;
        max-width: 80vw;
        max-height: 80vw;
    }

    .hero-triangle-deco {
        display: none;
    }

    .ctf-label span {
        font-size: 0.6rem;
    }

    .ctf-label svg {
        width: 12px;
        height: 12px;
    }

    .hero-name {
        order: 2;
        font-size: 2.2rem;
        margin-bottom: 4px;
    }

    .creative-triangle-float {
        order: 3;
        position: relative;
        bottom: auto;
        left: auto;
        margin: 4px auto;
        padding: 14px 16px 20px;
    }

    .creative-triangle-float .ct-svg {
        width: 130px;
        height: 108px;
    }

    .hero-badge {
        order: 4;
        font-size: 0.75rem;
        padding: 6px 16px;
        margin: 4px 0 8px;
    }

    .hero-services-strip {
        order: 5;
        width: 100%;
        max-width: 380px;
        margin: 8px auto;
        padding: 16px 20px;
    }

    .strip-titles {
        gap: 12px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .strip-titles span {
        font-size: 0.75rem;
    }

    .strip-descs {
        gap: 10px;
    }

    .strip-descs span {
        font-size: 0.65rem;
    }

    .hero-quote {
        order: 6;
        font-size: 0.95rem;
        margin-bottom: 16px;
        line-height: 1.9;
    }

    .hero-cta-group {
        order: 7;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 300px;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-services-strip .strip-titles,
    .hero-services-strip .strip-descs {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .portfolio-cta {
        gap: 10px;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-cta .btn {
        width: auto !important;
        padding: 12px 20px;
    }

    .hero-quote {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.9;
    }

    .about-text {
        font-size: 1rem;
        padding: 28px;
        line-height: 2;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-detail-item {
        font-size: 0.85rem;
    }

    .why-title {
        font-size: 1rem;
    }

    .why-desc {
        font-size: 0.82rem;
    }

    .why-card {
        padding: 28px 20px;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

}

@media (max-width: 480px) {
    .hero-name {
        font-size: 1.8rem;
    }

    .hero-quote {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.82rem;
    }

    .hero-photo-wrap {
        width: 300px;
        height: auto;
        aspect-ratio: 1;
        max-width: 75vw;
    }

    .hero-photo-circle-bg {
        width: 320px;
        height: 320px;
        max-width: 80vw;
        max-height: 80vw;
    }

    .creative-triangle-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -20px auto 0;
        padding: 12px 14px 18px;
    }

    .creative-triangle-float .ct-svg {
        width: 110px;
        height: 92px;
    }

    .ctf-label span {
        font-size: 0.55rem;
    }

    .ctf-label svg {
        width: 10px;
        height: 10px;
    }

    .service-card {
        padding: 28px;
    }

    .contact-method-card {
        padding: 18px 24px;
    }
}