/* ============================================
   S K Document Centre - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0f2044;
    --primary-dark: #081529;
    --primary-light: #1a3460;
    --gold: #c9a84c;
    --gold-dark: #a8893a;
    --gold-light: #e2c47a;
    --white: #ffffff;
    --light-bg: #f8f9fc;
    --light-gray: #f0f2f7;
    --text-dark: #1a1a2e;
    --text-muted: #6c7a8d;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(15, 32, 68, 0.1);
    --shadow-hover: 0 8px 30px rgba(15, 32, 68, 0.18);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-left a,
.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 20px;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: var(--gold);
}

.top-bar-left a i,
.top-bar-right a i {
    color: var(--gold);
    margin-right: 5px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-navbar {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(15, 32, 68, 0.1);
    transition: var(--transition);
    z-index: 1000;
}

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(15, 32, 68, 0.15);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-sk {
    background: var(--primary);
    color: var(--gold);
    font-size: 22px;
    font-weight: 800;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 10px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Links */
.main-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 80%;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--gold) !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 10px 0;
    min-width: 220px;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: 13.5px;
    padding: 8px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item i {
    width: 20px;
    color: var(--gold);
    margin-right: 8px;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 26px;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230f2044' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: var(--gold);
    color: var(--primary) !important;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 6px;
    font-size: 14px;
    border: 2px solid var(--gold);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold) !important;
    border-color: var(--gold);
}

.btn-primary-dark {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-dark:hover {
    background: transparent;
    color: var(--primary) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    border: 2px solid var(--gold);
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary) !important;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
    padding: 80px 0;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-size: 15.5px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 14px auto 20px;
}

.section-divider.left {
    margin-left: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-image-wrap {
    position: relative;
    padding: 20px;
}

.hero-main-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    object-fit: cover;
}

.hero-rating-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.hero-rating-badge .stars {
    color: #f5b301;
    font-size: 12px;
}

.hero-rating-badge .rating-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.hero-rating-badge .rating-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cert-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--gold);
    color: var(--primary);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.hero-cert-badge span {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--gold);
    padding: 28px 0;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: rgba(15, 32, 68, 0.2);
}

.stat-number {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.stat-number-suffix {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.75;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ABOUT / WELCOME SECTION
   ============================================ */
.about-section {
    background: var(--white);
}

.about-img-wrap {
    position: relative;
    padding: 20px 30px 20px 0;
}

.about-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
    object-fit: cover;
}

.about-exp-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 18px 22px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.about-exp-badge .exp-num {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-exp-badge .exp-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    margin-top: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.about-feature-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-item h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.about-feature-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 168, 76, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--primary);
}

.service-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card .read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-card:hover .read-more {
    gap: 8px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process-section .section-tag {
    color: var(--gold-light);
}

.process-section .section-title {
    color: var(--white);
}

.process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -15%;
    width: 30%;
    height: 2px;
    background: rgba(201, 168, 76, 0.4);
    border-top: 2px dashed rgba(201, 168, 76, 0.4);
}

.process-step:last-child::after {
    display: none;
}

.process-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover .process-num {
    background: var(--gold);
}

.process-num span {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading);
}

.process-step:hover .process-num span {
    color: var(--primary);
}

.process-step h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    background: var(--white);
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img-wrap {
    overflow: hidden;
    height: 200px;
    position: relative;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.blog-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-card h5 a {
    color: inherit;
}

.blog-card h5 a:hover {
    color: var(--gold);
}

.blog-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover {
    gap: 9px;
    color: var(--gold-dark);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: #f5b301;
    font-size: 14px;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--gold);
}

.testimonial-author h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-info-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    height: 100%;
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-info-box>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.contact-form-box {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.contact-form-box h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 6px;
}

.contact-form-box>p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    outline: none;
}

.form-control::placeholder {
    color: #b0bac5;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(15, 32, 68, 0.75);
    margin-bottom: 30px;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 46px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.breadcrumb-custom a {
    color: var(--gold);
    font-weight: 500;
}

.breadcrumb-custom a:hover {
    color: var(--gold-light);
}

.breadcrumb-custom .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .current {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
}

.footer-top {
    padding: 70px 0 30px;
}

.footer-brand .footer-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   BACK TO TOP & WHATSAPP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 166px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(15, 32, 68, 0.3);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.call-float {
    position: fixed;
    bottom: 98px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(15, 32, 68, 0.25);
    z-index: 900;
    transition: var(--transition);
}

.call-float:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.08);
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 900;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover {
    background: #1ebe5c;
    color: var(--white);
    transform: scale(1.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero-image-wrap {
        margin-top: 40px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-hover);
        margin-top: 10px;
    }

    .main-navbar .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--light-gray);
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(15, 32, 68, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .process-step::after {
        display: none;
    }

    .contact-form-box {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-rating-badge,
    .hero-cert-badge {
        display: none;
    }

    .about-exp-badge {
        display: none;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 8px;
    }

    .contact-form-box {
        padding: 28px 22px;
    }

    .contact-info-box {
        padding: 30px 22px;
    }

    .footer-top {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .stats-bar .row>div {
        width: 50%;
    }

    .stat-item {
        border-bottom: 1px solid rgba(15, 32, 68, 0.1);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn-gold,
    .hero-actions .btn-outline-gold {
        width: 100%;
        text-align: center;
    }
}