/* ==========================================================
   ADGRO MEDIA — CUTTING & FABRICATION
   File: cutting-fabrication.css
   Theme: Purple / Pink / Black
   ========================================================== */

:root{
    --adgro-purple:#76245d;
    --adgro-purple-dark:#3d1230;
    --adgro-purple-light:#a94487;
    --adgro-pink:#d66ca9;
    --adgro-black:#08070a;
    --adgro-black-soft:#151116;
    --adgro-white:#ffffff;
    --adgro-bg:#f7f4f7;
    --adgro-border:#e8dfe6;
    --adgro-text:#241e23;
    --adgro-muted:#756b72;
    --adgro-shadow:0 15px 45px rgba(64,25,51,.08);
    --adgro-shadow-lg:0 25px 70px rgba(61,18,48,.16);
    --adgro-radius:20px;
    --adgro-transition:all .3s ease;
}

body{
    color:var(--adgro-text);
    background:#fff;
    overflow-x:hidden;
}

/* ==========================================================
   HERO
   ========================================================== */

.cutting-category-hero{
    position:relative;
    overflow:hidden;
    padding:0 0 95px;
    color:#fff;
    background:
        radial-gradient(circle at 88% 15%,rgba(214,108,169,.24),transparent 28%),
        radial-gradient(circle at 8% 85%,rgba(169,68,135,.15),transparent 30%),
        linear-gradient(135deg,var(--adgro-black),var(--adgro-purple-dark) 55%,var(--adgro-purple));
}

.cutting-category-hero::before{
    content:"";
    position:absolute;
    width:570px;
    height:570px;
    right:-270px;
    top:30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    box-shadow:
        0 0 0 45px rgba(255,255,255,.025),
        0 0 0 95px rgba(255,255,255,.015);
}

.cutting-category-hero::after{
    content:"";
    position:absolute;
    inset:0;
    opacity:.10;
    background-image:radial-gradient(
        rgba(255,255,255,.6) 1px,
        transparent 1px
    );
    background-size:30px 30px;
    pointer-events:none;
}

.cutting-category-hero .container,
.cutting-category-hero .row{
    position:relative;
    z-index:2;
}

/* Breadcrumb */

.service-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:23px 0 45px;
    color:rgba(255,255,255,.6);
    font-size:.88rem;
}

.service-breadcrumb a{
    color:rgba(255,255,255,.8);
    text-decoration:none;
    font-weight:650;
}

.service-breadcrumb a:hover{
    color:var(--adgro-pink);
}

.service-breadcrumb i{
    color:var(--adgro-pink);
    font-size:.7rem;
}

.service-breadcrumb span{
    color:rgba(255,255,255,.92);
}

/* Hero Text */

.service-kicker{
    display:inline-block;
    margin-bottom:18px;
    padding-left:14px;
    border-left:4px solid var(--adgro-pink);
    color:rgba(255,255,255,.94);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:2px;
    line-height:1.4;
}

.cutting-category-hero h1{
    max-width:800px;
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(2.8rem,5.5vw,5rem);
    font-weight:900;
    line-height:1.04;
    letter-spacing:-1.5px;
}

.cutting-category-hero h1 strong{
    color:var(--adgro-pink);
}

.cutting-category-hero .col-lg-7 > p{
    max-width:690px;
    margin:0 0 30px;
    color:rgba(255,255,255,.78);
    font-size:1.08rem;
    line-height:1.8;
}

/* ==========================================================
   HERO BUTTONS
   ========================================================== */

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:50px;
    padding:13px 24px;
    border-radius:10px;
    color:#fff;
    font-weight:800;
    text-decoration:none;
    transition:var(--adgro-transition);
}

.btn-call{
    background:var(--adgro-purple);
    border:2px solid var(--adgro-purple);
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.btn-call:hover{
    color:#fff;
    background:var(--adgro-purple-light);
    border-color:var(--adgro-purple-light);
    transform:translateY(-3px);
}

.btn-whatsapp{
    background:#22c55e;
    border:2px solid #22c55e;
    box-shadow:0 10px 25px rgba(34,197,94,.16);
}

.btn-whatsapp:hover{
    color:#fff;
    background:#16a34a;
    border-color:#16a34a;
    transform:translateY(-3px);
}

/* ==========================================================
   HERO CARD
   ========================================================== */

.cutting-hero-card{
    position:relative;
    overflow:hidden;
    min-height:390px;
    padding:42px 38px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:26px;
    color:var(--adgro-text);
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.98),
        rgba(248,244,247,.96));
    box-shadow:var(--adgro-shadow-lg);
}

.cutting-hero-card::before{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    right:-110px;
    top:-110px;
    border-radius:50%;
    background:rgba(214,108,169,.13);
}

.cutting-hero-card::after{
    content:"";
    position:absolute;
    width:290px;
    height:290px;
    right:-170px;
    bottom:-180px;
    border-radius:50%;
    border:35px solid rgba(118,36,93,.045);
}

.cutting-hero-icon{
    position:relative;
    z-index:2;
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    border-radius:17px;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--adgro-purple),
        var(--adgro-purple-light)
    );
    box-shadow:0 12px 25px rgba(118,36,93,.25);
    font-size:1.55rem;
}

.cutting-hero-card h2{
    position:relative;
    z-index:2;
    margin:0 0 13px;
    color:var(--adgro-black);
    font-size:clamp(2rem,3.2vw,2.7rem);
    font-weight:900;
    line-height:1.1;
}

.cutting-hero-card h2 span{
    color:var(--adgro-purple);
}

.cutting-hero-card > p{
    position:relative;
    z-index:2;
    max-width:480px;
    margin-bottom:25px;
    color:var(--adgro-muted);
    line-height:1.7;
}

.hero-card-tags{
    position:relative;
    z-index:3;
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.hero-card-tags span{
    display:inline-flex;
    align-items:center;
    padding:9px 13px;
    border:1px solid var(--adgro-border);
    border-radius:50px;
    color:var(--adgro-purple-dark);
    background:#fff;
    font-size:.82rem;
    font-weight:750;
    box-shadow:0 5px 15px rgba(64,25,51,.05);
}

/* ==========================================================
   COMMON SECTION
   ========================================================== */

.category-intro{
    padding:95px 0;
    background:#fff;
}

.section-heading{
    max-width:850px;
    margin:0 auto 50px;
}

.section-heading > span{
    display:inline-block;
    margin-bottom:12px;
    color:var(--adgro-purple);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    margin:0 0 16px;
    color:var(--adgro-black);
    font-size:clamp(2.1rem,4vw,3.2rem);
    font-weight:900;
    line-height:1.12;
}

.section-heading h2 strong{
    color:var(--adgro-purple);
}

.section-heading p{
    max-width:720px;
    margin:0 auto;
    color:var(--adgro-muted);
    font-size:1.04rem;
    line-height:1.7;
}

/* ==========================================================
   SERVICE CARDS
   ========================================================== */

.printing-service-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.printing-service-card{
    position:relative;
    min-height:315px;
    overflow:hidden;
    padding:34px 30px 30px;
    border:1px solid var(--adgro-border);
    border-radius:var(--adgro-radius);
    background:#fff;
    box-shadow:0 8px 28px rgba(64,25,51,.045);
    transition:var(--adgro-transition);
}

.printing-service-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    right:-85px;
    bottom:-85px;
    border-radius:50%;
    background:rgba(214,108,169,.065);
    transition:var(--adgro-transition);
}

.printing-service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(118,36,93,.32);
    box-shadow:var(--adgro-shadow);
}

.printing-service-card:hover::before{
    transform:scale(1.7);
}

.service-number{
    position:absolute;
    top:20px;
    right:23px;
    color:#e8dfe6;
    font-size:2.7rem;
    font-weight:900;
    line-height:1;
}

.service-icon{
    position:relative;
    z-index:2;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:21px;
    border-radius:15px;
    color:var(--adgro-purple);
    background:rgba(118,36,93,.09);
    font-size:1.35rem;
    transition:var(--adgro-transition);
}

.printing-service-card:hover .service-icon{
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--adgro-purple),
        var(--adgro-purple-light)
    );
    transform:scale(1.05);
}

.printing-service-card h3{
    position:relative;
    z-index:2;
    margin:0 0 12px;
    color:var(--adgro-black);
    font-size:1.25rem;
    font-weight:850;
    line-height:1.3;
}

.printing-service-card p{
    position:relative;
    z-index:2;
    min-height:105px;
    margin:0 0 22px;
    color:var(--adgro-muted);
    font-size:.92rem;
    line-height:1.65;
}

.printing-service-card > a{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--adgro-purple);
    font-weight:800;
    text-decoration:none;
    transition:var(--adgro-transition);
}

.printing-service-card > a:hover{
    color:var(--adgro-purple-dark);
    gap:12px;
}

/* ==========================================================
   APPLICATIONS
   ========================================================== */

.cutting-applications-section{
    padding:95px 0;
    background:var(--adgro-bg);
}

.cutting-applications-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.cutting-application-card{
    position:relative;
    overflow:hidden;
    min-height:250px;
    padding:30px 27px;
    border:1px solid var(--adgro-border);
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(64,25,51,.04);
    transition:var(--adgro-transition);
}

.cutting-application-card::after{
    content:"";
    position:absolute;
    width:130px;
    height:130px;
    right:-70px;
    bottom:-70px;
    border-radius:50%;
    background:rgba(118,36,93,.055);
    transition:var(--adgro-transition);
}

.cutting-application-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--adgro-shadow);
    border-color:rgba(118,36,93,.25);
}

.cutting-application-card:hover::after{
    transform:scale(1.5);
}

.application-icon{
    position:relative;
    z-index:2;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border-radius:16px;
    color:var(--adgro-purple);
    background:rgba(118,36,93,.09);
    font-size:1.4rem;
    transition:var(--adgro-transition);
}

.cutting-application-card:hover .application-icon{
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--adgro-purple),
        var(--adgro-purple-light)
    );
}

.cutting-application-card h3{
    position:relative;
    z-index:2;
    margin:0 0 10px;
    color:var(--adgro-black);
    font-size:1.2rem;
    font-weight:850;
}

.cutting-application-card p{
    position:relative;
    z-index:2;
    margin:0;
    color:var(--adgro-muted);
    font-size:.92rem;
    line-height:1.65;
}

/* ==========================================================
   PROCESS
   ========================================================== */

.cutting-process-section{
    padding:100px 0;
    background:#fff;
}

.cutting-process-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.cutting-process-card{
    position:relative;
    min-height:280px;
    padding:34px 27px;
    border:1px solid var(--adgro-border);
    border-radius:20px;
    background:#fff;
    text-align:center;
    box-shadow:0 8px 25px rgba(64,25,51,.04);
    transition:var(--adgro-transition);
}

.cutting-process-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--adgro-shadow);
    border-color:rgba(118,36,93,.25);
}

.cutting-process-card > span{
    position:absolute;
    top:17px;
    left:20px;
    color:var(--adgro-pink);
    font-size:.8rem;
    font-weight:900;
}

.cutting-process-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:5px auto 20px;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--adgro-purple),
        var(--adgro-purple-light)
    );
    box-shadow:0 12px 25px rgba(118,36,93,.2);
    font-size:1.55rem;
}

.cutting-process-card h3{
    margin:0 0 11px;
    color:var(--adgro-black);
    font-size:1.18rem;
    font-weight:850;
}

.cutting-process-card p{
    margin:0;
    color:var(--adgro-muted);
    font-size:.92rem;
    line-height:1.65;
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */

.cutting-why-section{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    color:#fff;
    background:
        radial-gradient(circle at 85% 20%,rgba(214,108,169,.18),transparent 28%),
        linear-gradient(135deg,var(--adgro-black),var(--adgro-black-soft));
}

.cutting-why-section::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.11;
    background-image:radial-gradient(
        rgba(255,255,255,.5) 1px,
        transparent 1px
    );
    background-size:30px 30px;
}

.cutting-why-section .container{
    position:relative;
    z-index:2;
}

.section-mini-title{
    display:inline-block;
    margin-bottom:14px;
    color:var(--adgro-pink);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:2px;
}

.cutting-why-section h2{
    max-width:650px;
    margin:0 0 20px;
    color:#fff;
    font-size:clamp(2.2rem,4vw,3.5rem);
    font-weight:900;
    line-height:1.08;
}

.cutting-why-section h2 strong{
    color:var(--adgro-pink);
}

.cutting-why-section .col-lg-6 > p{
    max-width:650px;
    margin-bottom:30px;
    color:rgba(255,255,255,.65);
    line-height:1.75;
}

/* Features */

.cutting-feature-list{
    display:flex;
    flex-direction:column;
}

.cutting-feature-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:17px 0;
    border-bottom:1px solid rgba(255,255,255,.09);
}

.cutting-feature-item:last-child{
    border-bottom:0;
}

.cutting-feature-item > span{
    flex:0 0 43px;
    width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    background:var(--adgro-purple);
    box-shadow:0 8px 20px rgba(118,36,93,.25);
}

.cutting-feature-item h4{
    margin:0 0 4px;
    color:#fff;
    font-size:1.02rem;
    font-weight:800;
}

.cutting-feature-item p{
    margin:0;
    color:rgba(255,255,255,.54);
    font-size:.9rem;
    line-height:1.5;
}

/* ==========================================================
   VISUAL CUTTING CARD
   ========================================================== */

.cutting-visual-card{
    position:relative;
    min-height:460px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;
    background:
        radial-gradient(circle at center,
        rgba(118,36,93,.32),
        rgba(255,255,255,.025) 48%,
        rgba(0,0,0,.12));
    box-shadow:0 25px 65px rgba(0,0,0,.3);
}

.visual-glow{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(214,108,169,.16);
    filter:blur(35px);
}

.cutting-ring{
    position:absolute;
    border:1px solid rgba(214,108,169,.22);
    border-radius:50%;
    animation:cuttingRotate 18s linear infinite;
}

.ring-one{
    width:220px;
    height:220px;
}

.ring-two{
    width:320px;
    height:320px;
    border-color:rgba(118,36,93,.35);
    animation-duration:24s;
    animation-direction:reverse;
}

.ring-three{
    width:410px;
    height:410px;
    border-color:rgba(255,255,255,.08);
    animation-duration:32s;
}

.cutting-center-icon{
    position:relative;
    z-index:5;
    width:100px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:26px;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--adgro-purple),
        var(--adgro-purple-light)
    );
    box-shadow:
        0 0 35px rgba(118,36,93,.45),
        0 15px 35px rgba(0,0,0,.3);
    font-size:2.4rem;
}

.cutting-floating-card{
    position:absolute;
    z-index:7;
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:12px;
    color:#fff;
    background:rgba(255,255,255,.07);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    backdrop-filter:blur(8px);
    font-size:.82rem;
    font-weight:800;
}

.cutting-floating-card i{
    color:var(--adgro-pink);
}

.card-laser{
    top:18%;
    left:8%;
    animation:floatCard 4s ease-in-out infinite;
}

.card-cnc{
    top:20%;
    right:8%;
    animation:floatCard 4.7s ease-in-out infinite .4s;
}

.card-acrylic{
    bottom:18%;
    left:9%;
    animation:floatCard 4.4s ease-in-out infinite .7s;
}

.card-3d{
    bottom:17%;
    right:9%;
    animation:floatCard 4.9s ease-in-out infinite 1s;
}

@keyframes cuttingRotate{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

@keyframes floatCard{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-9px)}
}

/* ==========================================================
   LOCAL SEO
   ========================================================== */

.local-seo-section{
    padding:85px 0;
    background:var(--adgro-bg);
}

.local-seo-box{
    position:relative;
    overflow:hidden;
    padding:55px;
    text-align:center;
    border:1px solid var(--adgro-border);
    border-radius:25px;
    background:#fff;
    box-shadow:var(--adgro-shadow);
}

.local-seo-box::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    left:-130px;
    top:-130px;
    border-radius:50%;
    background:rgba(214,108,169,.08);
}

.local-seo-box::after{
    content:"";
    position:absolute;
    width:210px;
    height:210px;
    right:-115px;
    bottom:-115px;
    border-radius:50%;
    border:30px solid rgba(118,36,93,.04);
}

.local-seo-box > span{
    position:relative;
    z-index:2;
    display:inline-block;
    margin-bottom:12px;
    color:var(--adgro-purple);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:2px;
}

.local-seo-box h2{
    position:relative;
    z-index:2;
    margin:0 0 16px;
    color:var(--adgro-black);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:900;
    line-height:1.12;
}

.local-seo-box h2 strong{
    color:var(--adgro-purple);
}

.local-seo-box > p{
    position:relative;
    z-index:2;
    max-width:720px;
    margin:0 auto 30px;
    color:var(--adgro-muted);
    line-height:1.7;
}

.location-info{
    position:relative;
    z-index:3;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.location-info > div{
    display:flex;
    align-items:center;
    gap:9px;
    padding:11px 16px;
    border:1px solid var(--adgro-border);
    border-radius:50px;
    color:var(--adgro-muted);
    background:#fff;
    font-size:.9rem;
}

.location-info i{
    color:var(--adgro-purple);
}

.location-info a{
    color:var(--adgro-purple);
    font-weight:800;
    text-decoration:none;
}

.location-info a:hover{
    color:var(--adgro-purple-dark);
}

/* ==========================================================
   CTA
   ========================================================== */

.category-cta{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    color:#fff;
    background:
        radial-gradient(circle at 12% 20%,rgba(214,108,169,.25),transparent 30%),
        radial-gradient(circle at 88% 80%,rgba(169,68,135,.22),transparent 32%),
        linear-gradient(135deg,var(--adgro-purple-dark),var(--adgro-black));
}

.category-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-230px;
    top:-250px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:50%;
    box-shadow:0 0 0 50px rgba(255,255,255,.025);
}

.category-cta .container{
    position:relative;
    z-index:2;
}

.category-cta > .container > span{
    display:inline-block;
    margin-bottom:12px;
    color:var(--adgro-pink);
    font-size:.76rem;
    font-weight:850;
    letter-spacing:2px;
}

.category-cta h2{
    margin:0 0 18px;
    color:#fff;
    font-size:clamp(2.3rem,5vw,3.8rem);
    font-weight:900;
    line-height:1.08;
}

.category-cta h2 strong{
    color:var(--adgro-pink);
}

.category-cta p{
    max-width:650px;
    margin:0 auto 30px;
    color:rgba(255,255,255,.65);
    line-height:1.7;
}

.cta-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.cta-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:145px;
    min-height:50px;
    padding:13px 24px;
    border-radius:9px;
    color:#fff;
    font-weight:800;
    text-decoration:none;
    transition:var(--adgro-transition);
}

.cta-buttons a:first-child{
    background:var(--adgro-purple);
    border:2px solid var(--adgro-purple);
}

.cta-buttons a:first-child:hover{
    background:var(--adgro-purple-light);
    border-color:var(--adgro-purple-light);
    transform:translateY(-3px);
}

.cta-buttons a:last-child{
    background:#22c55e;
    border:2px solid #22c55e;
}

.cta-buttons a:last-child:hover{
    background:#16a34a;
    border-color:#16a34a;
    transform:translateY(-3px);
}

/* ==========================================================
   RESPONSIVE — LAPTOP
   ========================================================== */

@media(max-width:1199.98px){

    .cutting-category-hero{
        padding-bottom:75px;
    }

    .cutting-category-hero h1{
        font-size:clamp(2.6rem,5vw,4.3rem);
    }

    .cutting-hero-card{
        padding:36px 30px;
    }

    .printing-service-grid{
        gap:18px;
    }

}

/* ==========================================================
   RESPONSIVE — TABLET
   ========================================================== */

@media(max-width:991.98px){

    .cutting-category-hero{
        padding-bottom:70px;
    }

    .service-breadcrumb{
        padding-bottom:35px;
    }

    .cutting-category-hero h1{
        font-size:clamp(2.5rem,7vw,4rem);
    }

    .cutting-hero-card{
        min-height:350px;
        margin-top:10px;
    }

    .printing-service-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .cutting-applications-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .cutting-process-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .cutting-why-section{
        padding:80px 0;
    }

    .cutting-visual-card{
        min-height:420px;
    }

    .local-seo-box{
        padding:45px 35px;
    }

    .category-cta{
        padding:80px 0;
    }

}

/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */

@media(max-width:767.98px){

    .cutting-category-hero{
        padding-bottom:60px;
    }

    .service-breadcrumb{
        padding:18px 0 30px;
        font-size:.8rem;
        gap:7px;
    }

    .service-kicker{
        font-size:.65rem;
        letter-spacing:1.4px;
    }

    .cutting-category-hero h1{
        font-size:clamp(2.25rem,10vw,3.3rem);
        letter-spacing:-.8px;
    }

    .cutting-category-hero .col-lg-7 > p{
        font-size:.97rem;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons a{
        width:100%;
    }

    .cutting-hero-card{
        min-height:auto;
        padding:32px 25px;
        border-radius:20px;
    }

    .cutting-hero-icon{
        width:58px;
        height:58px;
        margin-bottom:20px;
    }

    .cutting-hero-card h2{
        font-size:2rem;
    }

    .hero-card-tags{
        gap:7px;
    }

    .hero-card-tags span{
        padding:8px 11px;
        font-size:.75rem;
    }

    .category-intro,
    .cutting-applications-section,
    .cutting-process-section,
    .cutting-why-section,
    .local-seo-section{
        padding:60px 0;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:2.1rem;
    }

    .printing-service-grid,
    .cutting-applications-grid,
    .cutting-process-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .printing-service-card{
        min-height:auto;
        padding:29px 24px;
    }

    .printing-service-card p{
        min-height:auto;
    }

    .cutting-application-card{
        min-height:auto;
    }

    .cutting-process-card{
        min-height:auto;
    }

    .cutting-why-section h2{
        font-size:2.2rem;
    }

    .cutting-visual-card{
        min-height:350px;
        margin-top:10px;
    }

    .ring-one{
        width:170px;
        height:170px;
    }

    .ring-two{
        width:250px;
        height:250px;
    }

    .ring-three{
        width:320px;
        height:320px;
    }

    .cutting-center-icon{
        width:78px;
        height:78px;
        border-radius:20px;
        font-size:1.9rem;
    }

    .cutting-floating-card{
        padding:8px 11px;
        font-size:.72rem;
    }

    .card-laser{
        top:13%;
        left:5%;
    }

    .card-cnc{
        top:13%;
        right:5%;
    }

    .card-acrylic{
        bottom:13%;
        left:5%;
    }

    .card-3d{
        bottom:13%;
        right:5%;
    }

    .local-seo-box{
        padding:38px 22px;
        border-radius:20px;
    }

    .local-seo-box h2{
        font-size:2rem;
    }

    .location-info{
        flex-direction:column;
    }

    .location-info > div{
        justify-content:center;
        border-radius:12px;
        text-align:center;
    }

    .category-cta{
        padding:65px 0;
    }

    .category-cta h2{
        font-size:2.3rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .cta-buttons a{
        width:100%;
    }
}

/* ==========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================== */

@media(max-width:575.98px){

    .service-breadcrumb{
        font-size:.74rem;
    }

    .cutting-category-hero h1{
        font-size:2.25rem;
    }

    .cutting-hero-card{
        padding:28px 21px;
    }

    .cutting-hero-card h2{
        font-size:1.8rem;
    }

    .hero-card-tags span{
        padding:8px 10px;
        font-size:.72rem;
    }

    .printing-service-card h3,
    .cutting-application-card h3{
        font-size:1.18rem;
    }

    .service-number{
        font-size:2.2rem;
    }

    .cutting-feature-item{
        gap:11px;
    }

    .cutting-feature-item > span{
        flex-basis:38px;
        width:38px;
        height:38px;
    }

    .cutting-visual-card{
        min-height:300px;
    }

    .ring-one{
        width:140px;
        height:140px;
    }

    .ring-two{
        width:205px;
        height:205px;
    }

    .ring-three{
        width:270px;
        height:270px;
    }

    .cutting-center-icon{
        width:65px;
        height:65px;
        font-size:1.55rem;
    }

    .cutting-floating-card{
        padding:7px 9px;
        font-size:.65rem;
    }

    .local-seo-box{
        padding:32px 17px;
    }

    .local-seo-box h2{
        font-size:1.85rem;
    }

}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

a:focus-visible{
    outline:3px solid rgba(214,108,169,.55);
    outline-offset:3px;
}

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
        scroll-behavior:auto !important;
    }

}
