/* =========================================================
   Prime Guard Solutions – Premium Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #0B1F3B;
    --secondary-color: #2E3A46;
    --accent-color: #C9A227;
    --accent-light: #E8D66F;
    --accent-dark: #9F7D1B;
    --background-light: #F5F7FA;
    --background-white: #FFFFFF;
    --text-color: #0F1621;
    --text-light: #5C6675;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 45px rgba(11, 31, 59, 0.18);
    --radius: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 18% 10%, rgba(201, 162, 39, 0.05), transparent 28%), radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.08), transparent 32%), var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.top-ribbon {
    background: linear-gradient(90deg, rgba(11, 31, 59, 0.96), rgba(46, 58, 70, 0.96));
    color: #E5E7EB;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-ribbon__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    gap: 1rem;
}

.top-ribbon__left,
.top-ribbon__right {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.top-ribbon a {
    color: #F3F4F6;
    text-decoration: none;
    font-weight: 600;
}

.top-ribbon .pill {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    color: #F8FAFC;
}

.top-ribbon .divider {
    opacity: 0.55;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

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

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 68px;
    height: 4px;
    margin: 1.1rem auto 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.25);
}

 .section-subtitle {
     text-align: center;
     color: var(--text-light);
     margin: -1.6rem auto 2.4rem auto;
     font-weight: 600;
     max-width: 820px;
     line-height: 1.7;
 }
    top: 18px;
    right: 12%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 70%);
    filter: blur(2px);
}

.why-choose-us {
    background: var(--background-light);
}

.industries-preview {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.04), transparent 26%), var(--background-white);
}

.services-overview .container,
.why-choose-us .container,
.industries-preview .container {
    position: relative;
    z-index: 1;
}

/* ===== HEADER & NAV ===== */
header,
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(11, 31, 59, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.logo span {
    color: #E2E8F0;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color var(--transition), transform var(--transition);
    position: relative;
    padding: 0.35rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--accent-light);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--accent-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #E5E7EB;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(201, 162, 39, 0.15), transparent 30%),
                radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 32%),
                linear-gradient(135deg, rgba(11, 31, 59, 0.95) 0%, rgba(46, 58, 70, 0.9) 100%);
    color: var(--background-white);
    padding: 6.5rem 0 5rem;
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(11, 31, 59, 0.82) 0%, rgba(11, 31, 59, 0.5) 40%, rgba(46, 58, 70, 0.7) 100%),
                      url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    filter: saturate(0.95);
    transform: scale(1.04);
    animation: slowPan 18s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 55%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 720px;
    animation: fadeIn 1s ease 0.1s forwards;
    opacity: 0;
}

.hero-content::before {
    content: 'SIA-licensed professionals across the UK';
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #F8FAFC;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    margin-bottom: 1.2rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.7;
    max-width: 640px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

 .cta-support {
     margin-top: 0.8rem;
     color: #E6E9EE;
     font-weight: 600;
     letter-spacing: 0.2px;
 }

 .cta-support a {
     color: var(--accent-light);
     font-weight: 800;
 }

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
    justify-content: center;
}

.trust-chips .chip {
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #F8FAFC;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-chips .chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.sector-marquee {
    background: var(--background-white);
    border-bottom: 1px solid rgba(11, 31, 59, 0.06);
    padding: 0.9rem 0;
    overflow: hidden;
}

.marquee {
    position: relative;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marquee 16s linear infinite;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.4px;
}

.marquee span {
    position: relative;
    padding-left: 1.2rem;
}

.marquee span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.05rem 2.6rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    color: inherit;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 280px;
    height: 280px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(201, 162, 39, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--background-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    color: var(--background-white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.btn-primary-light {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(201, 162, 39, 0.45);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.7rem;
    margin-bottom: 0.6rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.92;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.4rem;
}

.service-card {
    background: linear-gradient(135deg, var(--background-white) 0%, #F9FAFB 100%);
    padding: 2.6rem 2.2rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 22px rgba(11, 31, 59, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.85s ease forwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 18px 48px rgba(11, 31, 59, 0.18);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EC 100%);
}

.service-card:hover::before {
    top: 5%;
    right: 5%;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem auto;
    border-radius: 18px;
    font-size: 2.4rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(11, 31, 59, 0.08));
    color: var(--accent-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 16px rgba(11, 31, 59, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 14px 24px rgba(11, 31, 59, 0.2);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.45rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.6rem;
    font-size: 0.97rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-color);
}

.service-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* ===== WHY CHOOSE US ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.4rem;
}

.reason-card {
    background: linear-gradient(135deg, var(--background-white) 0%, #F9FAFB 100%);
    padding: 2.6rem 2.2rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(11, 31, 59, 0.1);
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeUp 0.85s ease forwards;
}

.reason-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
}

.reason-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.reason-card:hover {
    transform: translateX(8px) translateY(-8px);
    box-shadow: 0 16px 40px rgba(11, 31, 59, 0.16);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EC 100%);
}

.reason-card:hover::after {
    width: 200px;
    height: 200px;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.reason-card:hover h3 {
    color: var(--accent-color);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.96rem;
}

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-item {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    padding: 2.4rem 2rem;
    border-radius: var(--radius);
    border-top: 4px solid transparent;
    background-clip: padding-box;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(11, 31, 59, 0.1);
    opacity: 0;
    animation: fadeUp 0.85s ease forwards;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.industry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(11, 31, 59, 0.12);
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EC 100%);
}

.industry-item:hover::after {
    bottom: -10%;
}

.industry-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-size: 1.2rem;
}

.industry-item p {
    color: var(--text-light);
    font-size: 0.96rem;
}

.industries-cta {
    text-align: center;
}

/* ===== COMPLIANCE ===== */
.compliance {
    background-color: var(--background-white);
}

.compliance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.compliance-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===== METRICS ===== */
.metrics {
    background: var(--background-white);
    padding: 3.5rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.metric {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF7EC 100%);
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 12px;
    padding: 1.8rem 1.6rem;
    text-align: center;
    box-shadow: 0 10px 26px rgba(11, 31, 59, 0.08);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ===== CONTACT ===== */
.contact {
    background-color: var(--background-light);
}

.contact-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.contact-info-box > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-detail-item p {
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.contact-detail-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.contact-detail-item .small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== FORM STYLES ===== */
.contact-form {
    background: linear-gradient(135deg, var(--background-white) 0%, #F9FAFB 100%);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(11, 31, 59, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.1rem 1.2rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.96rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--background-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15), inset 0 0 0 1px rgba(201, 162, 39, 0.1);
    background-color: #FFFBF0;
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
    border: 2px solid #E5E7EB;
    border-radius: 4px;
    accent-color: var(--accent-color);
    transition: all 0.3s ease;
}

.form-group.checkbox input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
}

.form-group.checkbox a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.form-group.checkbox a:hover {
    color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
}

.error-message {
    color: #DC2626;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
    font-weight: 500;
}

.form-message {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    display: none;
    border-left: 4px solid transparent;
}

.form-message.success {
    background-color: #F0FDF4;
    color: #166534;
    display: block;
    border-left-color: #22C55E;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.form-message.error {
    background-color: #FEF2F2;
    color: #991B1B;
    display: block;
    border-left-color: #EF4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.form-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.form-note.muted {
    margin-top: 0.6rem;
    font-size: 0.82rem;
}

.form-step {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 1.4rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-white);
    padding: 5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.4rem;
    color: var(--accent-light);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-section a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 999;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.22);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 14px 36px rgba(201, 162, 39, 0.45);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background-white);
    padding: 5.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-section .btn-primary-light {
    box-shadow: 0 14px 36px rgba(201, 162, 39, 0.45);
    padding-left: 2.8rem;
    padding-right: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.2s forwards;
}

.cta-section .btn-primary-light:hover {
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slowPan {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.06) translate3d(-8px, -6px, 0);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.18s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.26s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.34s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.42s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.5s; }

.reasons-grid .reason-card:nth-child(1) { animation-delay: 0.12s; }
.reasons-grid .reason-card:nth-child(2) { animation-delay: 0.2s; }
.reasons-grid .reason-card:nth-child(3) { animation-delay: 0.28s; }
.reasons-grid .reason-card:nth-child(4) { animation-delay: 0.36s; }
.reasons-grid .reason-card:nth-child(5) { animation-delay: 0.44s; }
.reasons-grid .reason-card:nth-child(6) { animation-delay: 0.52s; }

.industries-grid .industry-item:nth-child(1) { animation-delay: 0.1s; }
.industries-grid .industry-item:nth-child(2) { animation-delay: 0.18s; }
.industries-grid .industry-item:nth-child(3) { animation-delay: 0.26s; }
.industries-grid .industry-item:nth-child(4) { animation-delay: 0.34s; }
.industries-grid .industry-item:nth-child(5) { animation-delay: 0.42s; }
.industries-grid .industry-item:nth-child(6) { animation-delay: 0.5s; }

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.content-section h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.feature-item h3 {
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 0;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '✓ ';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.8rem;
}

/* ===== SERVICE & INDUSTRY DETAILS ===== */
.service-detail,
.industry-section,
.accessory-category,
.legal-content {
    padding: 4rem 0;
}

.service-detail h2,
.industry-section h2,
.accessory-category h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.service-content h3,
.industry-content h3,
.accessory-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-text ul,
.industry-content ul,
.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-text li,
.industry-content li,
.legal-content li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* ===== ACCESSORIES ===== */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.4rem;
}

.accessory-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--accent-color);
}

.accessory-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== INFO & NOTICE BOXES ===== */
.info-box,
.notice-box,
.map-placeholder {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.info-box h3,
.notice-box h3,
.map-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-box p,
.notice-box p,
.map-placeholder p {
    color: var(--text-light);
    line-height: 1.8;
}

.map-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
}

.legal-content h2:first-of-type {
    margin-top: 1rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .navbar {
        padding: 1rem 0;
    }
    .hero {
        padding: 5.5rem 0 4.5rem;
    }
}

@media (max-width: 900px) {
    .top-ribbon__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: min(360px, 90vw);
        background: rgba(11, 31, 59, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        padding: 1.1rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        display: flex;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        color: #E5E7EB;
        padding: 0.5rem 0;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .hamburger {
        display: flex;
    }

    .contact-two-column,
    .two-column {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-ribbon__content {
        align-items: flex-start;
        gap: 0.35rem;
    }

    .top-ribbon__left,
    .top-ribbon__right {
        gap: 0.4rem;
    }

    .top-ribbon .pill {
        padding: 0.2rem 0.55rem;
        font-size: 0.82rem;
    }

    .sector-marquee {
        padding: 0.65rem 0;
    }

    .marquee-track {
        gap: 1.6rem;
        animation-duration: 22s;
        font-size: 0.95rem;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: 62vh;
    }

    .hero::before {
        animation: none;
        transform: scale(1.02);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .services-grid,
    .reasons-grid,
    .industries-grid,
    .faq-list,
    .accessories-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .trust-chips {
        gap: 0.4rem;
    }

    .trust-chips .chip {
        font-size: 0.88rem;
        padding: 0.5rem 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .marquee-track {
        animation-duration: 22s;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }
    .hero {
        padding: 3.6rem 0 2.6rem;
        min-height: auto;
    }
    .service-card,
    .reason-card {
        padding: 1.6rem;
    }

    .hero-content::before {
        font-size: 0.85rem;
    }

    .trust-chips .chip {
        width: 100%;
        text-align: center;
    }

    .top-ribbon__right {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ACCESSIBILITY ===== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
