:root {
    --primary: #C89B5F;
    --text-dark: #1F1F1F;
    --text-light: #7A7A7A;
    --bg-main: #FFFFFF;
    --bg-section: #F8F3F0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --border-color: #EAEAEA;
    --content-width: 980px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { background-color: var(--bg-main); color: var(--text-dark); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: normal; }

/* General content list style — applies inside sections, not in nav */
section ul, main ul, article ul { display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 16px 0; }
section ul li, main ul li, article ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-light); line-height: 1.65; }
section ul li::before, main ul li::before, article ul li::before { content: ''; display: inline-block; width: 8px; height: 8px; min-width: 8px; border-radius: 50%; background: var(--primary); margin-top: 6px; box-shadow: 0 0 0 3px rgba(200,155,95,0.18); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 20px 40px; font-family: var(--font-body); font-weight: 600; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; border: none; border-radius: 12px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 25px rgba(200, 155, 95, 0.3); }
.btn-primary:hover { background: #A04A2A; box-shadow: 0 15px 30px rgba(200, 155, 95, 0.4); }
.btn-secondary { background: #EBE0D8; color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-dark); box-shadow: none; }
.btn-dark { background: #1C2030; color: #fff; }

/* Dotted Pattern */
.dots { position: absolute; width: 150px; height: 150px; background-image: radial-gradient(var(--primary) 2px, transparent 2px); background-size: 20px 20px; z-index: -1; opacity: 0.3; }
.dots-circles { position: absolute; width: 250px; height: 250px; border: 1px dashed rgba(0,0,0,0.1); border-radius: 50%; z-index: -1; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 40px 60px; position: absolute; width: 100%; top: 0; z-index: 100; }
.logo { font-size: 20px; font-weight: bold; font-family: var(--font-heading); color: #111; line-height: 1.3; }
.logo span { color: var(--primary); font-size: 14px; font-weight: 500; font-family: var(--font-body); display: block; margin-top: 4px; }
nav ul { display: flex; gap: 50px; }
nav a { font-size: 18px; font-weight: 600; font-family: var(--font-body); color: #333; position: relative; display: flex; align-items: center; gap: 5px; transition: 0.3s; }
nav a i { font-size: 10px; }
nav a:hover { color: var(--primary); }
nav a.active { color: var(--primary); }
nav a.active::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 25px; height: 3px; background: var(--primary); border-radius: 2px; }

/* Hero */
.hero { padding-top: 180px; padding-bottom: 100px; position: relative; }
.hero-blob { position: absolute; top: -50px; right: 8%; width: 550px; height: 650px; background: #F8F3F0; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; z-index: -2; }
.hero .container { display: flex; align-items: center; justify-content: space-between; }
.hero-content { max-width: 500px; }
.hero h1 { font-size: 52px; line-height: 1.15; margin-bottom: 25px; color: #111; }
.hero h1 span { color: var(--primary); font-family: var(--font-heading); }
.hero-p { color: var(--text-light); font-size: 15px; margin-bottom: 40px; max-width: 400px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.play-btn { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #222; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: 0.3s; }
.play-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.hero-img-wrap { position: relative; width: 450px; height: 550px; z-index: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; border-radius: 250px 250px 0 0; }
.badge { position: absolute; background: #fff; padding: 12px 25px; border-radius: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 15px; z-index: 10; }
.badge-top { top: 60px; right: -20px; }
.badge-top .b-icon { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--primary); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 12px; }
.badge-top .b-text { font-size: 20px; font-weight: 700; font-family: var(--font-body); line-height: 1.1; }
.badge-top .b-sub { font-size: 11px; color: var(--text-light); font-weight: normal; }
.badge-bottom { bottom: 80px; left: -80px; padding: 15px 25px; }
.badge-bottom .b-text { font-size: 24px; font-weight: 700; line-height: 1.1; }
.badge-bottom .b-sub { font-size: 12px; color: var(--text-light); }
.badge-bottom .b-icon { font-size: 24px; color: var(--primary); margin-left: 10px; }

.cv-download { position: absolute; bottom: -30px; right: 20px; width: 120px; height: 120px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); z-index: 10; cursor: pointer; }
.cv-circle-text { position: absolute; width: 100%; height: 100%; animation: spin 10s linear infinite; }
.cv-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; position: relative; z-index: 2; }
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Testimonials */
.testimonials { 
    padding: 20px 0 75px 0;
    position: relative; 
    overflow: hidden;
}
.testim-carousel-container { max-width: var(--content-width); margin: 0 auto; }

/* Courses (block before testimonials) */
.courses { padding: 90px 0; }
.courses .section-title { margin-bottom: 35px; text-align: center; display: block; }
.courses .section-title::after { margin-left: auto; margin-right: auto; }
.courses-content { max-width: var(--content-width); margin: 0 auto; }

/* Shared background starting from Kurse */
.bg-from-kurse {
    background-image: url('../images/background.jpg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Avoid double background when Preise uses .resume */
.bg-from-kurse .resume { background-image: none; }

.courses-intro { text-align: left; }
.courses-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #111;
    margin-bottom: 14px;
}
.courses-kicker i { color: var(--primary); }
.courses-intro p { color: var(--text-light); font-size: 15px; line-height: 1.85; margin-bottom: 14px; }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 22px 0;
}
.course-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(234,234,234,0.9);
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    backdrop-filter: blur(4px);
}
.course-card h3 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}
.course-card h3 i { color: var(--primary); }
.course-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

.courses-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 12px;
}
.courses-box {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(234,234,234,0.9);
    border-radius: 14px;
    padding: 20px 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
}
.courses-box-accent {
    border-color: rgba(200,155,95,0.30);
    box-shadow: 0 16px 40px rgba(200,155,95,0.10);
}
.courses-box h3 {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}
.courses-box h3 i { color: var(--primary); }
.courses-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.courses-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.courses-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 7px;
    box-shadow: 0 0 0 3px rgba(200,155,95,0.18);
    flex-shrink: 0;
}

.courses-cta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(200,155,95,0.10);
    border: 1px solid rgba(200,155,95,0.22);
    color: #111;
}
.courses-cta .cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFF9F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(200,155,95,0.18);
}
.courses-cta .cta-text { font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
    .courses-grid { grid-template-columns: 1fr; }
    .courses-split { grid-template-columns: 1fr; }
}
.section-title {
    font-size: 38px;
    margin-bottom: 60px;
    color: #111;
    text-align: left;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 120px;
    height: 8px;
    margin-top: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 L75 6 Q95 6, 110 2' stroke='%23C89B5F' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.75'/%3E%3C/svg%3E") no-repeat left center;
    background-size: contain;
}
.testim-carousel-container { position: relative; overflow: hidden; padding: 20px 0; width: 100%; }
.testim-track { display: flex; transition: transform 0.5s ease; width: 100%; }
.testim-slide { flex: 0 0 33.3333%; padding: 0 20px; box-sizing: border-box; }
.t-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; width: 50px; height: 50px; border-radius: 50%; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; color: var(--primary); z-index: 10; font-size: 18px; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.t-nav-btn:hover { background: var(--primary); color: #fff; }
.t-nav-btn.prev { left: 0; }
.t-nav-btn.next { right: 0; }
.testim-card { background: #fff; padding: 40px; box-shadow: none; position: relative; border-radius: 4px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.quote-icon { font-size: 30px; color: var(--primary); opacity: 0.2; position: absolute; top: 30px; right: 30px; }
.testim-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 25px; font-style: italic; }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.client-info h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; margin-bottom: 3px; color: #111; }
.client-info span { font-size: 12px; color: var(--primary); }
.serv-centered { text-align: center; }

/* Bio */
.bio { padding: 40px 0 110px 0; display: flex; align-items: center; gap: 70px; }
.bio-images { flex: 0 0 420px; position: relative; }
.bio-img-main { width: 420px; height: 520px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.10); position: relative; z-index: 2; transition: transform 0.3s ease; display: block; }
.bio-img-main:hover { transform: translateY(-5px); }
.bio-images::before { content: ''; position: absolute; top: 18px; left: 18px; width: 420px; height: 520px; border: 2px solid var(--primary); border-radius: 16px; z-index: 1; opacity: 0.45; }
.bio-text { flex: 1; min-width: 0; }
.bio-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; font-family: var(--font-body); }
.bio-text h2 {
    font-size: 38px;
    margin-bottom: 0;
    color: #111;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}
.bio-text h2::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 120px;
    height: 8px;
    margin-top: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 L75 6 Q95 6, 110 2' stroke='%23C89B5F' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.75'/%3E%3C/svg%3E") no-repeat left center;
    background-size: contain;
}
.bio-divider { display: none; }
.bio-body { font-size: 15px; color: var(--text-light); margin-bottom: 30px; line-height: 1.85; width: 100%; }
.bio-text-content { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 18px; }
.bio-body ul { list-style: none; padding: 0; margin: 0 0 0 0; display: flex; flex-direction: column; gap: 10px; }
.bio-body ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-light); line-height: 1.6; }
.bio-body ul li::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 0 3px rgba(200,155,95,0.18); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 10px; }
.bio-images .bio-grid { grid-template-columns: 1fr 1fr; margin-top: 0; padding-top: 18px; }
.bio-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: #fff; border: 1px solid #EAEAEA; border-radius: 10px; transition: 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.bio-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); border-color: var(--primary); }
.bio-icon { width: 40px; height: 40px; border-radius: 10px; background: #FFF9F2; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.bio-info { display: flex; flex-direction: column; }
.bio-info span { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px; font-weight: 700; }
.bio-info strong { font-size: 13px; color: #111; font-weight: 600; font-family: var(--font-body); }

/* Portfolio */
.portfolio { padding: 100px 0; text-align: center; }
.portfolio-title { font-size: 38px; margin-bottom: 80px; color: #111; }
.port-masonry { display: flex; justify-content: center; align-items: center; gap: 40px; }
.port-col-1 { display: flex; flex-direction: column; gap: 30px; align-items: flex-end; }
.port-col-1 img:first-child { width: 280px; height: 260px; object-fit: cover; }
.port-col-1 img:last-child { width: 230px; height: 260px; object-fit: cover; }
.port-col-2 { width: 350px; }
.port-col-2 h3 { font-size: 36px; line-height: 1.25; font-weight: normal; color: #000; }
.port-col-3 { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.port-col-3 img:first-child { width: 250px; height: 350px; object-fit: cover; }
.port-col-3 img:last-child { width: 240px; height: 200px; object-fit: cover; }

/* Resume */
.resume { 
    padding: 75px 0; 
    background-image: url('../images/background.jpg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative; 
    overflow: hidden; 
}
.resume .dots-circles { right: -50px; top: 100px; }
.resume-row { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.resume-col h2 { font-size: 32px; margin-bottom: 50px; color: #111; }
.timeline { position: relative; padding-left: 30px; border-left: 1px solid #DFDFDF; }
.tl-item { position: relative; margin-bottom: 45px; }
.tl-item::before { content: ''; position: absolute; left: -36px; top: 5px; width: 11px; height: 11px; background: var(--primary); border-radius: 50%; }
.tl-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 18px; margin-bottom: 10px; color: #111; }
.tl-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.awards-box { display: flex; gap: 20px; margin-top: 50px; }
.aw-card { background: #fff; padding: 20px; display: flex; align-items: center; gap: 15px; width: 100%; }
.aw-icon { color: var(--primary); font-size: 24px; position: relative; z-index: 1; }
.aw-icon::after { content: ''; position: absolute; inset: -8px; background: #FFF3EE; z-index: -1; transform: rotate(45deg); border-radius: 3px; }
.aw-card object { display: none; }
.aw-text h5 { font-family: var(--font-body); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.aw-text span { font-size: 12px; color: var(--text-light); }

/* Prices (content inside .resume) */
.prices .section-title { margin-bottom: 40px; text-align: center; display: block; }
.prices .section-title::after { margin-left: auto; margin-right: auto; }
.prices-content { max-width: var(--content-width); margin: 0 auto; }
.prices-intro p { font-size: 15px; color: var(--text-light); margin-bottom: 22px; text-align: center; }
.prices-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}
.price-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(234,234,234,0.9);
    border-radius: 14px;
    padding: 22px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    backdrop-filter: blur(4px);
}
.price-card h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}
.price-card h3 i { color: var(--primary); }
.price-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(200,155,95,0.12);
    color: var(--primary);
    border: 1px solid rgba(200,155,95,0.22);
    padding: 6px 10px;
    border-radius: 999px;
}
.price-card-accent {
    border-color: rgba(200,155,95,0.35);
    box-shadow: 0 18px 45px rgba(200,155,95,0.12);
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(248,243,240,0.7);
    border: 1px solid rgba(234,234,234,0.8);
}
.price-list li span { color: #333; font-size: 14px; }
.price-list li strong { color: #111; font-size: 14px; font-weight: 800; }
.price-note { color: var(--text-light); font-size: 14px; margin-bottom: 10px; }
.bullet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.bullet-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 7px;
    box-shadow: 0 0 0 3px rgba(200,155,95,0.18);
    flex-shrink: 0;
}
.price-cta {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(200,155,95,0.10);
    border: 1px solid rgba(200,155,95,0.20);
    color: #111;
}
.price-cta i { color: var(--primary); margin-top: 2px; }
.price-card-wide { grid-column: 1 / -1; }

@media (max-width: 900px) {
    .prices-grid { grid-template-columns: 1fr; }
    .price-card-wide { grid-column: auto; }
    .prices-content { padding: 0 6px; }
}

/* Skills */
.skills { display: flex; background: #2F2F2F; color: #fff; }
.sk-left { flex: 1; padding: 120px 80px 120px 15%; position: relative; }
.sk-left .dots { bottom: 50px; right: 50px; opacity: 0.1; }
.sk-left h2 { font-size: 38px; margin-bottom: 25px; }
.sk-left > p { color: #A0A0A0; font-size: 14px; margin-bottom: 50px; max-width: 450px; }
.sk-bar-wrap { margin-bottom: 30px; max-width: 500px; }
.sk-name { font-size: 13px; font-weight: 500; margin-bottom: 12px; display: block; }
.sk-bar { height: 6px; background: #444; border-radius: 4px; position: relative; width: 100%; }
.sk-fill { height: 100%; background: var(--primary); border-radius: 4px; position: relative; }
.sk-num { position: absolute; right: 0; top: -25px; font-size: 12px; font-weight: 600; color: #fff; }
.sk-btn { display: inline-flex; align-items: center; gap: 15px; background: #fff; color: #111; padding: 15px 30px; font-size: 12px; font-weight: 700; border-radius: 2px; margin-top: 30px; }
.sk-right { flex: 1; background: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=800&q=80') center/cover; position: relative; }
.sk-right .badge { bottom: 80px; left: -60px; padding: 15px 25px; border-radius: 10px; } /* Using the same bottom badge style */

/* Pricing */
.pricing { padding: 120px 0; text-align: center; background: #FAFAFA; position: relative; }
.pricing-title { font-size: 38px; margin-bottom: 70px; color: #111; }
.pr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 2; }
.pr-card { background: #F6EFEA; padding: 50px 40px; text-align: center; position: relative; transition: 0.3s; }
.pr-card.active { background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.05); transform: translateY(-10px); }
.pr-card.active::before { content: ''; position: absolute; inset: -1px; border: 1px dashed rgba(0,0,0,0.1); z-index: -1; pointer-events: none; }
.pr-card h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-bottom: 20px; color: #111; }
.pr-price { font-size: 45px; font-family: var(--font-heading); color: #111; margin-bottom: 30px; display: flex; justify-content: center; align-items: center; gap: 5px; }
.pr-price span { font-size: 13px; font-family: var(--font-body); color: var(--text-light); }
.pr-features { text-align: left; margin-bottom: 40px; }
.pr-features li { font-size: 14px; color: var(--text-light); margin-bottom: 18px; display: flex; gap: 12px; align-items: center; }
.pr-features li i { color: var(--text-dark); font-size: 14px; }
.pr-card .btn { width: 100%; border: 1px solid #CCC; }
.pr-card.active .btn { background: #1C2030; color: #fff; border-color: #1C2030; }

/* Articles */
.articles { padding: 120px 0; text-align: center; }
.ar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: left; margin-top: 60px; }
.ar-card { padding: 40px; border: 1px solid #EAEAEA; transition: 0.3s; }
.ar-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.04); }
.ar-date { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 15px; display: block; }
.ar-card h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-bottom: 20px; line-height: 1.4; color: #111; }
.ar-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Contact */
.contact { display: flex; background: #FAFAFA; position: relative; overflow: hidden; }
.co-form-wrap { flex: 1; padding: 100px 50px 100px 10%; position: relative; z-index: 2; }
.co-form { background: #fff; padding: 60px; max-width: 650px; margin: 0 auto; box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-radius: 16px; border: 1px solid #F0F0F0; }
.co-form h2 {
    font-size: 36px;
    font-family: var(--font-body);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
    color: #111;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}
.co-form h2::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 120px;
    height: 8px;
    margin-top: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M2 6 L75 6 Q95 6, 110 2' stroke='%23C89B5F' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.75'/%3E%3C/svg%3E") no-repeat left center;
    background-size: contain;
}
.co-row { display: flex; gap: 20px; margin-bottom: 25px; }
.co-group { flex: 1; }
.co-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; color: #444; letter-spacing: 0.5px; text-transform: uppercase; }
.co-input { width: 100%; padding: 16px 20px; border: 1px solid #E0E0E0; border-radius: 8px; font-family: inherit; font-size: 15px; transition: 0.3s; background: #FCFCFC; }
.co-input:focus { border-color: var(--primary); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(200, 155, 95, 0.1); }
textarea.co-input { height: 140px; resize: none; }
.co-checks { display: flex; gap: 20px; margin-top: 10px; }
.co-check-label { font-size: 13px; display: flex; align-items: center; gap: 8px; color: var(--text-light); cursor: pointer; }
.co-skills { display: flex; gap: 15px; margin-top: 10px; }
.co-skill-box { width: 60px; height: 60px; border: 1px solid #Eaeaea; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; font-size: 10px; color: #999; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.co-skill-box i { font-size: 20px; }
.co-skill-box.active { border-color: var(--primary); color: #111; }

.co-img { 
    flex: 1; 
    background: url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?auto=format&fit=crop&w=1000&q=80') center/cover; 
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.co-img::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.45); 
    z-index: 1; 
}
.co-info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 600px;
}
.co-info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: all 0.3s ease;
}
.co-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}
.co-info-icon {
    font-size: 20px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.co-info-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.co-info-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
    padding: 0 !important;
}
.co-info-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 0 !important;
}

/* Footer */
footer { display: flex; justify-content: space-between; align-items: center; padding: 30px 60px; background: #fff; border-top: 1px solid #Eaeaea; }
.f-socials { display: flex; gap: 20px; }
.f-socials a { color: #555; font-size: 16px; }
.f-socials a:hover { color: var(--primary); }
.f-copy { font-size: 13px; color: var(--text-light); }

/* SVG circular text path */
.text-circle text { font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 2px; fill: #111; text-transform: uppercase; }

/* Back to Top Button */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; text-decoration: none; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
.back-to-top:hover { background: #111; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.back-to-top.show { opacity: 1; visibility: visible; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .resume-row { grid-template-columns: 1fr; }
    .sk-left { padding: 80px 40px; }
    .pr-grid, .ar-grid { grid-template-columns: 1fr; }
    .contact, .bio { flex-direction: column; }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-img-wrap { margin-top: 50px; }
    .serv-grid { grid-template-columns: 1fr; }
    .testim-slide { flex: 0 0 50%; }
    .port-masonry { flex-direction: column; }
}

@media (max-width: 768px) {
    /* Header Menu */
    .menu-toggle { display: block; font-size: 24px; cursor: pointer; color: #111; }
    nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); padding: 20px 0; z-index: 101; }
    nav.active { display: block; }
    nav ul { flex-direction: column; gap: 15px; align-items: center; }
    header { padding: 20px; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; }
    .logo { font-size: 16px; width: 85%; }
    .logo span { font-size: 12px; }
    
    /* Container */
    .container { padding: 0 20px; width: 100%; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
    
    /* Hero */
    .hero { padding-top: 100px; padding-bottom: 50px; text-align: left; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
    .hero h1 { font-size: 34px; margin-bottom: 15px; text-align: left; }
    .hero-p { font-size: 14px; text-align: left; margin: 0 0 30px 0; max-width: 100%; }
    .hero-actions { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 15px; }
    .hero-actions .btn { width: 100%; max-width: 300px; }
    .hero-blob { display: none; } /* Hidden to prevent horizontal overflow shifting */
    .hero-img-wrap { width: 100%; max-width: 320px; height: auto; margin: 40px auto 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-img { height: auto; aspect-ratio: 4/5; border-radius: 160px 160px 0 0; }
    .badge { position: relative; inset: auto; margin: 15px auto; width: 100%; justify-content: center; }
    .badge-top, .badge-bottom { right: auto; left: auto; top: auto; bottom: auto; }
    
    /* Typography */
    .section-title, .pricing-title { font-size: 28px; margin-bottom: 30px; text-align: left; width: 100%; }
    p, h1, h2, h3, h4, h5, h6, span { padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
    .btn span { padding: 0; } /* Reset for buttons */
    
    /* Courses */
    .courses { padding: 45px 0; }
    
    /* Bio */
    .bio { padding: 40px 0; text-align: left; display: flex; flex-direction: column; align-items: center; }
    .bio-images { width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 35px; margin-top: 0; flex: none; }
    .bio-img-main { width: 280px; height: 350px; margin: 0 auto; border-radius: 14px; position: relative; }
    .bio-images::before { top: 12px; left: calc(50% - 140px); width: 280px; height: 350px; opacity: 0.3; }
    .bio-img-sub { display: none; }
    .bio-text { text-align: left; display: flex; flex-direction: column; align-items: flex-start; margin: 0; padding: 0; width: 100%; }
    .bio-label { text-align: left; }
    .bio-text h2 { text-align: left; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
    .bio-body { text-align: left; padding-left: 20px; padding-right: 20px; box-sizing: border-box; max-width: 100%; }
    .bio-images .bio-grid { grid-template-columns: 1fr !important; gap: 12px; width: 100%; box-sizing: border-box; margin-top: 30px; padding: 0 20px; margin-bottom: 50px; }
    .bio-item { justify-content: flex-start; text-align: left; }
    
    /* Resume */
    .resume { padding: 10px 0; }
    .resume-row { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 50px; width: 100%; }
    .resume-col { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
    .resume-col h2 { text-align: left; margin-bottom: 30px; }
    .timeline { padding-left: 0; border: none; width: 100%; text-align: left; }
    .tl-item::before { display: none; }
    .tl-item { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 30px; }
    .awards-box { flex-direction: column; width: 100%; align-items: flex-start; margin-top: 20px; }
    .aw-card { flex-direction: column; text-align: left; justify-content: flex-start; }
    .aw-icon { margin-bottom: 10px; }
    
    /* Testimonials */
    .testim-slide { flex: 0 0 100%; }
    .testim-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 30px 20px; }
    .quote-icon { position: static; margin-bottom: 15px; display: block; text-align: left; }
    .client-info { flex-direction: column; text-align: left; }
    
    /* Articles */
    .ar-grid { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
    .ar-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; width: 100%; }
    
    /* Contact Form */
    .contact { flex-direction: column-reverse; }
    .contact::before { display: none; }
    .co-form-wrap { padding: 50px 20px; width: 100%; display: flex; flex-direction: column; align-items: center; }
    .co-form { padding: 30px 20px; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .co-form h2 { text-align: center; width: 100%; }
    .co-row, .co-skills, .co-checks { flex-direction: column; gap: 15px; width: 100%; align-items: center; }
    .co-group { width: 100%; text-align: center; }
    .co-label { text-align: center; width: 100%; display: block; padding-left: 20px; padding-right: 20px; box-sizing: border-box; }
    .co-input { padding: 20px; font-size: 16px; border-radius: 10px; }
    textarea.co-input { height: 180px; }
    .co-skill-box { width: 100%; max-width: 300px; flex-direction: row; justify-content: center; padding: 10px; margin: 0 auto; }
    .co-img { padding: 40px 20px; width: 100%; min-height: auto; }
    .co-info-grid { grid-template-columns: 1fr; width: 100%; max-width: 100%; gap: 15px; }
    .co-info-card { width: 100%; padding: 15px 20px; }
    
    /* Footer */
    footer { flex-direction: column; gap: 15px; padding: 30px 20px; text-align: center; justify-content: center; }
    .f-socials { justify-content: center; width: 100%; }
}

@media (min-width: 769px) {
    .menu-toggle { display: none; }
}
