/* ============================================
   METIN YAZAR - PROFESSIONAL CUSTOM STYLES
   Version: 2.0
   ============================================ */

/* ============================================
   1. DESIGN SYSTEM
   ============================================ */
:root {
    /* Colors */
    --primary-color: #ff5100;
    --primary-dark: #e64800;
    --primary-light: #ff6b29;
    --secondary-color: #2d3748;
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --text-light: #718096;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #22c55e;
    --warning: #fbbf24;
    --info: #3b82f6;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 2px 8px 0 rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 16px 0 rgba(0,0,0,0.12);
    --shadow-xl: 0 8px 24px 0 rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. INLINE STYLES - MERKEZİ
   ============================================ */

/* User Panel Buttons */
.user-panel-btn {
    margin-top: -50px;
}

/* Icon Containers */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: var(--radius-md);
    position: relative;
}

.icon-container i {
    font-size: 70px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
}

/* Icon visibility fixes */
.icon-large {
    font-size: 70px !important;
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.icon-white {
    color: rgba(255,255,255,0.95) !important;
}

.neon-icon {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5) !important;
}

/* Button icon + text alignment fixes */
.ttm-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}
.ttm-btn i,
.ttm-btn .fa,
.ttm-btn .ti,
.btn i,
.auth-submit-btn i,
.auth-footer-link i,
.auth-navbar-link i,
.yazar-profile-btn i {
    display: inline-block !important;
    margin-right: 8px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    position: static !important;
    z-index: 1;
}

/* Ensure icon sits to the left of text globally for icon-left buttons */
.ttm-icon-btn-left {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}
.ttm-icon-btn-left i {
    display: inline-block !important;
    margin-right: 8px !important;
    margin-left: 0 !important;
    position: static !important;
    vertical-align: middle !important;
    line-height: 1 !important;
    font-size: inherit;
}

/* Ensure button text aligns with icon baseline */
.ttm-btn.ttm-btn-size-xs,
.ttm-btn {
    line-height: 1.2 !important;
}

/* Ensure primary fill buttons are visible on any background */
.ttm-btn.ttm-btn-style-fill.ttm-btn-bgcolor-skincolor {
    background-color: #f71735 !important;
    color: #ffffff !important;
    border-color: #f71735 !important;
}
.ttm-btn.ttm-btn-style-fill.ttm-btn-bgcolor-skincolor:hover {
    filter: brightness(0.95);
}

/* ===== Featured Articles (Global) - card layout and readability ===== */
.featured-imagebox.featured-imagebox-blog {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.featured-imagebox.featured-imagebox-blog .featured-thumbnail {
    position: relative;
    min-height: 180px;
}
.featured-imagebox.featured-imagebox-blog .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.featured-imagebox.featured-imagebox-blog .icon-container i,
.featured-imagebox.featured-imagebox-blog .emoji-illustration {
    position: relative;
    z-index: 2;
}
.featured-imagebox.featured-imagebox-blog .particles-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.featured-imagebox.featured-imagebox-blog .featured-content {
    padding: 18px 20px;
}
.featured-imagebox.featured-imagebox-blog .featured-title h5 {
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.featured-imagebox.featured-imagebox-blog .featured-desc p {
    margin: 0 0 14px 0;
    color: #4a5568;
}
.featured-imagebox.featured-imagebox-blog .ttm-btn {
    margin-top: 6px;
}

/* Responsive tweaks for cards */
@media (max-width: 767px) {
    .featured-imagebox.featured-imagebox-blog .featured-thumbnail { min-height: 140px; }
    .featured-imagebox.featured-imagebox-blog .icon-container { min-height: 140px; }
}

/* Text contrast fixes for better readability */
.ttm-textcolor-skincolor {
    color: #f71735 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Background contrast fixes */
.ttm-bgcolor-skincolor {
    background-color: #f71735 !important;
}

/* Ensure text is readable on colored backgrounds */
.ttm-bgcolor-skincolor,
.ttm-bgcolor-skincolor * {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Fix for buttons with icons */
.ttm-btn.ttm-btn-color-skincolor {
    color: #ffffff !important;
    background-color: #f71735 !important;
}

.ttm-btn.ttm-btn-color-skincolor i {
    color: #ffffff !important;
}

/* Specific fixes for different button types */
.ttm-btn i {
    margin-right: 8px !important;
}

.btn i {
    margin-right: 6px !important;
}

.auth-submit-btn i,
.auth-footer-link i,
.auth-navbar-link i {
    margin-right: 6px !important;
}

.yazar-profile-btn i {
    margin-right: 8px !important;
}

/* Ensure icons don't overlap text inside theme buttons */
.ttm-btn {
    display: inline-flex;
    align-items: center;
}

.ttm-btn > i {
    position: static !important;
    left: auto !important;
    top: auto !important;
}

/* Top contact bar icon spacing */
.top-contact li i {
    margin-right: 6px;
    vertical-align: middle;
}

/* Stats Text */
.stats-text {
    margin-top: 15px;
}

/* Image Wrapper */
.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-lg);
}

.morphing-shapes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.morphing-shape {
    animation-delay: 2s;
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Testimonials */
.testimonials {
    padding: 30px;
    height: 100%;
}

/* ============================================
   ADMIN PANEL STYLES - MERKEZİ
   ============================================ */

/* Admin Menu */
.adminmenu li a {
    border: solid #CCC 1px;
    padding: 5px;
    width: 100%;
    display: block;
}

.adminmenu li {
    height: 50px;
    width: 100%;
}

.adminmenu {
    list-style: none;
}

/* Panel Body Responsive */
@media only screen and (min-width: 500px) {
    .panel-body {
        width: 98%;
        overflow-x: scroll !important;
    }
}

@media only screen and (min-width: 768px) {
    .panel-body {
        width: 98%;
        overflow-x: auto !important;
    }
}

/* ============================================
   BLINK ANIMATION - MERKEZİ
   ============================================ */

.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* ============================================
   AUTH PAGES - MERKEZİ
   ============================================ */

/* Auth Page Base */
.auth-page {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.auth-page body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   INLINE CSS REPLACEMENTS - MERKEZİ
   ============================================ */

/* Container Spacing */
.container-spacing-top {
    margin-top: 50px;
}

.container-spacing-top-small {
    margin-top: 20px;
}

.container-spacing-bottom {
    margin-bottom: 50px;
}

/* Page Title Row */
.page-title-row-negative {
    margin-top: -70px;
    margin-bottom: 0px;
}

/* Card Body Padding */
.card-body-no-padding {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
}

/* Blockquote Styles */
.blockquote-primary {
    border-left: 5px solid #ff5100;
    padding-left: 20px;
    font-style: italic;
    color: #495057;
}

/* Featured Cards */
.featured-card-full-height {
    height: 100%;
}

.featured-thumbnail-fixed {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.featured-content-padding {
    padding: 25px;
}

/* Icon Styles */
.icon-large {
    font-size: 80px;
}

.icon-extra-large {
    font-size: 100px;
}

.icon-white {
    color: rgba(255,255,255,0.95);
}

.icon-animated {
    animation: float 3s ease-in-out infinite;
}

/* Emoji Illustrations */
.emoji-illustration {
    font-size: 100px;
    padding: 30px;
}

.emoji-illustration-medium {
    font-size: 80px;
}

/* Text Styles */
.text-large {
    font-size: 18px;
    color: #4a5568;
}

.counter-large {
    font-size: 2.5em;
    font-weight: bold;
}

/* Pattern Grid */
.pattern-grid {
    min-height: 150px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hidden Elements */
.hidden {
    display: none;
}

/* ============================================
   YAZAR PANEL INLINE CSS REPLACEMENTS
   ============================================ */

/* Yazar Panel Stat Cards */
.yazar-panel-stat-card-pending {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.yazar-panel-stat-label-white {
    color: rgba(255,255,255,0.9);
}

.yazar-panel-stat-value-white {
    color: white;
}

/* Yazar Profile Helpers */
.yazar-profile-helper-spacing {
    margin-top: 12px;
}

.yazar-profile-input-spacing {
    margin-top: 10px;
}

/* ============================================
   ADMIN PANEL INLINE CSS REPLACEMENTS
   ============================================ */

/* Clickable Cards */
.clickable-card {
    cursor: pointer;
}

.clickable-table {
    cursor: pointer;
}

/* Table Row Styles */
.table-row-bold {
    font-weight: bold;
}

/* ============================================
   SEPET SAYFASI INLINE CSS REPLACEMENTS
   ============================================ */

/* Sepet Container Spacing */
.sepet-container-spacing {
    margin-top: 60px;
}

.sepet-info-box {
    background: #f0f0f0;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    font-size: 12px;
}

.sepet-alert-spacing {
    margin: 10px 0;
}

.sepet-center-spacing {
    margin-top: 20px;
}

/* ============================================
   İLETİŞİM SAYFASI INLINE CSS REPLACEMENTS
   ============================================ */

/* İletişim Text Styles */
.contact-text-spacing {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.contact-email-link {
    color: #667eea;
}

.contact-center-text {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin: 20px 0;
}

.contact-message-text {
    margin: 5px 0;
}

.contact-success-text {
    margin: 0;
    color: #155724;
    font-weight: bold;
}

.contact-greeting-text {
    font-size: 16px;
    color: #212529;
}

.contact-body-text {
    color: #495057;
    line-height: 1.6;
}

/* ============================================
   GİRİŞ SAYFASI INLINE CSS REPLACEMENTS
   ============================================ */

/* Auth Form Styles */
.auth-form-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.auth-checkbox-no-margin {
    margin-bottom: 0;
}

.auth-footer-link-small {
    font-size: 14px;
}

.auth-footer-text-spacing {
    margin-top: 12px;
}

/* ============================================
   AUTH PAGES INLINE CSS REPLACEMENTS
   ============================================ */

/* Auth Page Backgrounds */
.auth-page-yazar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-page-uye {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Auth Container */
.auth-container-wide {
    max-width: 600px;
}

.auth-container-normal {
    max-width: 540px;
}

/* Auth Logo */
.auth-logo-yazar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-logo-uye {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Auth Alert */
.auth-alert-spacing {
    margin-bottom: 24px;
}

/* Form Labels */
.form-label-required {
    color: #e53e3e;
}

.form-helper-text {
    color: #718096;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* Auth Submit Buttons */
.auth-submit-btn-yazar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.auth-submit-btn-uye {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Auth Checkbox Wrapper */
.auth-checkbox-wrapper-bg {
    background: #f8fafc;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.auth-checkbox-helper {
    display: block;
    color: #718096;
    margin-top: 2px;
}

/* Auth Footer */
.auth-footer-text-small {
    margin-top: 12px;
    font-size: 12px;
    color: #a0aec0;
}

.auth-footer-link-muted {
    color: #a0aec0;
    text-decoration: underline;
}

/* ============================================
   ADMIN ÖDEMELER INLINE CSS REPLACEMENTS
   ============================================ */

/* Admin Button Spacing */
.admin-btn-spacing {
    margin-right: 8px;
}

/* Payment Search */
.payment-search-form {
    margin: 0;
}

/* Empty State */
.empty-state-icon {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.empty-state-text {
    color: #6b7280;
}

.empty-state-padding {
    padding: 40px;
}

/* Status Colors */
.status-blue {
    color: #3b82f6;
    font-weight: 600;
}

.status-muted {
    color: #9ca3af;
}

/* Form Required */
.form-required-red {
    color: red;
}

/* ============================================
   ADMIN DÜZENLEME SAYFALARI INLINE CSS REPLACEMENTS
   ============================================ */

/* Clear Float */
.clear-both {
    clear: both;
}

/* Button Spacing */
.btn-spacing-top {
    margin-top: 20px;
}

/* Icon Container */
.icon-container-60 {
    width: 60px;
    height: 60px;
    float: left;
    margin: 10px;
}

.icon-large-60 {
    font-size: 60px;
}

/* Text Center */
.text-center-block {
    text-align: center;
}

/* ============================================
   BLOG INLINE CSS REPLACEMENTS
   ============================================ */
.blog-hero-background { background-size: cover; background-position: center; }
.blog-hero-description { font-size: 18px; color: rgba(255,255,255,0.95); line-height: 1.6; }
.blog-content-spacing { margin-top: 40px; margin-bottom: 60px; }
.blog-tags-spacing { margin: 40px 0; }
.blog-tags-title { margin-bottom: 15px; }
.blog-share-title { margin-bottom: 20px; color: #333; }
.blog-author-title { margin-bottom: 8px; }
.blog-author-description { margin-bottom: 0; color: #666; }
.blog-related-title { margin-bottom: 30px; color: #2c3e50; }

/* ============================================
   MAINTENANCE PAGE INLINE CSS REPLACEMENTS
   ============================================ */
.maintenance-text { color: white; font-size: 11px; }

/* ============================================
   FORM OPTIMIZATIONS
   ============================================ */
.form-optimized { margin-bottom: 12px; }

/* ============================================
   BLOG ADDITIONAL STYLES
   ============================================ */
.blog-title-hidden { margin-top: 1px; display: none; }
.blog-title-no-transform { text-transform: none !important; }
.blog-tag-link { display: inline-block; padding: 5px 12px; margin: 3px; background: #667eea; color: white; border-radius: 15px; font-size: 12px; text-decoration: none; }
.blog-liste-description { font-size: 18px; opacity: 0.95; }
.blog-liste-spacing { margin-bottom: 80px; }
.blog-card-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; }
.blog-card-emoji { color: white; font-size: 40px; }
.blog-card-emoji-no-margin { margin: 0; }
.blog-card-fixed-height { height: 180px; }
.blog-tag-margin { margin: 3px; }

/* ============================================
   EDITORLUK ÖDEME STYLES
   ============================================ */
.editorluk-content-spacing { margin-top: 20px; margin-bottom: 100px !important; }

/* ============================================
   HAVALE BİLDİRİM STYLES
   ============================================ */
.havale-success-alert { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); margin: 30px 0; }
.havale-success-center { text-align: center; }
.havale-success-icon { font-size: 60px; margin-bottom: 20px; animation: scaleIn 0.5s; }
.havale-success-title { color: white; margin-bottom: 15px; font-weight: bold; }
.havale-success-description { font-size: 16px; margin-bottom: 20px; line-height: 1.6; }
.havale-success-info { background: rgba(255,255,255,0.2); padding: 15px; border-radius: 10px; margin-top: 20px; }
.havale-success-info-text { margin: 0; font-size: 14px; }
.havale-success-spinner-container { margin-top: 25px; }
.havale-success-spinner { margin: 20px auto; width: 40px; height: 40px; border: 4px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 1s linear infinite; }
.havale-success-redirect-text { font-size: 14px; opacity: 0.9; }
.havale-error-alert { border-radius: 15px; padding: 25px; box-shadow: 0 5px 15px rgba(220,53,69,0.3); }

/* ============================================
   HAZIR MAKALE STYLES
   ============================================ */
.hazir-makale-main { margin-top: -80px; }
.hazir-makale-table { font-size: 12px; color: black; }
.hazir-makale-header { background-color: #f71735; color: white; font-weight: bold; }
.hazir-makale-author-link { color: #667eea; font-weight: 600; text-decoration: none; }
.hazir-makale-cart-btn { border-radius: 6px; padding-right: 6px !important; }
.toastr-link { color: white; text-decoration: underline; }
.hidden-form { display: none; }

/* ============================================
   HİZMET STYLES
   ============================================ */
.hizmet-siparis-spacing { padding-top: 100px; }
.hizmetler-spacing { padding-top: 100px; }
.hizmetler-hero-card { background-image: url('/images/header-hero.png') !important; background-size: cover; cursor: pointer; padding: 30px; border-radius: 10px; margin-bottom: 50px; height: calc(100% - 50px); }
.hizmetler-features { min-height: 150px; }

/* ============================================
   BLOG RELATED STYLES
   ============================================ */
.blog-related-link { color: #333; text-decoration: none; font-weight: bold; }
.blog-related-text { font-size: 14px; color: #666; }

/* ============================================
   YAZAR PROFILE STYLES
   ============================================ */
.yazar-profile-responsive { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ============================================
   İÇERİKLER STYLES
   ============================================ */
.icerikler-card-body { font-size: 12px; }

/* ============================================
   İLETİŞİM STYLES
   ============================================ */
.contact-response-text { margin: 10px 0 0 0; opacity: 0.9; font-size: 16px; }
.contact-footer-text { color: #6c757d; font-size: 14px; text-align: center; margin-top: 20px; }
.contact-success-container { margin: 30px auto; max-width: 700px; }
.contact-success-alert { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: white; padding: 40px; border-radius: 15px; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.15); animation: slideInDown 0.5s; }
.contact-success-icon { font-size: 70px; margin-bottom: 15px; animation: bounceIn 0.8s; }
.contact-success-title { margin: 0 0 15px 0; color: white; font-size: 32px; font-weight: bold; }
.contact-success-greeting { margin: 0 0 10px 0; font-size: 18px; opacity: 0.95; }
.contact-success-email { margin: 0 0 20px 0; font-size: 16px; opacity: 0.95; }
.contact-success-info-box { background: rgba(255,255,255,0.2); padding: 20px; border-radius: 10px; margin: 20px 0; }
.contact-success-info-item { margin: 5px 0; font-size: 15px; }
.contact-success-response-time { margin: 15px 0 5px 0; font-size: 14px; opacity: 0.9; }
.contact-success-buttons { margin-top: 25px; }
.contact-success-btn { display: inline-block; padding: 12px 30px; border-radius: 25px; text-decoration: none; font-weight: bold; margin: 5px; font-size: 15px; }
.contact-success-btn-primary { background: white; color: #11998e; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.contact-success-btn-secondary { background: rgba(255,255,255,0.2); color: white; }
.contact-error-container { margin: 20px auto; max-width: 700px; }
.contact-error-alert { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); color: white; padding: 25px; border-radius: 12px; text-align: center; box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.contact-error-icon { font-size: 45px; margin-bottom: 10px; }
.contact-error-title { margin: 0 0 10px 0; color: white; font-size: 22px; }
.contact-error-message { margin: 0 0 15px 0; font-size: 14px; }
.contact-error-btn { display: inline-block; background: white; color: #ee0979; padding: 8px 24px; border-radius: 20px; text-decoration: none; font-weight: bold; font-size: 14px; }
.contact-form-section { padding: 20px 0 40px 0; }
.contact-form-container { padding: 35px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.contact-form-title { margin-bottom: 25px; }
.contact-form-heading { margin: 0; font-size: 26px; }
.honeypot-field { display: none !important; position: absolute; left: -9999px; }
.contact-form-label { margin-bottom: 12px; }
.contact-form-textarea-label { margin-bottom: 18px; }
.contact-form-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; }
.contact-form-textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 15px; resize: vertical; }
.contact-newsletter-box { background: rgba(255,255,255,0.3); padding: 15px; border-radius: 8px; margin-bottom: 18px; }
.contact-newsletter-label { cursor: pointer; margin: 0; display: flex; align-items: center; }
.contact-newsletter-checkbox { width: 20px; height: 20px; margin-right: 10px; cursor: pointer; }
.contact-newsletter-text { color: white; font-size: 14px; }
.contact-newsletter-small { display: block; opacity: 0.9; margin-top: 3px; }
.contact-form-submit-container { text-align: center; }
.contact-form-submit-btn { width: 100%; max-width: 280px; padding: 12px 30px; font-size: 16px; }
.contact-form-footer-text { text-align: center; margin: 12px 0 0 0; color: #999; font-size: 12px; }
.contact-loading-screen { display: none; text-align: center; padding: 50px 20px; }
.contact-loading-title { color: white; font-size: 24px; margin: 30px 0 15px 0; animation: pulse 1.5s infinite; }
.contact-loading-text { color: rgba(255,255,255,0.9); font-size: 16px; margin: 0; }
.contact-loading-progress-container { margin-top: 30px; }
.contact-loading-progress-bar { background: rgba(255,255,255,0.3); height: 6px; border-radius: 10px; overflow: hidden; }
.contact-loading-progress-fill { background: white; height: 100%; width: 0%; animation: progress 3s ease-in-out; }
.page-title-row-bottom { margin-bottom: 40px; }
.maillist-success-title { margin: 0; color: white; font-size: 18px; font-weight: bold; }
.maillist-success-text { margin: 10px 0 0 0; color: white; }
.maillist-info-box { background: #f8f9fa; padding: 20px; border-radius: 10px; margin: 25px 0; }
.maillist-warning-title { margin: 5px 0; color: #333; font-size: 14px; }
.maillist-warning-text { margin: 5px 0; color: #666; font-size: 14px; }
.maillist-button-container { margin-top: 30px; }

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* CSS Variables for better performance */
:root {
    --primary-color: #ff5100;
    --secondary-color: #667eea;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

/* Optimized animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Performance optimized classes */
.fade-in {
    animation: fadeIn var(--transition-base);
}

.slide-in {
    animation: slideIn var(--transition-base);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Optimized hover effects */
.hover-lift {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Optimized button styles */
.btn-optimized {
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn-optimized:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Optimized card styles */
.card-optimized {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast);
}

.card-optimized:hover {
    box-shadow: var(--shadow-md);
}

/* Optimized form styles */
.form-optimized {
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-optimized:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 81, 0, 0.25);
}

/* ============================================
   3. SECTION TITLES - Consistent
   ============================================ */
.section-title {
    margin-bottom: var(--spacing-xl);
}

.section-title .title-header h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-title .title-header h2.title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-title p {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title .title-header h2.title {
        font-size: 28px;
    }
}

/* ============================================
   3. CARDS - Consistent Shadow & Radius
   ============================================ */
.professional-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

/* Blog Cards */
.featured-imagebox-blog {
    transition: all var(--transition-base);
}

.featured-imagebox-blog:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl) !important;
}

/* Icon Boxes */
.featured-icon-box.style3 {
    transition: all var(--transition-base);
    padding: var(--spacing-lg);
}

.featured-icon-box.style3:hover {
    transform: translateY(-4px);
}

/* ============================================
   4. BUTTONS - Consistent & Professional
   ============================================ */
.ttm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.ttm-btn i {
    margin-right: 8px;
}

.ttm-btn-color-skincolor {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.ttm-btn-color-skincolor:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.ttm-btn-style-border {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.ttm-btn-style-border:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ============================================
   5. QUOTES SECTION - Enhanced
   ============================================ */
.quotes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.quotes-section .testimonials {
    position: relative;
    transition: all var(--transition-base);
}

.quotes-section .testimonials:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}

.quotes-section blockquote {
    position: relative;
    padding-left: 24px;
}

.quotes-section blockquote::before {
    content: '"';
    position: absolute;
    left: -4px;
    top: -8px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ============================================
   6. FEATURED ARTICLES - Enhanced
   ============================================ */
.featured-articles-section {
    background: var(--bg-light);
}

.featured-imagebox-blog .featured-title h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.featured-imagebox-blog .featured-title h5 a:hover {
    color: var(--primary-color);
}

.featured-imagebox-blog .featured-desc p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   7. PRICING/QUALITY SECTION - Enhanced
   ============================================ */
.pricing-quality-section {
    background: var(--bg-white);
}

.pricing-quality-section ul.ttm-list {
    list-style: none;
    padding: 0;
}

.pricing-quality-section ul.ttm-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.pricing-quality-section ul.ttm-list li:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.pricing-quality-section ul.ttm-list li i {
    margin-right: var(--spacing-sm);
    font-size: 20px;
    flex-shrink: 0;
}

/* ============================================
   8. CONTACT FORM - Professional
   ============================================ */
.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact_form input[type="text"],
.contact_form input[type="email"],
.contact_form select,
.contact_form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.1);
}

.contact_form label {
    display: block;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   9. PERFORMANCE CARDS - Enhanced
   ============================================ */
.work-proof-section {
    background: var(--bg-light);
    position: relative;
}

.work-proof-section .featured-icon-box .featured-title h4 {
    margin-bottom: var(--spacing-sm);
}

.work-proof-section .featured-icon-box .featured-title h5 {
    font-size: 18px;
    color: var(--text-body);
    font-weight: 600;
}

/* Counter Animation Enhancement */
.counter {
    display: inline-block;
    font-weight: 700;
}

/* ============================================
   10. RESPONSIVE ENHANCEMENTS
   ============================================ */
@media (max-width: 991px) {
    :root {
        --spacing-xl: 32px;
        --spacing-2xl: 48px;
        --spacing-3xl: 64px;
    }
    
    .section-title .title-header h2.title {
        font-size: 32px;
    }
    
    .ttm-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-xl: 24px;
        --spacing-2xl: 32px;
        --spacing-3xl: 48px;
    }
    
    .section-title .title-header h2.title {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .ttm-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
    }
    
    .professional-card:hover {
        transform: none;
    }
}

/* ============================================
   11. SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
}

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

/* Skip to main content */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-main:focus {
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-sm);
}

/* ============================================
   13. ANIMATION CLASSES
   ============================================ */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scale-on-hover {
    transition: transform var(--transition-base);
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

/* ============================================
   14. LOADING STATES
   ============================================ */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   END OF PROFESSIONAL CUSTOM STYLES
   ============================================ */

