/* ============================================================
   SMYRNA TEKNOLOJİ - Ana Stil Dosyası v2.0
   ============================================================ */

/* ------ CSS Variables ------ */
:root {
    --sm-primary: #1351D8;
    --sm-primary-dark: #0F3FAA;
    --sm-primary-light: #4F8DFF;
    --sm-primary-bg: #EEF3FF;
    --sm-dark: #0F172A;
    --sm-dark2: #1E293B;
    --sm-gray: #64748B;
    --sm-gray-light: #94A3B8;
    --sm-light: #F8FAFC;
    --sm-body-light: #F3F6FD;
    --sm-white: #FFFFFF;
    --sm-border: #E2E8F0;
    --sm-success: #10B981;
    --sm-gradient: linear-gradient(135deg, #1351D8 0%, #4F8DFF 100%);
    --sm-gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --sm-shadow: 0 4px 24px rgba(19, 81, 216, 0.08);
    --sm-shadow-lg: 0 16px 48px rgba(19, 81, 216, 0.12);
    --sm-radius: 16px;
    --sm-radius-sm: 10px;
    --sm-radius-full: 50px;
    --sm-font-heading: 'Inter', sans-serif;
    --sm-font-body: 'Inter', sans-serif;
    --sm-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------ Reset & Base ------ */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--sm-font-body);
    color: var(--sm-dark2);
    background: var(--sm-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sm-font-heading);
    font-weight: 800;
    color: var(--sm-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

a {
    color: var(--sm-primary);
    text-decoration: none;
    transition: var(--sm-transition);
}
a:hover { color: var(--sm-primary-dark); }

img { max-width: 100%; height: auto; }

p { color: var(--sm-gray); }

::selection {
    background: var(--sm-primary);
    color: var(--sm-white);
}

/* ------ Preloader ------ */
#smyrna-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--sm-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity 0.5s, visibility 0.5s;
}
#smyrna-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.preloader-ring {
    position: absolute;
    inset: 0;
    width: 100px;
    height: 100px;
    border: 3px solid var(--sm-border);
    border-top-color: var(--sm-primary);
    border-right-color: var(--sm-primary-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}
.preloader-text {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-gray-light);
    letter-spacing: 1px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes preloaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ------ Navbar ------ */
.smyrna-navbar {
    padding: 16px 0;
    background: rgba(255 ,255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--sm-transition);
    z-index: 9999;
}
.smyrna-navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--sm-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar-logo {
    height: 42px;
    transition: var(--sm-transition);
}
.smyrna-navbar.scrolled .navbar-logo {
    height: 36px;
}
.smyrna-navbar .nav-link {
    font-family: var(--sm-font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--sm-dark) !important;
    padding: 8px 14px !important;
    border-radius: var(--sm-radius-full);
    transition: var(--sm-transition);
    white-space: nowrap;
}
.smyrna-navbar .nav-link:hover,
.smyrna-navbar .nav-link.active {
    color: var(--sm-primary) !important;
    background: var(--sm-primary-bg);
}
.navbar-toggler {
    border: none;
    padding: 8px;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* ------ Buttons ------ */
.smyrna-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: var(--sm-gradient);
    color: var(--sm-white) !important;
    border: none;
    border-radius: var(--sm-radius-full);
    font-family: var(--sm-font-heading);
    font-weight: 600;
    font-size: 13px;
    transition: var(--sm-transition);
    cursor: pointer;
    text-decoration: none;
}
.smyrna-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 81, 216, 0.3);
    color: var(--sm-white) !important;
}

.smyrna-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: transparent;
    color: var(--sm-primary) !important;
    border: 2px solid var(--sm-primary);
    border-radius: var(--sm-radius-full);
    font-family: var(--sm-font-heading);
    font-weight: 600;
    font-size: 13px;
    transition: var(--sm-transition);
    cursor: pointer;
    text-decoration: none;
}
.smyrna-btn-outline:hover {
    background: var(--sm-primary);
    color: var(--sm-white) !important;
    transform: translateY(-2px);
}

.smyrna-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--sm-white);
    color: var(--sm-primary) !important;
    border: none;
    border-radius: var(--sm-radius-full);
    font-family: var(--sm-font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: var(--sm-transition);
    cursor: pointer;
    text-decoration: none;
}
.smyrna-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ------ Section Utilities ------ */
.smyrna-section {
    padding: 100px 0;
}
.smyrna-section-dark {
    background: var(--sm-dark);
    color: var(--sm-white);
}
.smyrna-section-dark h2,
.smyrna-section-dark h3,
.smyrna-section-dark h4 {
    color: var(--sm-white);
}
.smyrna-section-dark p {
    color: var(--sm-gray-light);
}
.smyrna-section-light {
    background: var(--sm-light);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--sm-primary-bg);
    color: var(--sm-primary);
    border-radius: var(--sm-radius-full);
    font-family: var(--sm-font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.smyrna-section-dark .section-badge {
    background: rgba(79, 141, 255, 0.15);
    color: var(--sm-primary-light);
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--sm-gray);
    max-width: 640px;
}
.section-desc.mx-auto { margin-left: auto; margin-right: auto; }

/* ------ Hero Section ------ */
.smyrna-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
    background: var(--sm-light);
}
.smyrna-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(19,81,216,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.smyrna-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,141,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-gray);
    margin-bottom: 24px;
    box-shadow: var(--sm-shadow);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--sm-success);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .gradient-text {
    background: var(--sm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 19px;
    color: var(--sm-gray);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sm-primary);
    margin-bottom: 4px;
}
.hero-stat-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-gray);
    margin: 0;
}

/* Hero visual side */
.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.hero-card {
    padding: 28px;
    background: var(--sm-white);
    border-radius: var(--sm-radius);
    border: 1px solid var(--sm-border);
    transition: var(--sm-transition);
}
.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sm-shadow-lg);
    border-color: var(--sm-primary);
}
.hero-card i {
    font-size: 36px;
    color: var(--sm-primary);
    margin-bottom: 12px;
    display: block;
}
.hero-card h5 {
    font-size: 16px;
    margin-bottom: 6px;
}
.hero-card p {
    font-size: 14px;
    margin: 0;
}
.hero-card:nth-child(2) {
    margin-top: 30px;
}
.hero-card:nth-child(3) {
    margin-top: -30px;
}

/* ------ Services Section ------ */
.service-card {
    padding: 36px 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    transition: var(--sm-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sm-gradient);
    transform: scaleX(0);
    transition: var(--sm-transition);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sm-shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: var(--sm-transition);
}
.service-icon i {
    font-size: 30px;
    color: var(--sm-primary);
}
.service-card:hover .service-icon {
    background: var(--sm-gradient);
}
.service-card:hover .service-icon i {
    color: var(--sm-white);
}
.service-card h4 {
    margin-bottom: 12px;
}
.service-card p {
    font-size: 15px;
    margin-bottom: 16px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--sm-primary);
}
.service-link:hover {
    gap: 10px;
}

/* ------ About / Stats Section ------ */
.about-image-wrap {
    position: relative;
}
.about-image-main {
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow-lg);
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 28px;
    background: var(--sm-gradient);
    color: var(--sm-white);
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow-lg);
    text-align: center;
}
.about-badge h3 {
    font-size: 2.5rem;
    color: var(--sm-white);
    margin-bottom: 2px;
}
.about-badge span {
    font-size: 14px;
    opacity: 0.9;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 12px;
}
.about-feature-icon i {
    font-size: 22px;
    color: var(--sm-primary);
}
.about-feature-item h5 {
    margin-bottom: 4px;
    font-size: 16px;
}
.about-feature-item p {
    margin: 0;
    font-size: 14px;
}

/* ------ Stats Bar ------ */
.stats-bar {
    background: var(--sm-gradient);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}
.stat-item {
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sm-white);
    margin-bottom: 4px;
}
.stat-item p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0;
    font-weight: 500;
}

/* ------ Partners Section ------ */
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    transition: var(--sm-transition);
    min-height: 100px;
}
.partner-logo-item:hover {
    border-color: var(--sm-primary);
    box-shadow: var(--sm-shadow);
    transform: translateY(-3px);
}
.partner-logo-item img {
    max-height: 50px;
    max-width: 100px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--sm-transition);
}
.partner-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.partner-fallback {
    font-family: var(--sm-font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--sm-gray);
    text-align: center;
}

/* Partner Cards (detay sayfası) */
.partner-filter-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 20px;
    background: var(--sm-light);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-full);
    font-family: var(--sm-font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--sm-gray);
    cursor: pointer;
    transition: var(--sm-transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--sm-primary);
    color: var(--sm-white);
    border-color: var(--sm-primary);
}

.partner-card {
    padding: 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    text-align: center;
    transition: var(--sm-transition);
    height: 100%;
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sm-shadow-lg);
    border-color: var(--sm-primary);
}
.partner-card-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.partner-card-logo img {
    max-height: 60px;
    max-width: 120px;
}
.partner-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}
.partner-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--sm-primary-bg);
    color: var(--sm-primary);
    border-radius: var(--sm-radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* ------ Testimonials ------ */
.testimonial-card {
    padding: 36px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    height: 100%;
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 18px;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--sm-dark2);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author-info h6 {
    font-size: 15px;
    margin-bottom: 2px;
}
.testimonial-author-info span {
    font-size: 13px;
    color: var(--sm-gray);
}

/* ------ CTA Section ------ */
.smyrna-cta {
    background: var(--sm-gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.smyrna-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(19, 81, 216, 0.15);
    border-radius: 50%;
    filter: blur(80px);
}
.smyrna-cta h2 {
    color: var(--sm-white);
}
.smyrna-cta p {
    color: var(--sm-gray-light);
    font-size: 18px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ------ Contact Section ------ */
.contact-info-card {
    padding: 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--sm-transition);
    height: 100%;
}
.contact-info-card:hover {
    border-color: var(--sm-primary);
    box-shadow: var(--sm-shadow);
}
.contact-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 14px;
}
.contact-info-icon i {
    font-size: 26px;
    color: var(--sm-primary);
}
.contact-info-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}
.contact-info-card a,
.contact-info-card p {
    font-size: 15px;
    margin: 0;
    display: block;
}

.contact-form {
    padding: 40px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow);
}
.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    font-size: 15px;
    transition: var(--sm-transition);
}
.contact-form .form-control:focus {
    border-color: var(--sm-primary);
    box-shadow: 0 0 0 3px rgba(19, 81, 216, 0.1);
}
.contact-form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--sm-dark);
}

/* ------ Team Section ------ */
.team-card {
    text-align: center;
    padding: 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    transition: var(--sm-transition);
    height: 100%;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sm-shadow-lg);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--sm-primary-bg);
}
.team-card h5 {
    margin-bottom: 4px;
}
.team-card .team-role {
    color: var(--sm-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sm-primary-bg);
    color: var(--sm-primary);
    margin: 0 3px;
    transition: var(--sm-transition);
}
.team-social a:hover {
    background: var(--sm-primary);
    color: var(--sm-white);
}

/* ------ Blog Cards ------ */
.blog-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    overflow: hidden;
    transition: var(--sm-transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sm-shadow-lg);
}
.blog-card-img {
    height: 220px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--sm-transition);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 24px;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--sm-gray);
}
.blog-card-meta i {
    margin-right: 4px;
    color: var(--sm-primary);
}
.blog-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.blog-card h4 a {
    color: var(--sm-dark);
}
.blog-card h4 a:hover {
    color: var(--sm-primary);
}

/* ------ Page Hero ------ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--sm-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(19,81,216,0.06) 0%, transparent 70%);
}
.page-hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}
.page-hero .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}
.page-hero .breadcrumb-item a {
    color: var(--sm-primary);
}
.page-hero .breadcrumb-item.active {
    color: var(--sm-gray);
}

/* ------ 404 Page ------ */
.error-404-area {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}
.error-404-area h1 {
    font-size: 8rem;
    font-weight: 900;
    background: var(--sm-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ------ Sidebar Widget ------ */
.smyrna-widget {
    padding: 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    margin-bottom: 24px;
}
.widget-title {
    font-size: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sm-primary-bg);
    margin-bottom: 16px;
}

/* ------ Comment ------ */
.smyrna-comment-item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--sm-border);
}
.smyrna-comment-item .comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.comment-meta h5 {
    margin: 0;
    font-size: 16px;
}
.comment-date {
    font-size: 13px;
    color: var(--sm-gray);
}

/* ------ Pagination ------ */
.smyrna-pagination {
    margin-top: 40px;
}
.smyrna-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    color: var(--sm-dark);
    font-weight: 600;
    margin: 0 3px;
    transition: var(--sm-transition);
    list-style: none;
}
.smyrna-pagination .page-numbers.current,
.smyrna-pagination .page-numbers:hover {
    background: var(--sm-primary);
    color: var(--sm-white);
    border-color: var(--sm-primary);
}

/* ------ WhatsApp Button ------ */
.smyrna-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: #25D366;
    color: var(--sm-white) !important;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--sm-transition);
    text-decoration: none;
}
.smyrna-whatsapp i {
    font-size: 28px;
}
.smyrna-whatsapp .wa-label {
    position: absolute;
    right: 66px;
    white-space: nowrap;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.smyrna-whatsapp .wa-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #25D366;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.smyrna-whatsapp:hover .wa-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.smyrna-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    color: var(--sm-white) !important;
}

/* ------ Scroll Top ------ */
.smyrna-scroll-top {
    position: fixed;
    bottom: 36px;
    right: 28px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary);
    color: var(--sm-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--sm-transition);
    box-shadow: 0 4px 12px rgba(19, 81, 216, 0.3);
}
.smyrna-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.smyrna-scroll-top:hover {
    background: var(--sm-primary-dark);
    transform: translateY(-2px);
}

/* ------ Mobile CTA ------ */
.smyrna-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9988;
    display: flex;
    background: var(--sm-dark);
}
.mobile-cta-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    color: var(--sm-white) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--sm-transition);
}
.mobile-cta-item:hover {
    background: var(--sm-primary);
}
.mobile-cta-item i {
    font-size: 18px;
}

/* ------ Footer ------ */
.smyrna-footer {
    background: var(--sm-dark);
    color: var(--sm-gray-light);
}
.footer-top {
    padding: 80px 0 40px;
}
.footer-logo {
    height: 42px;
    margin-bottom: 20px;
}
.footer-desc {
    font-size: 15px;
    color: var(--sm-gray-light);
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--sm-gray-light);
    transition: var(--sm-transition);
}
.footer-social a:hover {
    background: var(--sm-primary);
    color: var(--sm-white);
}
.footer-title {
    color: var(--sm-white);
    font-size: 18px;
    margin-bottom: 24px;
    font-family: var(--sm-font-heading);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--sm-gray-light);
    font-size: 15px;
    transition: var(--sm-transition);
}
.footer-links a:hover {
    color: var(--sm-white);
    padding-left: 6px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-contact li i {
    font-size: 22px;
    color: var(--sm-primary-light);
    margin-top: 3px;
}
.footer-contact a {
    color: var(--sm-gray-light);
    font-size: 15px;
    display: block;
}
.footer-contact a:hover {
    color: var(--sm-white);
}
.footer-contact span {
    font-size: 14px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.copyright {
    font-size: 14px;
    color: var(--sm-gray-light);
    margin: 0;
}
.copyright a {
    color: var(--sm-primary-light);
}
.footer-badges {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--sm-gray-light);
}
.badge-item i {
    color: var(--sm-success);
}

/* ------ Why Us Section ------ */
.why-card {
    padding: 30px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    transition: var(--sm-transition);
    height: 100%;
}
.why-card:hover {
    box-shadow: var(--sm-shadow);
    transform: translateY(-4px);
}
.why-card .number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    color: var(--sm-primary);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    font-family: var(--sm-font-heading);
    margin-bottom: 16px;
}
.why-card h5 {
    margin-bottom: 8px;
}

/* ------ Feature Boxes ------ */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: var(--sm-radius);
    transition: var(--sm-transition);
}
.feature-box:hover {
    background: var(--sm-light);
}
.feature-box-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 12px;
}
.feature-box-icon i {
    font-size: 24px;
    color: var(--sm-primary);
}
.feature-box h5 {
    font-size: 16px;
    margin-bottom: 6px;
}
.feature-box p {
    margin: 0;
    font-size: 14px;
}

/* ------ Contact Info Cards ------ */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--sm-light);
    border-radius: var(--sm-radius-sm);
    transition: var(--sm-transition);
}
.contact-info-card:hover {
    background: var(--sm-primary-bg);
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 12px;
}
.contact-info-icon i {
    font-size: 22px;
    color: var(--sm-primary);
}
.contact-info-card h5 {
    font-size: 15px;
    margin-bottom: 4px;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    margin: 0;
    color: var(--sm-gray);
}
.contact-info-card a:hover {
    color: var(--sm-primary);
}
.contact-form-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 40px;
}
.smyrna-contact-form .form-control,
.smyrna-contact-form .form-select {
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--sm-transition);
}
.smyrna-contact-form .form-control:focus,
.smyrna-contact-form .form-select:focus {
    border-color: var(--sm-primary);
    box-shadow: 0 0 0 3px rgba(19,81,216,0.08);
}
.smyrna-contact-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--sm-dark);
}
.btn-spinner { display: none; }
.btn-text + .btn-spinner { margin-left: 8px; }

/* ------ Team Cards ------ */
.team-card {
    text-align: center;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 36px 24px;
    transition: var(--sm-transition);
}
.team-card:hover {
    box-shadow: var(--sm-shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.team-card-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-avatar i {
    font-size: 40px;
    color: #fff;
}
.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.team-card-title {
    font-size: 14px;
    color: var(--sm-primary);
    margin-bottom: 16px;
}
.team-card-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.cert-badge {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--sm-primary-bg);
    color: var(--sm-primary-dark);
    border-radius: var(--sm-radius-full);
    white-space: nowrap;
}
.cert-badge i {
    font-size: 12px;
    margin-right: 2px;
}

/* ------ Partner Cards (Page) ------ */
.partner-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--sm-transition);
}
.partner-card:hover {
    box-shadow: var(--sm-shadow);
    border-color: var(--sm-primary-bg);
    transform: translateY(-4px);
}
.partner-card-logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.partner-card-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--sm-transition);
}
.partner-card:hover .partner-card-logo img {
    filter: grayscale(0);
}
.partner-card-fallback {
    font-family: var(--sm-font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--sm-dark);
    align-items: center;
    justify-content: center;
}
.partner-card-name {
    font-size: 15px;
    margin-bottom: 4px;
}
.partner-card-cat {
    font-size: 12px;
    color: var(--sm-gray-light);
}
.partner-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--sm-border);
    background: var(--sm-white);
    border-radius: var(--sm-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-gray);
    cursor: pointer;
    transition: var(--sm-transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--sm-primary);
    color: var(--sm-white);
    border-color: var(--sm-primary);
}

/* ------ Blog Cards ------ */
.blog-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    overflow: hidden;
    transition: var(--sm-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    box-shadow: var(--sm-shadow-lg);
    transform: translateY(-4px);
}
.blog-card-img {
    position: relative;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sm-primary);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: var(--sm-radius-full);
    font-weight: 600;
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--sm-gray-light);
}
.blog-card-meta i {
    margin-right: 4px;
}
.blog-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body h4 a {
    color: var(--sm-dark);
}
.blog-card-body h4 a:hover {
    color: var(--sm-primary);
}
.blog-card-body p {
    font-size: 14px;
    flex: 1;
}

/* ------ Single Post ------ */
.single-post-thumbnail {
    margin-bottom: 30px;
}
.post-content {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 36px;
}
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
}
.post-content img {
    border-radius: var(--sm-radius);
    margin: 20px 0;
}
.post-content blockquote {
    border-left: 4px solid var(--sm-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--sm-light);
    border-radius: 0 var(--sm-radius-sm) var(--sm-radius-sm) 0;
    font-style: italic;
}
.post-content code {
    background: var(--sm-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}
.post-content pre {
    background: var(--sm-dark);
    color: #e2e8f0;
    padding: 20px;
    border-radius: var(--sm-radius-sm);
    overflow-x: auto;
}
.post-content ul,
.post-content ol {
    padding-left: 24px;
    margin: 20px 0;
}
.post-content li {
    margin-bottom: 8px;
}
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sm-border);
}
.post-tags i {
    font-size: 18px;
    color: var(--sm-gray);
}
.post-tags a {
    font-size: 13px;
    padding: 4px 14px;
    background: var(--sm-light);
    border-radius: var(--sm-radius-full);
    color: var(--sm-gray);
    border: 1px solid var(--sm-border);
}
.post-tags a:hover {
    background: var(--sm-primary);
    color: #fff;
    border-color: var(--sm-primary);
}
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sm-border);
}
.post-share span {
    font-weight: 600;
    font-size: 14px;
}
.post-share a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sm-light);
    color: var(--sm-gray);
    font-size: 16px;
    transition: var(--sm-transition);
}
.post-share a:hover {
    background: var(--sm-primary);
    color: #fff;
}
.post-navigation {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--sm-border);
}
.post-nav-item {
    display: block;
    padding: 16px;
    background: var(--sm-light);
    border-radius: var(--sm-radius-sm);
    transition: var(--sm-transition);
}
.post-nav-item:hover {
    background: var(--sm-primary-bg);
}
.post-nav-item small {
    display: block;
    font-size: 12px;
    color: var(--sm-gray-light);
    margin-bottom: 4px;
}
.post-nav-item span {
    font-weight: 600;
    color: var(--sm-dark);
    display: block;
    font-size: 14px;
}
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--sm-light);
    border-radius: var(--sm-radius);
    margin-bottom: 40px;
}
.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h5 {
    margin-bottom: 6px;
}
.author-info p {
    font-size: 14px;
    margin: 0;
}

/* ------ Comments ------ */
.comments-area {
    padding-top: 30px;
    border-top: 1px solid var(--sm-border);
}
.comment-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--sm-border);
}
.comment-list .comment-body {
    display: flex;
    gap: 16px;
}
.comment-list .comment-body img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.comment-list .comment-meta {
    margin-bottom: 6px;
}
.comment-list .comment-author {
    font-weight: 700;
    color: var(--sm-dark);
}
.comment-list .comment-date {
    font-size: 12px;
    color: var(--sm-gray-light);
    margin-left: 8px;
}
.smyrna-comment-form .form-control,
.smyrna-comment-form input[type="text"],
.smyrna-comment-form input[type="email"],
.smyrna-comment-form input[type="url"],
.smyrna-comment-form textarea {
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    width: 100%;
    margin-bottom: 12px;
    transition: var(--sm-transition);
}
.smyrna-comment-form .form-control:focus,
.smyrna-comment-form input:focus,
.smyrna-comment-form textarea:focus {
    border-color: var(--sm-primary);
    box-shadow: 0 0 0 3px rgba(19,81,216,0.08);
    outline: none;
}

/* ------ Service Features List ------ */
.service-card-detailed {
    height: 100%;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.service-features li {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--sm-gray);
}
.service-features li:last-child {
    border-bottom: none;
}
.service-features li i {
    color: var(--sm-success);
    margin-right: 6px;
    font-size: 16px;
}

/* ------ Sidebar Widgets ------ */
.smyrna-sidebar .widget {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 24px;
    margin-bottom: 24px;
}
.smyrna-sidebar .widget-title {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sm-primary);
    display: inline-block;
}
.smyrna-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.smyrna-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--sm-border);
}
.smyrna-sidebar .widget ul li:last-child {
    border-bottom: none;
}
.smyrna-sidebar .widget ul li a {
    color: var(--sm-gray);
    font-size: 14px;
}
.smyrna-sidebar .widget ul li a:hover {
    color: var(--sm-primary);
    padding-left: 6px;
}

/* ------ Pagination ------ */
.smyrna-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.smyrna-pagination .page-numbers {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sm-radius-sm);
    background: var(--sm-light);
    color: var(--sm-gray);
    font-weight: 600;
    font-size: 14px;
    transition: var(--sm-transition);
}
.smyrna-pagination .page-numbers:hover,
.smyrna-pagination .page-numbers.current {
    background: var(--sm-primary);
    color: #fff;
}

/* ------ Page Content (page.php) ------ */
.page-content {
    font-size: 17px;
    line-height: 1.9;
}
.page-content h2,
.page-content h3 {
    margin-top: 28px;
    margin-bottom: 14px;
}
.page-content img {
    border-radius: var(--sm-radius);
}

/* ------ Reference Cards ------ */
.ref-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    overflow: hidden;
    transition: var(--sm-transition);
    height: 100%;
}
.ref-card:hover {
    box-shadow: var(--sm-shadow-lg);
    border-color: transparent;
    transform: translateY(-6px);
}
.ref-card-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-light);
    padding: 20px;
    border-bottom: 1px solid var(--sm-border);
}
.ref-card-logo img {
    max-height: 55px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--sm-transition);
}
.ref-card:hover .ref-card-logo img {
    filter: grayscale(0);
    transform: scale(1.08);
}
.ref-card-fallback {
    font-family: var(--sm-font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--sm-dark);
    align-items: center;
    justify-content: center;
}
.ref-card-info {
    padding: 20px;
}
.ref-card-name {
    font-size: 15px;
    margin-bottom: 2px;
}
.ref-card-sector {
    font-size: 12px;
    color: var(--sm-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ref-card-service {
    font-size: 13px;
    color: var(--sm-gray);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--sm-border);
}
.ref-card-service i {
    color: var(--sm-success);
    font-size: 15px;
    margin-right: 4px;
}

/* ------ Sector Cards ------ */
.sector-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    transition: var(--sm-transition);
    height: 100%;
}
.sector-card:hover {
    box-shadow: var(--sm-shadow);
    border-color: var(--sm-primary-bg);
}
.sector-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sm-primary-bg);
    border-radius: 12px;
}
.sector-card-icon i {
    font-size: 24px;
    color: var(--sm-primary);
}
.sector-card-body {
    flex: 1;
}
.sector-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.sector-card-header h5 {
    font-size: 16px;
    margin: 0;
}
.sector-count {
    font-size: 11px;
    padding: 3px 10px;
    background: var(--sm-primary-bg);
    color: var(--sm-primary);
    border-radius: var(--sm-radius-full);
    font-weight: 600;
    white-space: nowrap;
}
.sector-card p {
    font-size: 14px;
    margin: 0;
}

/* ------ Google Reviews ------ */
.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 16px 32px;
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-full);
    box-shadow: var(--sm-shadow);
}
.google-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}
.google-stars i {
    color: #FBBC04;
    font-size: 20px;
}
.google-rating-text {
    font-size: 14px;
    color: var(--sm-gray);
}
.review-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--sm-transition);
}
.review-card:hover {
    box-shadow: var(--sm-shadow);
    border-color: var(--sm-primary-bg);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--sm-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--sm-font-heading);
}
.review-name {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.3;
}
.review-role {
    font-size: 12px;
    color: var(--sm-gray-light);
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 14px;
}
.review-stars i {
    color: #FBBC04;
    font-size: 16px;
}
.review-date {
    margin-left: 8px;
    font-size: 12px;
    color: var(--sm-gray-light);
}
.review-text {
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
    color: var(--sm-dark2);
}
.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--sm-border);
}
.review-source small {
    font-size: 12px;
    color: var(--sm-gray-light);
}

/* ------ Responsive ------ */

/* ------ Typed / Typewriter Hero ------ */
.hero-typed-line {
    display: block;
    min-height: 1.2em;
}
.typed-words {
    color: var(--sm-primary);
    position: relative;
}
.typed-cursor {
    display: inline-block;
    color: var(--sm-primary);
    font-weight: 100;
    animation: cursorBlink 0.7s step-end infinite;
    margin-left: 2px;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ------ Testimonial Cards V2 ------ */
.testimonial-card-v2 {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--sm-transition);
}
.testimonial-card-v2:hover {
    box-shadow: var(--sm-shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}
.tc-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 42px;
    color: var(--sm-primary-bg);
    line-height: 1;
}
.tc-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
}
.tc-stars i {
    color: #FBBC04;
    font-size: 18px;
}
.tc-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--sm-dark2);
    flex: 1;
    margin-bottom: 24px;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--sm-border);
}
.tc-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--sm-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: var(--sm-font-heading);
}
.tc-name {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.3;
}
.tc-role {
    font-size: 12px;
    color: var(--sm-gray-light);
}

/* ------ Trust Section ------ */
.trust-section {
    padding: 40px 0;
    background: var(--sm-dark);
    border-top: 3px solid var(--sm-primary);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}
.trust-item i {
    font-size: 36px;
    color: var(--sm-primary-light);
}
.trust-item h5 {
    color: var(--sm-white);
    font-size: 15px;
    margin-bottom: 2px;
}
.trust-item p {
    color: var(--sm-gray-light);
    font-size: 13px;
    margin: 0;
}

/* ------ FAQ Accordion ------ */
.smyrna-accordion .accordion-item {
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--sm-transition);
}
.smyrna-accordion .accordion-item:hover {
    border-color: var(--sm-primary-bg);
    box-shadow: var(--sm-shadow);
}
.smyrna-accordion .accordion-button {
    font-family: var(--sm-font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--sm-dark);
    padding: 20px 24px;
    background: var(--sm-white);
    border: none;
    box-shadow: none !important;
}
.smyrna-accordion .accordion-button:not(.collapsed) {
    color: var(--sm-primary);
    background: var(--sm-primary-bg);
}
.smyrna-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231351D8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--sm-transition);
}
.smyrna-accordion .accordion-body {
    font-size: 15px;
    color: var(--sm-gray);
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* ------ Enhanced Card Glassmorphism ------ */
.hero-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
}
.hero-card:hover {
    background: var(--sm-white);
}

/* ------ Service Card Enhanced Hover ------ */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(19,81,216,0.02) 100%);
    transition: var(--sm-transition);
}
.service-card:hover::after {
    height: 100%;
}

/* ------ Stats Bar Enhanced ------ */
.stats-bar .stat-item {
    position: relative;
    padding: 10px 0;
}
.stats-bar .stat-item::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}
.stats-bar .col-6:last-child .stat-item::after,
.stats-bar .col-lg-3:last-child .stat-item::after {
    display: none;
}

/* ------ Why Card Enhanced ------ */
.why-card {
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--sm-gradient);
    transition: height 0.4s ease;
    border-radius: 0 0 4px 0;
}
.why-card:hover::before {
    height: 100%;
}

/* ------ Feature Box Dark Enhanced ------ */
.smyrna-section-dark .feature-box:hover {
    background: rgba(255,255,255,0.08) !important;
    transform: translateX(4px);
}

/* ------ Navbar CTA Button Pulse ------ */
.navbar-cta .smyrna-btn-primary {
    position: relative;
}
.navbar-cta .smyrna-btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--sm-radius-full);
    background: var(--sm-gradient);
    z-index: -1;
    opacity: 0;
    animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%,100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.06); }
}

/* ------ Floating Shapes (Hero) ------ */
.smyrna-hero .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 0;
}
.smyrna-hero .hero-shape-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: var(--sm-primary);
    animation: floatShape 6s ease-in-out infinite;
}
.smyrna-hero .hero-shape-2 {
    bottom: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    background: var(--sm-primary-light);
    animation: floatShape 8s ease-in-out infinite reverse;
}
@keyframes floatShape {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 991px) {
    .smyrna-section { padding: 70px 0; }
    .smyrna-hero { min-height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-visual { margin-top: 40px; }
    .hero-stats { gap: 24px; }
    .navbar-collapse { background: var(--sm-white); padding: 20px; border-radius: var(--sm-radius); margin-top: 10px; box-shadow: var(--sm-shadow-lg); }
    .navbar-cta { margin-top: 16px; }
    .stats-bar .stat-item { margin-bottom: 20px; }
    .stats-bar .stat-item::after { display: none; }
    .footer-badges { justify-content: flex-start; margin-top: 12px; }
    .smyrna-whatsapp .wa-label { display: none; }
    body { padding-bottom: 56px; }
    .smyrna-scroll-top { bottom: 70px; right: 16px; }
    .smyrna-whatsapp { bottom: 130px; right: 16px; width: 48px; height: 48px; }
    .contact-form-card { padding: 24px; }
    .blog-card[style*="flex-direction: row"] { flex-direction: column !important; }
    .blog-card[style*="flex-direction: row"] .blog-card-img { width: 100% !important; }
    .sector-card { padding: 16px; }
    .google-rating-summary { padding: 12px 20px; }
    .review-card { padding: 20px; }
    .ref-card-logo { height: 80px; }
    .testimonial-card-v2 { padding: 24px; }
    .trust-item { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
    .smyrna-accordion .accordion-button { font-size: 15px; padding: 16px 18px; }
}

@media (max-width: 767px) {
    .hero-card-grid { grid-template-columns: 1fr; }
    .hero-card:nth-child(2) { margin-top: 0; }
    .hero-card:nth-child(3) { margin-top: 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .page-hero { padding: 130px 0 60px; }
    .stat-item h3 { font-size: 2rem; }
    .contact-form-card { padding: 20px; }
    .about-badge { position: static; margin-top: 20px; display: inline-block; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .post-share { flex-wrap: wrap; }
    .partner-filter-buttons { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 13px; }
    .google-rating-summary { flex-direction: column; text-align: center; }
    .review-card-header { flex-direction: column; text-align: center; }
    .review-stars { justify-content: center; }
    .ref-card-info { padding: 14px; }
    .sector-card { flex-direction: column; text-align: center; }
    .sector-card-icon { margin: 0 auto; }
    .sector-card-header { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .smyrna-btn-primary,
    .hero-buttons .smyrna-btn-outline { width: 100%; justify-content: center; }
    .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .error-404-area h1 { font-size: 5rem; }
}

/* ------ Related Posts ------ */
.related-posts {
    padding-top: 30px;
    border-top: 1px solid var(--sm-border);
    margin-bottom: 30px;
}
.related-posts h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.related-posts h4 i {
    color: var(--sm-primary);
    margin-right: 6px;
}
.related-post-card {
    background: var(--sm-white);
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius);
    overflow: hidden;
    transition: var(--sm-transition);
    height: 100%;
}
.related-post-card:hover {
    box-shadow: var(--sm-shadow);
    transform: translateY(-3px);
}
.related-post-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s;
}
.related-post-card:hover .related-post-img img {
    transform: scale(1.05);
}
.related-post-body {
    padding: 14px;
}
.related-post-date {
    font-size: 12px;
    color: var(--sm-gray-light);
    display: block;
    margin-bottom: 6px;
}
.related-post-date i {
    margin-right: 3px;
}
.related-post-body h6 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}
.related-post-body h6 a {
    color: var(--sm-dark);
}
.related-post-body h6 a:hover {
    color: var(--sm-primary);
}

/* ------ Reading Time Badge ------ */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--sm-gray);
}
.reading-time i {
    color: var(--sm-primary);
}

/* ------ Table of Contents ------ */
.toc-widget {
    background: var(--sm-primary-bg);
    border-radius: var(--sm-radius);
    padding: 20px;
    margin-bottom: 30px;
}
.toc-widget h5 {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sm-primary);
}
.toc-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-widget ul li {
    padding: 6px 0;
    font-size: 14px;
}
.toc-widget ul li a {
    color: var(--sm-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.toc-widget ul li a:hover {
    color: var(--sm-primary);
    padding-left: 4px;
}
.toc-widget ul li a::before {
    content: '•';
    color: var(--sm-primary);
    font-weight: bold;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.smyrna-topbar {
    background: var(--sm-dark);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
}
.smyrna-topbar .topbar-left span {
    font-size: 13px;
}
.smyrna-topbar .topbar-left i {
    color: var(--sm-primary-light);
    margin-right: 4px;
}
.topbar-link {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.topbar-link:hover {
    color: var(--sm-primary-light) !important;
}
.topbar-link i {
    font-size: 16px;
}
.topbar-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.15);
}

/* With top bar, navbar needs extra offset */
.smyrna-topbar + .smyrna-navbar {
    top: 37px !important;
}
body {
    padding-top: 37px; /* top bar height offset */
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.smyrna-lang-switcher { position: relative; }
.lang-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}
.lang-toggle:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}
.lang-toggle::after {
    /* Override BS dropdown arrow */
    border-top-color: rgba(255,255,255,0.6) !important;
    margin-left: 2px;
}
.lang-flag {
    font-size: 16px;
    line-height: 1;
}
.lang-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.lang-dropdown {
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 6px;
    margin-top: 6px !important;
}
.lang-option {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 12px !important;
    border-radius: 6px;
    font-size: 14px;
    transition: background .15s;
}
.lang-option:hover {
    background: var(--sm-primary-soft, rgba(19,81,216,0.06));
}
.lang-option.active {
    background: var(--sm-primary-soft, rgba(19,81,216,0.08));
    color: var(--sm-primary);
    font-weight: 600;
}
.lang-option .la-check {
    margin-left: auto;
    color: var(--sm-primary);
}
.lang-name { flex: 1; }

/* Mobile language */
.lang-toggle-mobile {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.lang-toggle-mobile::after {
    display: none;
}

/* ============================================================
   QUOTE FORM PAGE
   ============================================================ */
.quote-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0;
}
.quote-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity .3s;
}
.quote-step.active {
    opacity: 1;
}
.quote-step.completed {
    opacity: 0.7;
}
.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.quote-step.completed .step-number {
    background: #22c55e;
}
.step-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--sm-dark);
}
.quote-step-line {
    flex: 0 0 40px;
    height: 2px;
    background: #e2e6ea;
    margin: 0 12px;
}
.quote-panel {
    display: none;
    animation: fadeInPanel .3s ease;
}
.quote-panel.active {
    display: block;
}
@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sm-primary-soft, rgba(19,81,216,0.1));
    display: flex;
    align-items: center;
    gap: 10px;
}
.panel-title i {
    color: var(--sm-primary);
    font-size: 24px;
}

/* Service selection cards */
.quote-service-card {
    cursor: pointer;
    display: block;
}
.quote-service-card input[type="checkbox"] {
    display: none;
}
.service-card-inner {
    background: #fff;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all .2s;
    position: relative;
}
.service-card-inner i {
    font-size: 32px;
    color: var(--sm-primary);
    display: block;
    margin-bottom: 10px;
}
.service-card-inner span {
    font-weight: 600;
    font-size: 14px;
    color: var(--sm-dark);
}
.check-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: all .2s;
}
.quote-service-card input:checked + .service-card-inner {
    border-color: var(--sm-primary);
    background: rgba(19,81,216,0.03);
    box-shadow: 0 0 0 3px rgba(19,81,216,0.1);
}
.quote-service-card input:checked + .service-card-inner .check-indicator {
    background: var(--sm-primary);
}
.service-card-inner:hover {
    border-color: var(--sm-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Success message */
.success-icon {
    font-size: 72px;
    color: #22c55e;
    margin-bottom: 16px;
}
.quote-success-msg h3 {
    color: var(--sm-dark);
    max-width: 450px;
    margin: 0 auto;
}

/* Sidebar */
.quote-sidebar {
    position: sticky;
    top: 120px;
}
.quote-sidebar-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.quote-sidebar-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quote-sidebar-card h5 i {
    color: var(--sm-primary);
    font-size: 20px;
}
.quote-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quote-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--sm-gray);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.quote-benefits li:last-child {
    border-bottom: none;
}
.quote-benefits li i {
    color: #22c55e;
    font-size: 18px;
}
.quick-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(19,81,216,0.03);
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
}
.quick-contact-item:hover {
    background: rgba(19,81,216,0.06);
    transform: translateX(2px);
}
.quick-contact-item > i {
    font-size: 24px;
    color: var(--sm-primary);
}
.qc-label {
    font-size: 12px;
    color: var(--sm-gray);
    display: block;
}
.qc-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--sm-dark);
    display: block;
}
.trust-mini-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.trust-mini {
    background: rgba(19,81,216,0.04);
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    color: var(--sm-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}
.trust-mini i {
    color: var(--sm-primary);
    font-size: 16px;
}

/* ============================================================
   CUSTOMER PORTAL
   ============================================================ */
/* Login */
.portal-login-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}
.portal-login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--sm-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.portal-login-icon i {
    font-size: 36px;
    color: #fff;
}
.portal-login-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
}
.portal-login-form {
    text-align: left;
}
.portal-login-form .input-group-text {
    background: rgba(19,81,216,0.04);
    border-color: #e8ecf0;
    color: var(--sm-primary);
}
.portal-forgot-link {
    font-size: 13px;
    color: var(--sm-primary);
    text-decoration: none;
}
.portal-demo-notice {
    background: rgba(19,81,216,0.06);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--sm-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Portal Sidebar */
.portal-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 120px;
}
.portal-user-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 16px;
}
.portal-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sm-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 12px;
}
.portal-user-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.portal-user-info p {
    font-size: 13px;
    color: var(--sm-gray);
    margin-bottom: 0;
}
.portal-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.portal-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-gray);
    text-decoration: none;
    transition: all .15s;
}
.portal-nav-item:hover {
    background: rgba(19,81,216,0.04);
    color: var(--sm-primary);
}
.portal-nav-item.active {
    background: var(--sm-primary);
    color: #fff;
}
.portal-nav-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}
.nav-badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    line-height: 1.3;
}
.portal-nav-item.active .nav-badge {
    background: rgba(255,255,255,0.25);
}

/* Welcome bar */
.portal-welcome-bar {
    background: var(--sm-gradient);
    border-radius: 14px;
    padding: 28px 32px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.portal-welcome-bar h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.portal-welcome-bar p {
    color: rgba(255,255,255,0.75);
}
.portal-welcome-bar .smyrna-btn-primary {
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Stat cards */
.portal-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}
.psc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
}
.bg-primary-soft { background: rgba(19,81,216,0.1); color: var(--sm-primary); }
.bg-info-soft { background: rgba(14,165,233,0.1); color: #0ea5e9; }
.bg-warning-soft { background: rgba(245,158,11,0.1); color: #f59e0b; }
.bg-success-soft { background: rgba(34,197,94,0.1); color: #22c55e; }
.portal-stat-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.portal-stat-card span {
    font-size: 12px;
    color: var(--sm-gray);
}

/* Portal cards */
.portal-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}
.portal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.portal-card-header h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.portal-card-header h5 i {
    color: var(--sm-primary);
}

/* Portal table */
.portal-table {
    margin: 0;
    font-size: 14px;
}
.portal-table thead th {
    background: rgba(0,0,0,0.02);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sm-gray);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.portal-table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.portal-table code {
    font-size: 13px;
    color: var(--sm-primary);
    background: rgba(19,81,216,0.06);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Status & Priority badges */
.portal-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}
.status-open { background: rgba(245,158,11,0.1); color: #d97706; }
.status-progress { background: rgba(14,165,233,0.1); color: #0284c7; }
.status-resolved { background: rgba(34,197,94,0.1); color: #16a34a; }
.status-closed { background: rgba(148,163,184,0.1); color: #64748b; }
.priority-low { background: rgba(148,163,184,0.1); color: #64748b; }
.priority-medium { background: rgba(245,158,11,0.1); color: #d97706; }
.priority-high { background: rgba(239,68,68,0.1); color: #dc2626; }
.priority-urgent { background: rgba(239,68,68,0.15); color: #dc2626; font-weight: 700; }

/* Project cards */
.project-card {
    background: rgba(0,0,0,0.01);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    padding: 16px;
}
.project-card h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.project-dates {
    font-size: 12px;
    color: var(--sm-gray);
}
.project-card-lg {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.project-card-lg h5 {
    font-size: 16px;
    font-weight: 700;
}
.project-card-lg .project-dates div {
    font-size: 13px;
    color: var(--sm-gray);
    margin-bottom: 4px;
}
.project-card-lg .project-dates i {
    color: var(--sm-primary);
    margin-right: 4px;
}

/* Document list */
.document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.document-item:last-child {
    border-bottom: none;
}
.doc-icon {
    font-size: 32px;
    width: 40px;
    text-align: center;
}
.doc-info {
    flex: 1;
}
.doc-info h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.doc-info span {
    font-size: 12px;
    color: var(--sm-gray);
}

/* ============================================================
   RESPONSIVE: Top bar + Lang + Quote + Portal
   ============================================================ */
@media (max-width: 991px) {
    .smyrna-topbar { display: none !important; }
    .smyrna-navbar { top: 0 !important; }
    body { padding-top: 0 !important; }
    
    .quote-steps { flex-wrap: wrap; gap: 8px; }
    .quote-step-line { flex: 0 0 20px; }
    .step-label { font-size: 12px; display: none; }
    
    .portal-sidebar { margin-bottom: 24px; position: static; }
    .portal-welcome-bar { flex-direction: column; text-align: center; gap: 16px; }
}
@media (max-width: 576px) {
    .portal-login-card { padding: 32px 24px; }
    .portal-stat-card { padding: 14px; }
    .portal-stat-card h4 { font-size: 1.2rem; }
    .portal-table { font-size: 12px; }
    .portal-table thead th { padding: 8px 10px; font-size: 11px; }
    .portal-table tbody td { padding: 8px 10px; }
    
    .service-card-inner { padding: 14px 10px; }
    .service-card-inner i { font-size: 24px; }
    .service-card-inner span { font-size: 12px; }
    
    .quote-sidebar { position: static; }
}

/* ============================================================
   REMOTE SUPPORT PAGE
   ============================================================ */
.remote-step { }
.remote-card {
    background: var(--sm-white);
    border-radius: var(--sm-radius);
    padding: 40px;
    box-shadow: var(--sm-shadow);
    border: 1px solid var(--sm-border);
}
.remote-card-header {
    margin-bottom: 32px;
}
.remote-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.remote-card-header h3 i {
    color: var(--sm-primary);
    margin-right: 8px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sm-gray-lighter);
    color: var(--sm-gray);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.step-num.active {
    background: var(--sm-primary);
    color: var(--sm-white);
}
.step-num.completed {
    background: #22c55e;
    color: var(--sm-white);
}
.step-line {
    flex: 1;
    height: 3px;
    background: var(--sm-gray-lighter);
    border-radius: 2px;
}
.step-line.active {
    background: linear-gradient(90deg, #22c55e, var(--sm-primary));
}

/* KVKK Consent Box */
.kvkk-consent-box {
    background: #f8fafc;
    border: 1px solid var(--sm-border);
    border-radius: var(--sm-radius-sm);
    overflow: hidden;
}
.kvkk-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--sm-dark);
    transition: background 0.2s;
}
.kvkk-consent-header:hover {
    background: #f1f5f9;
}
.kvkk-consent-header i:first-child {
    color: var(--sm-primary);
    font-size: 20px;
}
.kvkk-consent-body {
    padding: 20px;
    border-top: 1px solid var(--sm-border);
    font-size: 13px;
    line-height: 1.8;
    color: var(--sm-gray);
    max-height: 300px;
    overflow-y: auto;
}
.kvkk-consent-body h6 {
    font-weight: 700;
    color: var(--sm-dark);
    margin-top: 16px;
    margin-bottom: 8px;
}
.kvkk-consent-body ul {
    padding-left: 18px;
    margin-bottom: 12px;
}
.kvkk-consent-body ul li {
    margin-bottom: 4px;
}
.kvkk-consent-check {
    padding: 14px 20px;
    border-top: 1px solid var(--sm-border);
    background: #fff;
}
.kvkk-consent-check .form-check-label {
    font-size: 13px;
    font-weight: 500;
}

/* Session ID Display */
.session-id-display {
    background: linear-gradient(135deg, var(--sm-primary-dark) 0%, var(--sm-primary) 100%);
    border-radius: var(--sm-radius);
    padding: 32px;
    text-align: center;
    color: var(--sm-white);
}
.session-id-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.session-id-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#copySessionId {
    color: var(--sm-white);
    border-color: rgba(255,255,255,0.4);
    font-size: 13px;
}
#copySessionId:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--sm-white);
}

/* Session Info Box */
.session-info-box {
    background: #f8fafc;
    border-radius: var(--sm-radius-sm);
    padding: 24px;
    border: 1px solid var(--sm-border);
}
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-item i {
    font-size: 24px;
    color: var(--sm-primary);
}
.info-item small {
    font-size: 11px;
    color: var(--sm-gray);
    display: block;
}
.info-item span {
    font-weight: 600;
    font-size: 14px;
}

/* Remote Status Badge */
.remote-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.remote-status-badge.waiting {
    background: rgba(245,158,11,0.12);
    color: #d97706;
}
.remote-status-badge.connected {
    background: rgba(34,197,94,0.12);
    color: #16a34a;
}

/* Instructions */
.remote-instructions {
    background: #f0f7ff;
    border-radius: var(--sm-radius-sm);
    padding: 24px;
    border: 1px solid rgba(19,81,216,0.1);
}
.remote-instructions h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--sm-primary);
}
.instruction-list {
    padding-left: 20px;
    margin: 0;
}
.instruction-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--sm-dark);
}

/* Remote Sidebar */
.remote-sidebar {
    position: sticky;
    top: 100px;
}
.remote-sidebar-card {
    background: var(--sm-white);
    border-radius: var(--sm-radius);
    box-shadow: var(--sm-shadow);
    border: 1px solid var(--sm-border);
    padding: 28px;
    margin-bottom: 24px;
}
.remote-sidebar-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.remote-sidebar-card h5 i {
    color: var(--sm-primary);
    margin-right: 6px;
}

/* How Steps in Sidebar */
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.how-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.how-step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--sm-primary), var(--sm-primary-light));
    color: var(--sm-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.how-step h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.how-step p {
    font-size: 13px;
    color: var(--sm-gray);
    margin: 0;
    line-height: 1.5;
}

/* Security Features List */
.security-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.security-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--sm-border);
}
.security-features li:last-child {
    border-bottom: none;
}
.security-features li i {
    color: #22c55e;
    font-size: 18px;
}

/* Remote Support Responsive */
@media (max-width: 991px) {
    .remote-sidebar { position: static; }
    .remote-card { padding: 28px 20px; }
}
@media (max-width: 576px) {
    .session-id-value { font-size: 1.6rem; letter-spacing: 2px; }
    .remote-card { padding: 20px 16px; }
    .step-indicator { gap: 4px; }
    .step-num { width: 28px; height: 28px; font-size: 12px; }
}
