/* ============================================================
ALL-IN-ONE BRANDING SHOP
SERVICES PAGE
services.css

Page-specific styling only.
Global styles belong in main.css.

Designed to work with:
css/main.css
============================================================ */

/* ============================================================
SERVICES PAGE
============================================================ */

.services-page {
background: var(--dark);
}

/* ============================================================
SERVICES HERO
============================================================ */

.services-hero {
position: relative;
min-height: 620px;
display: flex;
align-items: center;
overflow: hidden;
background:
radial-gradient(
circle at 82% 20%,
rgba(215, 180, 106, 0.10),
transparent 30%
),
radial-gradient(
circle at 12% 85%,
rgba(215, 180, 106, 0.035),
transparent 28%
),
linear-gradient(
180deg,
#0a0a0a 0%,
#080808 100%
);
border-bottom: 1px solid var(--border);
}

.services-hero::before {
content: "";
position: absolute;
top: -180px;
right: -180px;
width: 520px;
height: 520px;
border: 1px solid rgba(215, 180, 106, 0.08);
border-radius: 50%;
pointer-events: none;
}

.services-hero::after {
content: "";
position: absolute;
right: 90px;
bottom: -220px;
width: 420px;
height: 420px;
border: 1px solid rgba(215, 180, 106, 0.045);
border-radius: 50%;
pointer-events: none;
}

.services-hero .container {
position: relative;
z-index: 2;
}

.services-hero-content {
max-width: 820px;
padding: 90px 0;
}

.services-hero h1 {
max-width: 800px;
margin: 0;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: clamp(48px, 7vw, 82px);
font-weight: 400;
line-height: 0.98;
letter-spacing: -3px;
}

.services-hero h1 span {
display: block;
color: var(--gold);
}

.services-hero p {
max-width: 650px;
margin: 28px 0 0;
color: var(--soft);
font-size: 15px;
line-height: 1.9;
}

.services-hero-actions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 12px;
margin-top: 34px;
}

.services-hero-actions .btn {
min-width: 160px;
}

/* ============================================================
QUICK CATEGORIES
============================================================ */

.service-categories {
position: relative;
background: var(--bg-2);
border-bottom: 1px solid var(--border);
}

.category-list {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-list a {
position: relative;
min-height: 92px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 18px 14px;
border-right: 1px solid var(--border);
color: var(--soft);
font-size: 10px;
font-weight: 800;
letter-spacing: 1px;
text-align: center;
text-transform: uppercase;
transition:
color var(--transition),
background var(--transition);
}

.category-list a:first-child {
border-left: 1px solid var(--border);
}

.category-list a:hover {
background: rgba(215, 180, 106, 0.035);
color: var(--gold);
}

.category-list a span {
color: var(--gold);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: 13px;
font-weight: 400;
}

/* ============================================================
GENERAL SERVICE SECTION
============================================================ */

.service-section {
position: relative;
padding: 105px 0;
background: var(--dark);
border-bottom: 1px solid var(--border);
}

.service-section-dark {
background: var(--bg-2);
}

.service-section-heading {
display: grid;
grid-template-columns:
minmax(0, 1.2fr)
minmax(260px, 0.8fr);
align-items: end;
gap: 60px;
margin-bottom: 48px;
}

.service-section-heading h2 {
max-width: 720px;
margin: 0;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: clamp(36px, 5vw, 58px);
font-weight: 400;
line-height: 1.05;
letter-spacing: -1.8px;
}

.service-section-heading p {
max-width: 430px;
margin: 0;
color: var(--soft);
font-size: 13px;
line-height: 1.85;
}

/* ============================================================
PRINTING SERVICE GRID
============================================================ */

.service-detail-grid {
display: grid;
grid-template-columns:
repeat(3, minmax(0, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
}

.service-detail-card {
position: relative;
min-width: 0;
min-height: 390px;
display: flex;
flex-direction: column;
padding: 30px;
background: var(--card);
transition:
background var(--transition),
transform var(--transition);
}

.service-detail-card:hover {
background:
linear-gradient(
145deg,
rgba(215, 180, 106, 0.055),
rgba(255, 255, 255, 0.015)
);
z-index: 2;
}

.service-card-top {
min-height: 45px;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 15px;
}

.large-service-icon {
width: 44px;
height: 44px;
display: grid;
place-items: center;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 19px;
background: rgba(215, 180, 106, 0.035);
}

.service-tag {
display: inline-flex;
align-items: center;
min-height: 23px;
padding: 0 9px;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 8px;
font-weight: 900;
letter-spacing: 1.2px;
}

.service-detail-card h3 {
margin: 28px 0 10px;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: 23px;
font-weight: 400;
line-height: 1.2;
}

.service-detail-card > p {
margin: 0;
color: var(--soft);
font-size: 12px;
line-height: 1.8;
}

.service-detail-card ul {
display: flex;
flex-direction: column;
gap: 7px;
margin-top: 22px;
}

.service-detail-card li {
position: relative;
padding-left: 17px;
color: var(--muted);
font-size: 11px;
line-height: 1.55;
}

.service-detail-card li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: var(--gold);
font-weight: 800;
}

.service-order-link {
display: inline-flex;
align-items: center;
gap: 8px;
width: fit-content;
margin-top: auto;
padding-top: 25px;
color: var(--gold);
font-size: 9px;
font-weight: 900;
letter-spacing: 1px;
text-transform: uppercase;
transition:
color var(--transition),
gap var(--transition);
}

.service-order-link span {
font-size: 14px;
line-height: 1;
}

.service-order-link:hover {
gap: 12px;
color: var(--gold-light);
}

/* ============================================================
LABELS & STICKERS
============================================================ */

.feature-service-grid {
display: grid;
grid-template-columns:
repeat(3, minmax(0, 1fr));
gap: 18px;
}

.feature-service {
position: relative;
min-height: 330px;
display: flex;
flex-direction: column;
padding: 32px;
background:
linear-gradient(
145deg,
rgba(255, 255, 255, 0.035),
rgba(255, 255, 255, 0.012)
);
border: 1px solid var(--border);
transition:
transform var(--transition),
border-color var(--transition),
background var(--transition),
box-shadow var(--transition);
}

.feature-service:hover {
transform: translateY(-4px);
border-color: var(--border-gold);
background:
linear-gradient(
145deg,
rgba(215, 180, 106, 0.055),
rgba(255, 255, 255, 0.012)
);
box-shadow: var(--shadow-md);
}

.feature-service-icon {
width: 48px;
height: 48px;
display: grid;
place-items: center;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 20px;
background: rgba(215, 180, 106, 0.035);
}

.feature-number {
display: block;
margin-top: 25px;
color: var(--gold-dark);
font-size: 9px;
font-weight: 900;
letter-spacing: 1.5px;
}

.feature-service h3,
.finishing-card h3 {
margin: 9px 0 10px;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: 24px;
font-weight: 400;
}

.feature-service p,
.finishing-card p {
margin: 0;
color: var(--soft);
font-size: 12px;
line-height: 1.8;
}

.feature-service a,
.finishing-card a {
display: inline-flex;
align-items: center;
gap: 8px;
width: fit-content;
margin-top: auto;
padding-top: 24px;
color: var(--gold);
font-size: 9px;
font-weight: 900;
letter-spacing: 1px;
text-transform: uppercase;
transition:
color var(--transition),
gap var(--transition);
}

.feature-service a span,
.finishing-card a span {
font-size: 14px;
}

.feature-service a:hover,
.finishing-card a:hover {
gap: 12px;
color: var(--gold-light);
}

/* ============================================================
DESIGN LIST
============================================================ */

.design-list {
display: flex;
flex-direction: column;
border-top: 1px solid var(--border);
}

.design-row {
min-height: 125px;
display: grid;
grid-template-columns:
60px
58px
minmax(0, 1fr)
auto;
align-items: center;
gap: 22px;
padding: 20px 10px;
border-bottom: 1px solid var(--border);
transition:
background var(--transition),
padding var(--transition);
}

.design-row:hover {
padding-left: 18px;
padding-right: 18px;
background: rgba(215, 180, 106, 0.025);
}

.design-number {
color: var(--gold-dark);
font-size: 9px;
font-weight: 900;
letter-spacing: 1px;
}

.design-icon {
width: 42px;
height: 42px;
display: grid;
place-items: center;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 18px;
}

.design-content {
min-width: 0;
}

.design-content h3 {
margin: 0 0 6px;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: 22px;
font-weight: 400;
}

.design-content p {
max-width: 600px;
margin: 0;
color: var(--soft);
font-size: 11px;
line-height: 1.7;
}

.design-row > a {
display: inline-flex;
align-items: center;
gap: 7px;
color: var(--gold);
font-size: 9px;
font-weight: 900;
letter-spacing: 1px;
text-transform: uppercase;
white-space: nowrap;
transition:
color var(--transition),
gap var(--transition);
}

.design-row > a span {
font-size: 14px;
}

.design-row > a:hover {
gap: 11px;
color: var(--gold-light);
}

/* ============================================================
FINISHING
============================================================ */

.finishing-grid {
display: grid;
grid-template-columns:
repeat(2, minmax(0, 1fr));
gap: 18px;
}

.finishing-card {
position: relative;
min-height: 300px;
display: flex;
flex-direction: column;
padding: 32px;
background:
linear-gradient(
145deg,
rgba(255, 255, 255, 0.035),
rgba(255, 255, 255, 0.012)
);
border: 1px solid var(--border);
transition:
transform var(--transition),
border-color var(--transition),
background var(--transition),
box-shadow var(--transition);
}

.finishing-card:hover {
transform: translateY(-4px);
border-color: var(--border-gold);
background:
linear-gradient(
145deg,
rgba(215, 180, 106, 0.055),
rgba(255, 255, 255, 0.012)
);
box-shadow: var(--shadow-md);
}

.finishing-icon {
width: 48px;
height: 48px;
display: grid;
place-items: center;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 20px;
}

/* ============================================================
WEBSITE SERVICES
============================================================ */

.website-service {
display: grid;
grid-template-columns:
minmax(0, 1.05fr)
minmax(320px, 0.95fr);
gap: 70px;
align-items: center;
padding: 55px;
background:
radial-gradient(
circle at 85% 15%,
rgba(215, 180, 106, 0.08),
transparent 35%
),
linear-gradient(
145deg,
rgba(255, 255, 255, 0.035),
rgba(255, 255, 255, 0.012)
);
border: 1px solid var(--border);
}

.website-service-content h2 {
max-width: 650px;
margin: 0;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: clamp(36px, 5vw, 56px);
font-weight: 400;
line-height: 1.05;
letter-spacing: -1.7px;
}

.website-service-content p {
max-width: 580px;
margin: 20px 0 0;
color: var(--soft);
font-size: 13px;
line-height: 1.85;
}

.website-options {
display: flex;
flex-direction: column;
gap: 10px;
}

.website-option {
min-height: 90px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 18px 20px;
background: rgba(255, 255, 255, 0.025);
border: 1px solid var(--border);
color: var(--white);
transition:
background var(--transition),
border-color var(--transition),
transform var(--transition);
}

.website-option:hover {
transform: translateX(4px);
background: rgba(215, 180, 106, 0.045);
border-color: var(--border-gold);
}

.website-option > div {
display: flex;
align-items: center;
gap: 14px;
}

.website-option > div > span:last-child {
color: var(--soft);
font-size: 11px;
font-weight: 800;
letter-spacing: 0.7px;
text-transform: uppercase;
}

.website-option-icon {
width: 40px;
height: 40px;
display: grid;
place-items: center;
border: 1px solid var(--border-gold);
color: var(--gold);
font-size: 17px;
}

.website-option strong {
color: var(--gold);
font-size: 18px;
font-weight: 400;
transition: transform var(--transition);
}

.website-option:hover strong {
transform: translateX(4px);
}

/* ============================================================
CUSTOM PROJECT
============================================================ */

.custom-project-section {
position: relative;
padding: 90px 0;
background:
radial-gradient(
circle at 15% 50%,
rgba(215, 180, 106, 0.055),
transparent 28%
),
var(--dark);
border-bottom: 1px solid var(--border);
}

.custom-project-box {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
padding: 48px;
background:
linear-gradient(
145deg,
rgba(215, 180, 106, 0.045),
rgba(255, 255, 255, 0.015)
);
border: 1px solid var(--border-gold);
}

.custom-project-box > div {
max-width: 700px;
}

.custom-project-box h2 {
margin: 0;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: clamp(32px, 4vw, 46px);
font-weight: 400;
line-height: 1.08;
letter-spacing: -1.3px;
}

.custom-project-box p {
max-width: 620px;
margin: 16px 0 0;
color: var(--soft);
font-size: 13px;
line-height: 1.85;
}

.custom-project-box .btn {
flex: 0 0 auto;
min-width: 180px;
}

/* ============================================================
SERVICES CTA
============================================================ */

.services-cta {
position: relative;
padding: 105px 0;
background:
radial-gradient(
circle at 50% 20%,
rgba(215, 180, 106, 0.09),
transparent 35%
),
var(--bg-2);
}

.services-cta-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
}

.services-cta-inner > div {
max-width: 720px;
}

.services-cta h2 {
margin: 0;
color: var(--white);
font-family:
Georgia,
"Times New Roman",
serif;
font-size: clamp(38px, 5vw, 58px);
font-weight: 400;
line-height: 1.05;
letter-spacing: -1.7px;
}

.services-cta p {
margin: 18px 0 0;
color: var(--soft);
font-size: 13px;
line-height: 1.8;
}

.services-cta .btn {
flex: 0 0 auto;
min-width: 180px;
}

/* ============================================================
RESPONSIVE — 1100px
============================================================ */

@media (max-width: 1100px) {

```
.services-hero {
    min-height: 560px;
}

.services-hero h1 {
    font-size: clamp(45px, 7vw, 72px);
}

.service-section-heading {
    gap: 35px;
}

.website-service {
    gap: 45px;
    padding: 45px;
}

.custom-project-box {
    padding: 40px;
}
```

}

/* ============================================================
RESPONSIVE — 1000px
============================================================ */

@media (max-width: 1000px) {

```
.category-list a {
    font-size: 9px;
}

.service-detail-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.feature-service-grid {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.feature-service:last-child {
    grid-column: 1 / -1;
}

.website-service {
    grid-template-columns: 1fr;
}

.website-service-content h2 {
    max-width: 700px;
}

.website-options {
    max-width: 700px;
}
```

}

/* ============================================================
RESPONSIVE — 850px
============================================================ */

@media (max-width: 850px) {

```
.services-hero {
    min-height: auto;
}

.services-hero-content {
    padding: 85px 0;
}

.services-hero h1 {
    font-size: clamp(44px, 9vw, 68px);
}

.service-section {
    padding: 80px 0;
}

.service-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
}

.service-section-heading p {
    max-width: 600px;
}

.category-list {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.category-list a:nth-child(4),
.category-list a:nth-child(5) {
    border-top: 1px solid var(--border);
}

.category-list a:nth-child(4) {
    border-left: 1px solid var(--border);
}

.website-service {
    padding: 38px;
}

.custom-project-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px;
}

.services-cta-inner {
    flex-direction: column;
    align-items: flex-start;
}
```

}

/* ============================================================
RESPONSIVE — 700px
============================================================ */

@media (max-width: 700px) {

```
.service-detail-grid,
.feature-service-grid,
.finishing-grid {
    grid-template-columns: 1fr;
}

.feature-service:last-child {
    grid-column: auto;
}

.service-detail-card {
    min-height: 350px;
}

.design-row {
    grid-template-columns:
        45px
        48px
        minmax(0, 1fr)
        auto;
    gap: 14px;
}

.design-content h3 {
    font-size: 20px;
}

.design-content p {
    font-size: 10px;
}
```

}

/* ============================================================
RESPONSIVE — 600px
============================================================ */

@media (max-width: 600px) {

```
.services-hero-content {
    padding: 70px 0;
}

.services-hero h1 {
    font-size: 45px;
    letter-spacing: -1.8px;
}

.services-hero p {
    margin-top: 22px;
    font-size: 13px;
}

.services-hero-actions {
    flex-direction: column;
    align-items: stretch;
}

.services-hero-actions .btn {
    width: 100%;
}

.category-list {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}

.category-list a {
    min-height: 76px;
}

.category-list a:nth-child(3) {
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.category-list a:nth-child(4) {
    border-left: 0;
}

.category-list a:nth-child(5) {
    grid-column: 1 / -1;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.service-section {
    padding: 65px 0;
}

.service-section-heading h2 {
    font-size: 37px;
    letter-spacing: -1px;
}

.service-detail-card,
.feature-service,
.finishing-card {
    padding: 26px;
}

.design-row {
    grid-template-columns:
        40px
        44px
        minmax(0, 1fr);
    gap: 12px;
    padding: 22px 4px;
}

.design-row > a {
    grid-column: 3;
    width: fit-content;
    padding-top: 3px;
}

.design-content h3 {
    font-size: 19px;
}

.design-content p {
    font-size: 10px;
}

.website-service {
    padding: 28px;
}

.website-service-content h2 {
    font-size: 37px;
    letter-spacing: -1px;
}

.website-option {
    min-height: 78px;
    padding: 15px;
}

.website-option > div > span:last-child {
    font-size: 9px;
}

.custom-project-section {
    padding: 65px 0;
}

.custom-project-box {
    padding: 28px;
}

.custom-project-box h2 {
    font-size: 34px;
    letter-spacing: -1px;
}

.custom-project-box .btn {
    width: 100%;
}

.services-cta {
    padding: 75px 0;
}

.services-cta h2 {
    font-size: 38px;
    letter-spacing: -1px;
}

.services-cta .btn {
    width: 100%;
}
```

}

/* ============================================================
RESPONSIVE — 480px
============================================================ */

@media (max-width: 480px) {

```
.services-hero h1 {
    font-size: 41px;
}

.category-list a {
    min-height: 70px;
    padding: 14px 8px;
    font-size: 8px;
    letter-spacing: 0.7px;
}

.category-list a span {
    font-size: 11px;
}

.service-detail-card {
    min-height: 330px;
}

.design-row {
    grid-template-columns:
        34px
        40px
        minmax(0, 1fr);
    gap: 10px;
}

.design-icon {
    width: 38px;
    height: 38px;
}

.design-content h3 {
    font-size: 17px;
}

.website-service {
    padding: 23px;
}

.website-service-content h2 {
    font-size: 34px;
}

.website-option {
    gap: 10px;
}

.website-option > div {
    gap: 10px;
}

.website-option-icon {
    width: 36px;
    height: 36px;
}
```

}

/* ============================================================
RESPONSIVE — 380px
============================================================ */

@media (max-width: 380px) {

```
.services-hero h1 {
    font-size: 37px;
}

.category-list {
    grid-template-columns: 1fr;
}

.category-list a,
.category-list a:nth-child(3),
.category-list a:nth-child(4),
.category-list a:nth-child(5) {
    grid-column: auto;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.category-list a:first-child {
    border-top: 0;
}

.design-row {
    grid-template-columns:
        34px
        minmax(0, 1fr);
}

.design-icon {
    display: none;
}

.design-content {
    grid-column: 2;
}

.design-row > a {
    grid-column: 2;
}

.website-service-content h2 {
    font-size: 31px;
}


}
