/**
 * Kececi Starter Theme - Custom CSS
 * Tailwind CSS üzerine özel stiller
 * 
 * @package kececi_tema
 */

/* ==========================================================================
   Global Reset
   ========================================================================== */

/* WordPress .page class margin override - style.css'teki margin: 0 0 1.5em'i override et */
body.page,
body .page,
.page {
    margin: 0 !important;
    padding: 0 !important;
}

/* #page element margin override */
#page {
    margin: 0 !important;
    padding: 0 !important;
}

/* Footer sonrası boşluk sorunu */
.site-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Hizmet Detay Breadcrumb - Beyaz Renk */
.single-hizmetler nav[aria-label="Breadcrumb"],
.single-hizmetler nav[aria-label="Breadcrumb"] ol,
.single-hizmetler nav[aria-label="Breadcrumb"] li,
.single-hizmetler nav[aria-label="Breadcrumb"] a,
.single-hizmetler nav[aria-label="Breadcrumb"] i {
    color: #ffffff !important;
}

.single-hizmetler nav[aria-label="Breadcrumb"] a:hover {
    opacity: 0.8 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Global Link Styles
   ========================================================================== */

/* Link renklerini düzelt - visited state için */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* ==========================================================================
   WordPress Specific Overrides
   ========================================================================== */

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Skip Link */
.skip-link:focus {
    z-index: 100000;
}

/* ==========================================================================
   WordPress Alignments
   ========================================================================== */

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.alignwide {
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: calc(100% + 4rem);
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    width: 100vw;
}

/* ==========================================================================
   WordPress Captions & Galleries
   ========================================================================== */

.wp-caption {
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Galleries */
.gallery {
    display: grid;
    grid-gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   WordPress Widget Defaults
   ========================================================================== */

.widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.widget li:last-child {
    border-bottom: none;
}

/* Sidebar Widgets - Modern Minimal */
.sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget-area .widget,
.sidebar-modern .widget {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.widget-area .widget:hover,
.sidebar-modern .widget:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.widget-area .widget-title,
.sidebar-modern .widget-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color, #0f172a);
    margin: 0 0 20px 0;
    padding: 0 0 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-transform: none;
    letter-spacing: 0;
}

/* Widget List Styles */
.widget-area ul,
.sidebar-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-area li,
.sidebar-modern li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.widget-area li:last-child,
.sidebar-modern li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-area li:first-child,
.sidebar-modern li:first-child {
    padding-top: 0;
}

/* Widget Links */
.widget-area a,
.sidebar-modern a {
    color: var(--text-color, #475569);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    font-size: 14px;
    line-height: 1.6;
}

.widget-area a:hover,
.sidebar-modern a:hover {
    color: var(--primary-color, #3b82f6);
}

/* Search Widget - Modern Minimal Design */
.widget_search .search-form {
    display: flex !important;
    gap: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}

.widget_search .search-form:focus-within {
    border-color: var(--primary-color, #3b82f6) !important;
    box-shadow: 0 0 0 1px var(--primary-color, #3b82f6) !important;
}

.widget_search .search-field,
.widget_search input[type="search"],
.widget_search input[type="text"] {
    flex: 1 !important;
    padding: 12px 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    background: transparent !important;
    color: var(--text-color, #475569) !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    line-height: 1.5 !important;
    width: auto !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.widget_search .search-field::placeholder,
.widget_search input[type="search"]::placeholder,
.widget_search input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
}

.widget_search .search-field:focus,
.widget_search input[type="search"]:focus,
.widget_search input[type="text"]:focus {
    outline: none !important;
    background: transparent !important;
   
}

.widget_search .search-submit,
.widget_search button[type="submit"],
.widget_search input[type="submit"] {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--primary-color, #3b82f6) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    font-size: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.widget_search .search-submit::before,
.widget_search button[type="submit"]::before,
.widget_search input[type="submit"]::before {
    content: '\f002' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #ffffff !important;
    display: block !important;
}

.widget_search .search-submit:hover,
.widget_search button[type="submit"]:hover,
.widget_search input[type="submit"]:hover {
    background: var(--primary-color, #3b82f6) !important;
    filter: brightness(0.85) !important;
}

.widget_search .search-submit:active,
.widget_search button[type="submit"]:active,
.widget_search input[type="submit"]:active {
    transform: scale(0.95) !important;
}

.widget_search .search-submit:focus,
.widget_search button[type="submit"]:focus,
.widget_search input[type="submit"]:focus {
    outline: none !important;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3) !important;
}

/* Hide button text */
.widget_search .search-submit .screen-reader-text,
.widget_search button[type="submit"] .screen-reader-text,
.widget_search input[type="submit"] .screen-reader-text {
    display: none !important;
}

/* Recent Posts Widget */
.widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

/* Categories Widget */
.widget_categories .count {
    float: right;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
}

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    font-size: 13px !important;
    transition: all 0.2s ease;
}

.widget_tag_cloud .tagcloud a:hover {
    background: var(--primary-color, #3b82f6);
    color: #ffffff;
    border-color: var(--primary-color, #3b82f6);
}

/* Archive Widget */
.widget_archive select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 14px;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.widget_archive select:focus {
    border-color: var(--primary-color, #3b82f6);
    outline: none;
}

/* Text Widget */
.widget_text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color, #475569);
}

.widget_text p {
    margin-bottom: 12px;
}

.widget_text p:last-child {
    margin-bottom: 0;
}

/* Recent Comments Widget - Modern Design */
.recent-comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-comment-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.recent-comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-comment-item:first-child {
    padding-top: 0;
}

.recent-comment-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.recent-comment-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: block;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.recent-comment-thumbnail:hover {
    border-color: var(--primary-color, #3b82f6);
    transform: scale(1.05);
}

.recent-comment-thumbnail .post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-comment-info {
    flex: 1;
    min-width: 0;
}

.recent-comment-header {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.recent-comment-author {
    font-weight: 600;
    color: var(--heading-color, #0f172a);
}

.recent-comment-separator {
    color: var(--text-color, #475569);
    opacity: 0.6;
    margin: 0 4px;
}

.recent-comment-post-title {
    color: var(--primary-color, #3b82f6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline;
}

.recent-comment-post-title:hover {
    color: var(--primary-color, #3b82f6);
    opacity: 0.8;
    text-decoration: underline;
}

.recent-comment-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color, #475569);
}

.recent-comment-text a {
    color: var(--text-color, #475569);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.recent-comment-text a:hover {
    color: var(--primary-color, #3b82f6);
}

/* Footer Widget Area */
.footer-widget-area .widget {
    margin-bottom: 0;
    background: transparent;
    border: none;
    padding: 0;
}

.footer-widget-area .widget-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-widget-area .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-area .widget li {
    padding: 0.5rem 0;
    border-bottom: none;
}

.footer-widget-area .widget a {
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.2s ease;
    font-size: 0.875rem;
}

.footer-widget-area .widget a:hover {
    opacity: 0.8;
}

/* Footer Column Styles */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3,
.footer-column h4 {
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Header Styles - Minimal Modern
   ========================================================================== */

/* Topbar */
/* ==========================================================================
   Topbar - Modern Minimal Design
   ========================================================================== */
.site-topbar {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
    font-size: 13px;
    line-height: 1.5;
}

.topbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.topbar-container-full {
    width: 100%;
    padding: 0 40px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
    color: inherit;
    opacity: 0.85;
}

.topbar-link:hover {
    color: var(--primary-color, #3b82f6);
    opacity: 1;
}

.topbar-link i {
    font-size: 12px;
    opacity: 0.75;
}

.topbar-text {
    font-size: 13px;
    font-weight: 400;
    color: inherit;
    opacity: 0.85;
}

.topbar-social {
    display: flex;
    align-items: center;
}

.topbar-social ul {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    transition: color 0.2s ease !important;
    font-size: 13px;
    opacity: 0.85;
}

/* Topbar'dan gelen renk değerini kullan */
.site-topbar .topbar-social-link {
    color: inherit !important;
}

.topbar-social-link:hover {
    color: var(--primary-color, #3b82f6) !important;
    opacity: 1 !important;
}

.topbar-social-link i {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease !important;
}

/* Topbar'dan gelen renk değerini kullan */
.site-topbar .topbar-social-link i {
    color: inherit !important;
}

.topbar-social-link:hover i {
    color: var(--primary-color, #3b82f6) !important;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.header-container,
.header-container-contained {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-container-full {
    width: 100%;
    padding: 0 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 60px;
}

/* Header Layout Variations */
.header-layout-left .header-inner {
    flex-direction: row;
}

.header-layout-center .header-inner {
    justify-content: center;
    position: relative;
}

.header-layout-center .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-layout-center .header-actions {
    margin-left: auto;
}

.header-layout-right .header-inner {
    flex-direction: row-reverse;
}

.header-layout-right .header-nav {
    order: 1;
}

.header-layout-right .header-logo {
    order: 2;
}

.header-layout-right .header-actions {
    order: 3;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo-link {
    display: block;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.header-logo-text {
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
}

.header-logo-text:hover {
    opacity: 0.7;
}

/* Desktop Navigation */
.header-nav {
    flex: 1;
    display: none;
}

@media (min-width: 1024px) {
    .header-nav {
        display: block;
    }
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    transition: opacity 0.2s ease;
    letter-spacing: -0.01em;
}

.primary-menu > li > a:hover {
    opacity: 0.6;
}

/* Submenu */
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 100;
}

.primary-menu > li:hover > .sub-menu {
    display: block;
}

.primary-menu .sub-menu li {
    display: block;
    position: relative;
}

.primary-menu .sub-menu a {
    display: block;
    padding: 12px 24px;
    color: #374151;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.primary-menu .sub-menu a:hover {
    opacity: 0.6;
    background: #f9fafb;
}

.primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.primary-menu .sub-menu li:hover > .sub-menu {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 16px;
}

.header-action-btn:hover {
    opacity: 0.6;
}

.header-cart-btn {
    position: relative;
}

.header-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #0f172a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cta-btn {
    display: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    border: 1px solid var(--primary-color, #3b82f6);
    background: transparent;
    color: var(--primary-color, #3b82f6);
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .header-cta-btn {
        display: inline-flex;
        align-items: center;
    }
}

.header-cta-btn:hover {
    background: var(--primary-color, #3b82f6);
    color: #ffffff;
}

.header-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.2s ease;
}

@media (min-width: 1024px) {
    .header-mobile-toggle {
        display: none;
    }
}

.header-mobile-toggle:hover {
    opacity: 0.6;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 40;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    overflow-y: auto;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.is-open {
    transform: translateX(0);
}

.mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 300;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 20px;
    transition: opacity 0.2s ease;
}

.mobile-menu-close:hover {
    opacity: 0.6;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Mobile Menu Items */
.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    border: 1px solid #0f172a;
    background: transparent;
    color: #0f172a;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.mobile-menu-cta:hover {
    background: #0f172a;
    color: #ffffff;
}

.mobile-menu > li > a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 300;
    color: #374151;
    text-decoration: none;
    transition: opacity 0.2s ease;
    letter-spacing: -0.01em;
}

.mobile-menu > li > a:hover,
.mobile-menu > li.current-menu-item > a {
    opacity: 0.6;
}

/* Mobile Menu - Has Children */
.mobile-menu li.menu-item-has-children {
    position: relative;
}

.mobile-menu li.menu-item-has-children > a {
    padding-right: 3rem;
}

/* Submenu Toggle Button */
.mobile-menu .submenu-toggle {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 0.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu .submenu-toggle:hover {
    background: #e5e7eb;
    color: #374151;
}

.mobile-menu .submenu-toggle.is-active {
    background: #fff;
    color: white;
}

.mobile-menu .submenu-toggle i {
    transition: transform 0.2s ease;
}

.mobile-menu .submenu-toggle.is-active i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-menu .sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f9fafb;
}

.mobile-menu .sub-menu.is-open {
    display: block;
}

.mobile-menu .sub-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu .sub-menu li:last-child {
    border-bottom: none;
}

.mobile-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    font-size: 0.9375rem;
    color: #4b5563;
}

.mobile-menu .sub-menu a:hover {
    color: #fff;
    background: #f3f4f6;
}

/* Nested Submenu (3rd level) */
.mobile-menu .sub-menu .sub-menu {
    background: #f3f4f6;
}

.mobile-menu .sub-menu .sub-menu a {
    padding-left: 2.5rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   Search Modal
   ========================================================================== */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(4px);
}

.search-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
    z-index: 10;
}

.search-form {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

.search-input {
    flex: 1 !important;
    padding: 22.5px 15px !important;
    border: none !important;
    background: #ffffff !important;
    font-size: 18px !important;
    color: #0f172a !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    font-weight: 400 !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

.search-input::placeholder {
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

.search-input:focus {
    background: #ffffff !important;
    outline: none !important;
    border: none !important;
}

.search-submit {
    padding: 24px 48px !important;
    background: var(--primary-color, #3b82f6) !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    min-width: 140px !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

.search-submit:hover {
    background: #2563eb !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

#search-modal input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

/* ==========================================================================
   Post Navigation
   ========================================================================== */

.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    min-width: 200px;
}

.post-navigation .nav-next {
    text-align: right;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 0 20px;
    gap: 8px;
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

.comment-body {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.comment-author .avatar {
    border-radius: 9999px;
}

/* ==========================================================================
   Sticky Post Badge
   ========================================================================== */

.sticky .entry-title::before {
    content: '📌 ';
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color, #3b82f6);
    color: white;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--primary-color, #3b82f6);
    filter: brightness(0.9);
    transform: translateY(-4px);
}

/* ==========================================================================
   Sticky Header
   ========================================================================== */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: all 0.3s ease;
}

.sticky-header.is-sticky {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Footer Styles - Minimal Modern
   ========================================================================== */

.site-footer {
    background: #0f172a;
    color: #ffffff;
    padding: 100px 0 0;
}

.footer-main {
    width: 100%;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-container-full {
    width: 100%;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    gap: 80px;
}

.footer-column {
    padding: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 32px;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-title {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}

.footer-title a {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-title a:hover {
    opacity: 0.7;
}

.footer-about {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 32px;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social ul {
    display: flex !important;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-social ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.7;
    border-radius: 4px;
}

.footer-social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-social-link i {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 300;
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu-item {
    margin: 0;
    padding: 0;
}

.footer-menu-link {
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0.7;
}

.footer-menu-link:hover {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-text,
.footer-contact-link {
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-contact-link:hover {
    opacity: 1;
}

.footer-bottom {
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 35px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    opacity: 0.6;
}

/* Header & Footer Responsive */
@media (max-width: 1023px) {
    .topbar-container,
    .topbar-container-full {
        padding: 0 24px;
    }
    
    .header-container,
    .footer-container {
        padding: 0 24px;
    }
    
    .topbar-inner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .topbar-left {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .topbar-right {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .topbar-social ul {
        gap: 12px;
    }
    
    .header-inner {
        height: 70px;
        gap: 20px;
    }
    
    .header-logo-img {
        height: 32px;
    }
    
    .primary-menu > li > a {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-main {
        padding-bottom: 60px;
    }
    
    .site-footer {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .topbar-container,
    .topbar-container-full {
        padding: 10px 20px;
    }
    
    .header-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .topbar-left {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .topbar-right {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .topbar-link {
        font-size: 12px;
    }
    
    .topbar-text {
        font-size: 12px;
    }
    
    .topbar-social ul {
        gap: 10px;
    }
    
    .topbar-social-link {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .topbar-link {
        font-size: 12px;
    }
    
    .topbar-text {
        font-size: 12px;
    }
    
    .topbar-social ul {
        gap: 12px;
    }
    
    .topbar-social-link {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .header-inner {
        height: 60px;
    }
    
    .header-logo-img {
        height: 28px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .header-action-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .mobile-menu-panel {
        max-width: 100%;
    }
    
    .search-modal-content {
        padding: 0 20px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 0;
    }
    
    .search-input {
        padding: 22.5px 15px !important;
        font-size: 16px !important;
        width: 100% !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .search-submit {
        padding: 20px 32px !important;
        width: 100% !important;
        min-width: 100% !important;
        font-size: 14px !important;
        border-radius: 0 !important;
    }
}

.sticky-header.is-hidden {
    transform: translateY(-100%);
}

/* ==========================================================================
   Admin Bar Fix
   ========================================================================== */

.admin-bar .sticky-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .sticky-header {
        top: 46px;
    }
}

/* ==========================================================================
   Prose / Content Styles
   ========================================================================== */

.prose {
    color: #374151;
    line-height: 1.75;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.prose h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
}

.prose a:hover {
    color: #1d4ed8;
}

/* Hazır Sayfa Şablonu - içerik alanı */
.hazir-sayfa-content.prose a {
    color: var(--primary-color, #3b82f6);
}
.hazir-sayfa-content.prose a:hover {
    color: var(--primary-dark, #2563eb);
}
.hazir-sayfa-content.prose h2,
.hazir-sayfa-content.prose h3,
.hazir-sayfa-content.prose h4 {
    color: var(--heading-color, #0f172a);
}

.prose strong {
    font-weight: 600;
    color: #111827;
}

.prose ul,
.prose ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5rem;
    padding: 0;
    border: none;
}

.prose blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4b5563;
}

.prose pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose code {
    background: #f3f4f6;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.prose pre code {
    background: transparent;
    padding: 0;
}

.prose img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th,
.prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.prose th {
    background: #f9fafb;
    font-weight: 600;
}

/* Line Clamp */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Search Page Styles
   ========================================================================== */

/* Utility Classes */
.max-w-7xl {
    max-width: 80rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.text-center {
    text-align: center;
}

/* Search Form Container */
.search-page-form {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

/* Search Input */
.search-page-form input[type="search"] {
    width: 100%;
    padding: 18px 180px 18px 60px;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.search-page-form input[type="search"]:focus {
    border-color: #3b82f6;
}

.search-page-form input[type="search"]::placeholder {
    color: #9ca3af;
}

/* Remove default search input styles */
.search-page-form input[type="search"]::-webkit-search-decoration,
.search-page-form input[type="search"]::-webkit-search-cancel-button,
.search-page-form input[type="search"]::-webkit-search-results-button,
.search-page-form input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* Search Icon */
.search-page-form .search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px;
    pointer-events: none;
}

/* Search Button */
.search-page-form button[type="submit"] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 32px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-page-form button[type="submit"] i {
    font-size: 14px;
}

/* Search Header */
.search-header {
    background: #f0f9ff;
    padding: 60px 0 80px;
    border-bottom: 1px solid #e0f2fe;
}

.search-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
}

.search-header h1 .search-term {
    color: #3b82f6;
    display: inline-block;
}

.search-results-count {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.search-results-count strong {
    color: #1f2937;
    font-weight: 700;
}

/* Breadcrumb */
.search-breadcrumb {
    margin-bottom: 24px;
}

.search-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.search-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.search-breadcrumb .current {
    color: #111827;
    font-weight: 600;
}

.search-breadcrumb .separator {
    color: #d1d5db;
    font-size: 12px;
}

/* Breadcrumb Linkleri - Siyah (tüm durumlar için) */
/* Normal, visited, hover, active, focus durumları için */
nav[aria-label="Breadcrumb"] a,
nav[aria-label="Breadcrumb"] a:link,
nav[aria-label="Breadcrumb"] a:visited,
nav[aria-label="Breadcrumb"] a:hover,
nav[aria-label="Breadcrumb"] a:active,
nav[aria-label="Breadcrumb"] a:focus,
nav[aria-label="Breadcrumb"] ol a,
nav[aria-label="Breadcrumb"] ol a:link,
nav[aria-label="Breadcrumb"] ol a:visited,
nav[aria-label="Breadcrumb"] ol a:hover,
nav[aria-label="Breadcrumb"] ol a:active,
nav[aria-label="Breadcrumb"] ol a:focus,
.search-breadcrumb a,
.search-breadcrumb a:link,
.search-breadcrumb a:visited,
.search-breadcrumb a:hover,
.search-breadcrumb a:active,
.search-breadcrumb a:focus {
    color: #1e293b !important;
    opacity: 1 !important;
}

nav[aria-label="Breadcrumb"] a:hover,
nav[aria-label="Breadcrumb"] a:focus,
nav[aria-label="Breadcrumb"] ol a:hover,
nav[aria-label="Breadcrumb"] ol a:focus,
.search-breadcrumb a:hover,
.search-breadcrumb a:focus {
    opacity: 0.8 !important;
    color: #1e293b !important;
}

/* No Results */
.no-results-container {
    text-align: center;
    padding: 80px 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.no-results-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 48px;
    color: #3b82f6;
}

.no-results-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.no-results-container > p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Suggestions */
.search-suggestions {
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 16px;
    text-align: left;
}

.search-suggestions h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    margin-bottom: 12px;
    font-size: 15px;
    color: #4b5563;
    border: none;
}

.search-suggestions li:last-child {
    margin-bottom: 0;
}

.search-suggestions li i {
    color: #3b82f6;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Home Button */
.home-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
}

/* Search Result Card */
.search-result-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Card without thumbnail */
.search-result-card:not(:has(.search-result-thumbnail)) .search-result-content {
    padding: 32px;
}

/* Card Layout - Tablet and up */
@media (min-width: 768px) {
    .search-result-card {
        flex-direction: row;
    }
}

/* Thumbnail */
.search-result-thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .search-result-thumbnail {
        width: 320px;
        height: auto;
    }
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.search-result-content {
    flex: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

/* Meta Info */
.search-result-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.search-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.search-result-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
}

/* Title */
.search-result-title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.search-result-title a {
    color: #111827;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .search-result-title {
        font-size: 28px;
    }
}

/* Excerpt */
.search-result-excerpt {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .search-result-excerpt {
        font-size: 17px;
    }
}

/* Card Footer */
.search-result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.search-result-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #6b7280;
    font-size: 14px;
}

.search-result-author-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-result-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #3b82f6;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .search-header h1 {
        font-size: 1.75rem;
    }
    
    .search-page-form input[type="search"] {
        padding: 16px 70px 16px 50px;
        font-size: 15px;
    }
    
    .search-page-form .search-icon {
        left: 20px;
        font-size: 16px;
    }
    
    .search-page-form button[type="submit"] {
        padding: 10px 20px;
        font-size: 14px;
        right: 8px;
    }
    
    .search-page-form button[type="submit"] span {
        display: none;
    }
    
    .search-page-form button[type="submit"] i {
        margin: 0;
    }
    
    .no-results-container {
        padding: 60px 20px;
    }
    
    .no-results-icon {
        width: 100px;
        height: 100px;
    }
    
    .no-results-icon i {
        font-size: 40px;
    }
    
    .search-result-content {
        padding: 20px;
    }
    
    .search-result-title {
        font-size: 20px;
    }
    
    .search-result-excerpt {
        font-size: 15px;
    }
    
    .search-result-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .search-result-read-more {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-header {
        padding: 40px 0 60px;
    }
    
    .search-header h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .search-page-form input[type="search"] {
        padding: 14px 60px 14px 45px;
        font-size: 14px;
    }
    
    .search-page-form .search-icon {
        left: 16px;
        font-size: 15px;
    }
    
    .search-page-form button[type="submit"] {
        padding: 10px 18px;
        right: 6px;
    }
    
    .search-page-form button[type="submit"] span {
        display: none;
    }
    
    .search-page-form button[type="submit"] i {
        margin: 0;
        font-size: 13px;
    }
}

/* ==========================================================================
   About Page Styles - Minimal Modern Full Width
   ========================================================================== */

.about-page-container {
    width: 100%;
    padding: 0;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.about-hero {
    width: 100%;
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.about-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 60px;
    opacity: 0.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Content Section */
.about-content {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.about-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-content-inner p {
    margin-bottom: 24px;
}

/* Story Section */
.about-story {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    width: 100%;
    order: 1;
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.about-story-content {
    max-width: 600px;
    order: 2;
}

.about-section-title {
    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}

.about-story-text {
    font-size: 18px;
    line-height: 1.8;
}

.about-story-text p {
    margin-bottom: 20px;
}

/* Mission & Vision Section */
.about-mission-vision {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-mission,
.about-vision {
    padding: 0;
}

.about-card-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.about-card-content {
    font-size: 17px;
    line-height: 1.8;
}

.about-card-content p {
    margin-bottom: 16px;
}

/* Statistics Section */
.about-stats {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 12px;
    letter-spacing: -0.04em;
}

.about-stat-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Values Section */
.about-values {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.about-values .about-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.about-value {
    padding: 0;
}

.about-value-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.about-value-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.7;
}

/* Features Section */
.about-features {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.about-features .about-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.about-feature {
    padding: 0;
}

.about-feature-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.about-feature-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        padding: 0 40px;
    }
    
    .about-story,
    .about-mission-vision {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 24px;
    }
    
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-content,
    .about-story,
    .about-mission-vision,
    .about-stats,
    .about-values,
    .about-features {
        padding: 60px 0;
    }
    
    .about-section-title {
        font-size: 32px;
    }
    
    .about-stat-number {
        font-size: 48px;
    }
    
    .about-values-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 20px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
    
    .about-stat-number {
        font-size: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Common Page Styles - Minimal Modern
   ========================================================================== */

.page-container {
    width: 100%;
    padding: 0;
}

.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Common Hero */
.page-hero {
    width: 100%;
    padding: 100px 0 80px;
    text-align: center;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.page-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Common Content */
.page-content {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.page-content-inner p {
    margin-bottom: 24px;
}

/* Services Grid */
.services-grid {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.service-item {
    padding: 0;
}

.service-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.7;
}

/* Team Grid */
.team-grid {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.team-item {
    text-align: center;
    padding: 0;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 0;
}

.team-name {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.team-position {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    opacity: 0.7;
}

.team-bio {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    opacity: 0.7;
}

.team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #6b7280;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.team-social-link:hover {
    color: var(--primary-color, #0f172a);
    background-color: #f3f4f6;
}

/* Portfolio Grid */
.portfolio-grid {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.portfolio-image {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    background-color: #f3f4f6;
    aspect-ratio: 16/10;
    max-height: 240px;
}

.portfolio-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    color: #ffffff;
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.portfolio-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.portfolio-category,
.portfolio-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    background-color: #f3f4f6;
    border-radius: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-date {
    background-color: #e5e7eb;
    opacity: 1;
}

.portfolio-category i,
.portfolio-date i {
    font-size: 10px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.portfolio-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
    opacity: 0.7;
    min-height: 42px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    padding: 8px 16px;
    background-color: #f3f4f6;
    border-radius: 6px;
    margin-top: 4px;
}

.portfolio-link:hover {
    gap: 12px;
    background-color: #e5e7eb;
}

.portfolio-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.portfolio-link:hover i {
    transform: translateX(4px);
}

.portfolio-external-link {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.portfolio-external-link:hover {
    background: #0f172a;
    color: #ffffff;
    transform: scale(1.1);
}

/* Portfolio Lightbox */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.portfolio-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.portfolio-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.portfolio-lightbox.is-open .portfolio-lightbox-content {
    transform: scale(1);
}

.portfolio-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.portfolio-lightbox-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg);
}

.portfolio-lightbox-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.portfolio-lightbox-info {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
}

.portfolio-lightbox-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #0f172a;
}

.portfolio-lightbox-description {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #475569;
    opacity: 0.8;
}

/* Portfolio Lightbox Responsive */
@media (max-width: 768px) {
    .portfolio-lightbox {
        padding: 20px;
    }
    
    .portfolio-lightbox-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .portfolio-lightbox-image-wrapper {
        max-height: 60vh;
    }
    
    .portfolio-lightbox-image {
        max-height: 60vh;
    }
    
    .portfolio-lightbox-info {
        padding: 20px;
    }
    
    .portfolio-lightbox-title {
        font-size: 20px;
    }
    
    .portfolio-lightbox-description {
        font-size: 14px;
    }
    
    .portfolio-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .portfolio-external-link {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* Contact Page */
.contact-map {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.contact-map-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form-info {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.contact-form-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    padding: 0;
}

.contact-section-title {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.contact-section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 32px;
    opacity: 0.7;
}

.contact-form-notice {
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.contact-form-notice p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f3f4f6;
    border-radius: 50%;
    color: #6b7280;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color, #0f172a);
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.contact-info-value {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 8px;
    opacity: 0.7;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.contact-info-value:last-child {
    margin-bottom: 0;
}

.contact-info-value:hover {
    opacity: 1;
}

/* Contact Form 7 - Tailwind CSS Override */
.contact-form-7-wrapper .wpcf7-form input[type="text"],
.contact-form-7-wrapper .wpcf7-form input[type="email"],
.contact-form-7-wrapper .wpcf7-form input[type="tel"],
.contact-form-7-wrapper .wpcf7-form input[type="url"],
.contact-form-7-wrapper .wpcf7-form input[type="number"],
.contact-form-7-wrapper .wpcf7-form input[type="date"],
.contact-form-7-wrapper .wpcf7-form input[type="time"],
.contact-form-7-wrapper .wpcf7-form select,
.contact-form-7-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form-7-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="url"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="number"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="date"]:focus,
.contact-form-7-wrapper .wpcf7-form input[type="time"]:focus,
.contact-form-7-wrapper .wpcf7-form select:focus,
.contact-form-7-wrapper .wpcf7-form textarea:focus {
    border-color: #0f172a;
}

.contact-form-7-wrapper .wpcf7-form textarea {
    padding-top: 12px;
    min-height: 150px;
    resize: vertical;
}

.contact-form-7-wrapper .wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
}

/* Contact Form Submit Button */
.contact-submit-btn {
    width: 100% !important;
    padding: 12px 24px !important;
    margin-top: 24px !important;
    background: var(--primary-color, #3b82f6) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    outline: none !important;
}

.contact-submit-btn:hover {
    background: #2563eb !important;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-submit {
    width: 100% !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    background-color: var(--primary-color, #3b82f6) !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
    letter-spacing: 0.5px !important;
    margin-top: 24px !important;
    text-transform: uppercase !important;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-submit:hover {
    background-color: #2563eb !important;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: 16px;
}

.contact-form-7-wrapper .wpcf7-form p {
    margin-bottom: 0;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-mail-sent-ok {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-mail-sent-ng,
.contact-form-7-wrapper .wpcf7-form .wpcf7-aborted {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-spam {
    background-color: #fef3c7;
    border: 1px solid #fde047;
    color: #92400e;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-validation-errors,
.contact-form-7-wrapper .wpcf7-form .wpcf7-acceptance-missing {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.contact-form-7-wrapper .wpcf7-form .wpcf7-not-valid {
    border-color: #dc2626 !important;
}

/* Contact Page - New design: CF7 submit button gradient (theme consistency) */
.contact-page .contact-form-7-wrapper .wpcf7-form .wpcf7-submit {
    background: linear-gradient(to right, #4999B2, #58B8D5) !important;
    border-radius: 0.5rem !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
}
.contact-page .contact-form-7-wrapper .wpcf7-form .wpcf7-submit:hover {
    opacity: 0.9 !important;
}

/* Gallery Grid */
.gallery-grid-section {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 0;
    aspect-ratio: 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: #ffffff;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.gallery-item-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.gallery-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-content {
    transform: scale(1);
}

.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.gallery-lightbox-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg);
}

.gallery-lightbox-image-wrapper {
    width: 100%;
    max-height: 75vh;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-lightbox-info {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
}

.gallery-lightbox-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #0f172a;
    text-align: center;
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-grid-section {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .gallery-overlay-content {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .gallery-item-title {
        font-size: 14px;
    }
    
    .gallery-lightbox {
        padding: 20px;
    }
    
    .gallery-lightbox-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .gallery-lightbox-image-wrapper {
        max-height: 70vh;
    }
    
    .gallery-lightbox-image {
        max-height: 70vh;
    }
    
    .gallery-lightbox-info {
        padding: 16px 20px;
    }
    
    .gallery-lightbox-title {
        font-size: 18px;
    }
    
    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.faq-container {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-details {
    overflow: hidden;
}

.faq-details summary {
    list-style: none;
    cursor: pointer;
}

.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #ffffff;
    transition: background-color 0.3s ease;
    position: relative;
    min-height: 60px;
}

.faq-details[open] .faq-question {
    background: var(--primary-color, #0f172a);
    color: #ffffff;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.5;
    padding-right: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-details[open] .faq-question-text {
    color: #ffffff;
}

.faq-toggle-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: none;
    background: #f3f4f6;
    color: #0f172a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.faq-details[open] .faq-toggle-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.faq-toggle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    line-height: 1;
}

.faq-toggle-plus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-details[open] .faq-toggle-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-details[open] .faq-toggle-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #ffffff;
}

.faq-details[open] .faq-answer {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 20px 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.faq-answer-content p {
    margin: 0 0 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .faq-question {
        padding: 16px 20px;
        min-height: 56px;
    }
    
    .faq-question-text {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .faq-toggle-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .faq-toggle-icon {
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 100%;
}

.pricing-item {
    padding: 32px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.pricing-featured {
    border: 2px solid var(--primary-color, #0f172a);
    background: #ffffff;
}

.pricing-featured:hover {
    border-color: var(--primary-color, #0f172a);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #0f172a);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.pricing-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    text-align: center;
}

.pricing-price {
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-amount {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 16px;
    opacity: 0.6;
    margin-left: 6px;
    font-weight: 400;
}

.pricing-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    opacity: 0.7;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-feature {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-feature i {
    color: var(--primary-color, #0f172a);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-feature span {
    flex: 1;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--primary-color, #0f172a);
    background: var(--primary-color, #0f172a);
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-top: auto;
}

.pricing-button:hover {
    background: transparent;
    color: var(--primary-color, #0f172a);
}

.pricing-featured .pricing-button {
    background: var(--primary-color, #0f172a);
    color: #ffffff;
}

.pricing-featured .pricing-button:hover {
    background: transparent;
    color: var(--primary-color, #0f172a);
    border-color: var(--primary-color, #0f172a);
}

/* Video Gallery */
.video-gallery-section {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1e293b;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    font-size: 48px;
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-item:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-play-button i {
    margin-left: 4px;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.video-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.is-open {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.is-open .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.video-modal-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg);
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Gallery Responsive */
@media (max-width: 768px) {
    .video-gallery-section {
        padding: 40px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-play-button {
        width: 64px;
        height: 64px;
        font-size: 20px;
    }
    
    .video-info {
        padding: 16px;
    }
    
    .video-title {
        font-size: 16px;
    }
    
    .video-description {
        font-size: 13px;
    }
    
    .video-modal {
        padding: 20px;
    }
    
    .video-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .video-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}



.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* WooCommerce Styles */
:root {
    --woocommerce-primary: var(--primary-color, #3b82f6);
}

.woocommerce {
    width: 100%;
}

/* WooCommerce Sections - Full Width */
.woocommerce-shop-section,
.woocommerce-single-product-section,
.woocommerce-cart-section,
.woocommerce-checkout-section {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.woocommerce-shop-section .woocommerce-products-header {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-shop-section .woocommerce-products-header__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.woocommerce-shop-section .woocommerce-result-count,
.woocommerce-shop-section .woocommerce-ordering {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-shop-section {
    width: 100%;
    padding: 60px 0;
}

.woocommerce-shop-section .woocommerce-pagination {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 40px;
}

.woocommerce-single-product-section .product {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


.woocommerce-cart-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.woocommerce-checkout-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}


/* Product Grid */
.woocommerce-shop-section ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0 40px;
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.woocommerce-shop-section ul.products li {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

ul.products li.product {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

ul.products li.product:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    flex-shrink: 0;
    min-width: 0;
}

ul.products li.product img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    max-width: 100%;
    object-fit: cover;
}

ul.products li.product:hover img {
    transform: scale(1.05);
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 16px 20px 8px;
    color: #0f172a;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

ul.products li.product .price {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    margin: 0 20px 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

ul.products li.product .price del {
    color: #94a3b8;
    font-size: 16px;
    margin-right: 0;
    text-decoration: line-through;
}

ul.products li.product .price ins {
    text-decoration: none;
    color: #0f172a;
    background: #fef3c7;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

ul.products li.product .button {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

ul.products li.product .button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

ul.products li.product .star-rating {
    margin: 0 20px 12px;
    font-size: 14px;
}

ul.products li.product .woocommerce-loop-product__title:hover {
    color: var(--primary-color);
}

/* Sale Badge for Product Cards */
ul.products li.product .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color, #3b82f6);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 0;
    white-space: nowrap;
}

/* Single Product */
.woocommerce-single-product-section .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.woocommerce-single-product-section .woocommerce-product-gallery {
    order: 1;
}

.woocommerce-single-product-section .summary {
    order: 2;
}

.woocommerce-single-product-section .woocommerce-product-gallery {
    position: relative;
}

.woocommerce-single-product-section .woocommerce-product-gallery__wrapper {
    margin-bottom: 20px;
}

.woocommerce-single-product-section .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

.woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs li {
    margin: 0;
    cursor: pointer;
    aspect-ratio: 1;
    overflow: hidden;
}

.woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: #0f172a;
}

.woocommerce-single-product-section .summary {
    padding-right: 40px;
}

.woocommerce-single-product-section .product_title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.woocommerce-single-product-section .price {
    font-size: 28px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 24px;
}

.woocommerce-single-product-section .price del {
    color: #94a3b8;
    font-size: 20px;
    margin-right: 12px;
}

.woocommerce-single-product-section .price ins {
    text-decoration: none;
    color: #0f172a;
}

.woocommerce-single-product-section .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #475569;
}

.woocommerce-single-product-section .cart {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.woocommerce-single-product-section .quantity {
    margin-right: 0;
}

.woocommerce-single-product-section .quantity input {
    width: 80px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    text-align: center;
    font-size: 16px;
}

.woocommerce-single-product-section .single_add_to_cart_button {
    padding: 14px 32px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-single-product-section .single_add_to_cart_button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.woocommerce-single-product-section .product_meta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #64748b;
}

.woocommerce-single-product-section .product_meta span {
    display: block;
    margin-bottom: 8px;
}

.woocommerce-single-product-section .product_meta a {
    color: #0f172a;
    text-decoration: none;
}

.woocommerce-single-product-section .product_meta a:hover {
    color: var(--woocommerce-primary);
}

/* Sale Badge */
.woocommerce-single-product-section .onsale {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: var(--woocommerce-primary);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.woocommerce-single-product-section .woocommerce-product-gallery {
    position: relative;
}

/* Product Tabs */
.woocommerce-single-product-section .woocommerce-tabs {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce-tabs ul.tabs {
    gap: 8px;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 16px 24px;
    color: #64748b;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--woocommerce-primary);
    border-bottom-color: var(--woocommerce-primary);
}

.woocommerce-tabs .panel {
    padding: 0;
    margin-top: 24px;
}

.woocommerce-tabs .panel h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.woocommerce-tabs .panel p {
    margin-bottom: 16px;
    line-height: 1.7;
}

/* WooCommerce Reviews */
.woocommerce-Reviews {
    margin-top: 40px;
}

.woocommerce-Reviews-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

#reviews #comments {
    margin-bottom: 40px;
}

#reviews .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

#reviews .commentlist li {
    margin: 0 0 30px;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 30px;
}

#reviews .commentlist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#reviews .comment_container {
    display: flex;
    gap: 20px;
}

#reviews .comment_container .avatar {
    width: 60px;
    height: 60px;
    border-radius: 0;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

#reviews .comment-text {
    flex: 1;
}

#reviews .meta {
    margin-bottom: 12px;
}

#reviews .meta .woocommerce-review__author {
    font-weight: 600;
    color: #0f172a;
    font-size: 16px;
    margin-right: 12px;
}

#reviews .meta .woocommerce-review__dash {
    display: none;
}

#reviews .meta .woocommerce-review__published-date {
    color: #64748b;
    font-size: 14px;
}

#reviews .description {
    color: #475569;
    line-height: 1.7;
    margin-top: 12px;
}

#reviews .star-rating {
    margin-bottom: 8px;
}

#reviews .star-rating::before {
    color: #cbd5e1;
}

#reviews .star-rating span::before {
    color: #fbbf24;
}

/* Review Form */
#review_form {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

#review_form #respond {
    margin: 0;
}

#review_form .comment-reply-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

#review_form .comment-form-rating {
    margin-bottom: 24px;
}

#review_form .comment-form-rating label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 14px;
}

#review_form .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

#review_form .stars a {
    color: #cbd5e1;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

#review_form .stars a:hover,
#review_form .stars a.active {
    color: #fbbf24;
}

#review_form .comment-form-comment label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 14px;
}

#review_form .comment-form-comment textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

#review_form .comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--woocommerce-primary);
}

#review_form .comment-form-author label,
#review_form .comment-form-email label {
    display: block;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 14px;
}

#review_form .comment-form-author input,
#review_form .comment-form-email input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#review_form .comment-form-author input:focus,
#review_form .comment-form-email input:focus {
    outline: none;
    border-color: var(--woocommerce-primary);
}

#review_form .comment-form-author,
#review_form .comment-form-email {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    #review_form .comment-form-author,
    #review_form .comment-form-email {
        display: inline-block;
        width: calc(50% - 12px);
        vertical-align: top;
    }
    
    #review_form .comment-form-author {
        margin-right: 24px;
    }
}

#review_form .form-submit {
    margin-top: 24px;
}

#review_form .form-submit input[type="submit"] {
    padding: 14px 32px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#review_form .form-submit input[type="submit"]:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Cart Page */
.woocommerce-cart-section table.cart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.woocommerce-cart-section table.cart thead th {
    padding: 16px;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #e5e7eb;
    color: #0f172a;
}

.woocommerce-cart-section table.cart tbody td {
    padding: 20px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.woocommerce-cart-section table.cart .product-remove a {
    color: #ef4444;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-cart-section table.cart .product-remove a:hover {
    color: #dc2626;
}

.woocommerce-cart-section table.cart .product-thumbnail img {
    width: 80px;
    height: auto;
}

.woocommerce-cart-section table.cart .product-name a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-cart-section table.cart .product-name a:hover {
    color: var(--woocommerce-primary);
}

.woocommerce-cart-section .cart-collaterals {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.woocommerce-cart-section .cart_totals {
    background: #f8fafc;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.woocommerce-cart-section .cart_totals h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.woocommerce-cart-section .cart_totals table {
    width: 100%;
    margin-bottom: 24px;
}

.woocommerce-cart-section .cart_totals table th,
.woocommerce-cart-section .cart_totals table td {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.woocommerce-cart-section .cart_totals table .order-total th,
.woocommerce-cart-section .cart_totals table .order-total td {
    font-weight: 600;
    font-size: 18px;
    border-bottom: none;
}

.woocommerce-cart-section .wc-proceed-to-checkout {
    margin-top: 24px;
}

.woocommerce-cart-section .checkout-button {
    width: 100%;
    padding: 16px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.woocommerce-cart-section .checkout-button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Checkout Page */
.woocommerce-checkout-section form.checkout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.woocommerce-checkout-section .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.woocommerce-checkout-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.woocommerce-checkout-section .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout-section .form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0f172a;
}

.woocommerce-checkout-section .form-row .required {
    color: #ef4444;
}

.woocommerce-checkout-section .form-row input,
.woocommerce-checkout-section .form-row select,
.woocommerce-checkout-section .form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.woocommerce-checkout-section .form-row input:focus,
.woocommerce-checkout-section .form-row select:focus,
.woocommerce-checkout-section .form-row textarea:focus {
    outline: none;
    border-color: #0f172a;
}

.woocommerce-checkout-section #order_review {
    background: #f8fafc;
    padding: 30px;
    border: 1px solid #e5e7eb;
    margin-top: 40px;
}

.woocommerce-checkout-section #order_review_heading {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.woocommerce-checkout-section .shop_table {
    width: 100%;
    margin-bottom: 24px;
}

.woocommerce-checkout-section .shop_table th,
.woocommerce-checkout-section .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.woocommerce-checkout-section .shop_table .order-total th,
.woocommerce-checkout-section .shop_table .order-total td {
    font-weight: 600;
    font-size: 18px;
    border-bottom: none;
}

.woocommerce-checkout-section #place_order {
    width: 100%;
    padding: 16px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-checkout-section #place_order:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* WooCommerce Notices */
.woocommerce-notices-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    width: 100%;
    margin: 24px 0;
    padding: 20px 40px;
    border: 1px solid #e5e7eb !important;
    background: #ffffff !important;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-message {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e5e7eb !important;
}

.woocommerce-message::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--woocommerce-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.woocommerce-info {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e5e7eb !important;
}

.woocommerce-info::before {
    content: "\f05a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--woocommerce-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.woocommerce-error {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e5e7eb !important;
}

.woocommerce-error::before {
    content: "\f06a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ef4444;
    font-size: 18px;
    flex-shrink: 0;
}

.woocommerce-error li {
    list-style: none;
    margin: 0;
}

.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button {
    margin-left: auto;
    padding: 10px 20px;
    background: var(--woocommerce-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    color: var(--woocommerce-primary);
    text-decoration: none;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover,
.woocommerce-error a:hover {
    text-decoration: underline;
}

/* WooCommerce Responsive */
@media (max-width: 1024px) {
    .woocommerce-shop-section ul.products {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .woocommerce-shop-section .woocommerce-products-header,
    .woocommerce-shop-section .woocommerce-result-count,
    .woocommerce-shop-section .woocommerce-ordering,
    .woocommerce-shop-section .woocommerce-pagination,
    .woocommerce-single-product-section .product,
    .woocommerce-single-product-section .woocommerce-tabs {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .woocommerce-single-product-section .product {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .woocommerce-single-product-section .summary {
        padding-right: 0;
    }
    
    .woocommerce-checkout-section {
        padding: 40px 24px;
    }
    
    .woocommerce-checkout-section form.checkout {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-checkout-section .col2-set {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-cart-section .cart-collaterals {
        grid-template-columns: 1fr;
    }
    
    .woocommerce-cart-section {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .woocommerce-shop-section ul.products {
        padding-left: 20px;
        padding-right: 20px;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    ul.products li.product {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .woocommerce-shop-section .woocommerce-products-header,
    .woocommerce-shop-section .woocommerce-result-count,
    .woocommerce-shop-section .woocommerce-ordering,
    .woocommerce-shop-section .woocommerce-pagination,
    .woocommerce-single-product-section .product,
    .woocommerce-single-product-section .woocommerce-tabs {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .woocommerce-products-header__title {
        font-size: 28px;
    }
    
    .woocommerce-single-product-section .product_title {
        font-size: 28px;
    }
    
    .woocommerce-single-product-section .woocommerce-product-gallery .flex-control-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .woocommerce-single-product-section .cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .woocommerce-single-product-section .quantity {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .woocommerce-single-product-section .quantity input {
        width: 100%;
    }
    
    .woocommerce-single-product-section .single_add_to_cart_button {
        width: 100%;
    }
    
    .woocommerce-single-product-section .woocommerce-tabs ul.tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .woocommerce-single-product-section .woocommerce-tabs ul.tabs li {
        margin-right: 0;
    }
    
    .woocommerce-single-product-section .woocommerce-tabs ul.tabs li a {
        border-bottom: 1px solid #e5e7eb;
        border-left: 2px solid transparent;
    }
    
    .woocommerce-single-product-section .woocommerce-tabs ul.tabs li.active a,
    .woocommerce-single-product-section .woocommerce-tabs ul.tabs li a:hover {
        border-left-color: var(--woocommerce-primary);
        border-bottom-color: #e5e7eb;
    }
    
    #reviews .comment_container {
        flex-direction: column;
    }
    
    #reviews .comment_container .avatar {
        width: 50px;
        height: 50px;
    }
    
    .woocommerce-notices-wrapper {
        padding: 0 24px;
    }
    
    .woocommerce-notices-wrapper {
        padding: 0 20px;
    }
    
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
    }
    
    .woocommerce-message a.button,
    .woocommerce-info a.button,
    .woocommerce-error a.button {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        text-align: center;
    }
    
    .woocommerce-cart-section {
        padding: 40px 20px;
    }
    
    .woocommerce-cart-section table.cart {
        font-size: 14px;
    }
    
    .woocommerce-cart-section table.cart .product-thumbnail img {
        width: 60px;
    }
    
    .woocommerce-cart-section .cart_totals {
        padding: 20px;
    }
    
    .woocommerce-checkout-section {
        padding: 40px 20px;
    }
}

/* Certificates Section */
.certificates-section {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.certificate-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.certificate-item a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.certificate-image-wrapper {
    width: 100%;
    background: #f8fafc;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.certificate-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.certificate-item:hover .certificate-image-wrapper img {
    transform: scale(1.03);
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    color: #ffffff;
    font-size: 36px;
}

.certificate-info {
    padding: 20px;
    text-align: center;
}

.certificate-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.certificate-meta {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.certificate-org,
.certificate-date {
    display: block;
}

/* Certificate Lightbox */
.certificate-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.certificate-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.certificate-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.certificate-lightbox.is-open .certificate-lightbox-content {
    transform: scale(1);
}

.certificate-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.certificate-lightbox-close:hover {
    background: #0f172a;
    color: #ffffff;
    transform: rotate(90deg);
}

.certificate-lightbox-image-wrapper {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.certificate-lightbox-info {
    padding: 20px 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.certificate-lightbox-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 16px;
    color: #0f172a;
}

.certificate-lightbox-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.certificate-lightbox-link:hover {
    color: #2563eb;
    gap: 12px;
}

.certificate-lightbox-link i {
    font-size: 12px;
}

/* Certificates Responsive */
@media (max-width: 768px) {
    .certificates-section {
        padding: 40px 0;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certificate-image-wrapper {
        padding: 40px 20px;
    }
    
    .certificate-overlay i {
        font-size: 28px;
    }
    
    .certificate-info {
        padding: 16px;
    }
    
    .certificate-title {
        font-size: 16px;
    }
    
    .certificate-meta {
        font-size: 12px;
    }
    
    .certificate-lightbox {
        padding: 20px;
    }
    
    .certificate-lightbox-content {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .certificate-lightbox-image-wrapper {
        max-height: 65vh;
    }
    
    .certificate-lightbox-image {
        max-height: 65vh;
    }
    
    .certificate-lightbox-info {
        padding: 16px 20px;
    }
    
    .certificate-lightbox-title {
        font-size: 18px;
    }
    
    .certificate-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.testimonial-item {
    padding: 32px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating .star-filled {
    color: #fbbf24;
}

.testimonial-rating .star-empty {
    color: #e5e7eb;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 32px;
    font-style: italic;
    opacity: 0.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.testimonial-meta {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.6;
}

/* Career Section */
.career-intro {
    width: 100%;
    padding: 60px 0 40px;
    border-top: 1px solid #e5e7eb;
}

.career-intro-text {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    width: 100%;
    opacity: 0.8;
}

.career-benefits {
    width: 100%;
    padding: 40px 0 60px;
    border-top: 1px solid #e5e7eb;
}

.career-section-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 40px;
    letter-spacing: -0.01em;
    text-align: left;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.career-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.career-benefit:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.career-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 0;
    color: #0f172a;
    font-size: 18px;
    flex-shrink: 0;
}

.career-benefit-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.career-jobs {
    width: 100%;
    padding: 40px 0 60px;
    border-top: 1px solid #e5e7eb;
}

.career-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
}

.career-job {
    padding: 24px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.career-job:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.career-job-header {
    margin-bottom: 12px;
}

.career-job-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.career-job-meta {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
    opacity: 0.7;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.career-job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.career-job-meta-item i {
    font-size: 12px;
    opacity: 0.8;
}

.career-job-description {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 0 24px;
    }
    
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .page-content,
    .services-grid,
    .team-grid {
        padding: 60px 0;
    }
    
    .team-photo {
        width: 160px;
        height: 160px;
    }
    
    .services-grid,
    .team-grid,
    .portfolio-grid,
    .gallery-grid,
    .video-grid,
    .certificates-grid,
    .testimonials-grid,
    .pricing-grid,
    .career-intro {
        padding: 40px 0 30px;
    }
    
    .career-benefits {
        padding: 30px 0 40px;
    }
    
    .career-jobs {
        padding: 30px 0 40px;
    }
    
    .career-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .career-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .career-benefit {
        padding: 16px;
        gap: 12px;
    }
    
    .career-benefit-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    
    .career-benefit-text {
        font-size: 14px;
    }
    
    .career-jobs-list {
        gap: 12px;
    }
    
    .career-job {
        padding: 20px;
    }
    
    .career-job-title {
        font-size: 18px;
    }
    
    .career-job-meta {
        gap: 12px;
        font-size: 12px;
    }
    
    .career-job-description {
        font-size: 13px;
    }
    
    .testimonial-item {
        padding: 24px;
    }
    
    .contact-form-info-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .contact-info-item {
        gap: 16px;
    }

    .contact-map-wrapper {
        height: 400px;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-item {
        padding: 24px;
    }
    
    .pricing-name {
        font-size: 22px;
    }
    
    .pricing-amount {
        font-size: 36px;
    }
    
    .pricing-period {
        font-size: 14px;
    }
    
    .pricing-description {
        font-size: 14px;
    }
    
    .pricing-feature {
        font-size: 13px;
    }
    
    .pricing-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .career-jobs-list {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-wrapper {
        padding: 0 20px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .post-navigation,
    .comments-area,
    #back-to-top {
        display: none !important;
    }
    
    .site-main {
        width: 100% !important;
        padding: 0 !important;
    }
}

/* --------------------------------------------------------------
 * Front page: hero CTA notch + services/before-after/video sliders
 * (ported from reference static template)
 * -------------------------------------------------------------- */

.cta-notch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 10px 10px 0 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cta-notch::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 10px 0 #ffffff;
    z-index: 1;
}

.cta-notch::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-bottom-left-radius: 20px;
    box-shadow: -10px 10px 0 #ffffff;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background-color: #5aaec4;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #4890a4;
}

.services-swiper {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 80px;
}

.services-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 180px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    transform-origin: center center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .services-swiper .swiper-slide {
        width: 260px;
        height: 340px;
    }
}

.services-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.services-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: #334155;
}

.services-swiper-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.beforeafter-swiper .swiper {
    width: 100%;
    padding-bottom: 60px;
}

.beforeafter-swiper .swiper-slide {
    width: 320px;
    height: auto;
}

.beforeafter-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
}

.beforeafter-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #334155;
}

.beforeafter-swiper .swiper-slide {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-swiper .swiper {
    width: 100%;
    padding-bottom: 60px;
}

.video-swiper .swiper-slide {
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
}

.video-swiper .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #334155;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-swiper .swiper-slide:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ffffff;
}

/* ==========================================================================
   Hero Contact Form
   ========================================================================== */
.hero-contact-input,
.hero-contact-textarea,
.hero-contact-phone,
.hero-contact-btn {
	min-height: 2.75rem;
}
@media (min-width: 1024px) {
	.hero-contact-input,
	.hero-contact-textarea,
	.hero-contact-phone,
	.hero-contact-btn {
		min-height: 3rem;
	}
}
.hero-contact-phone {
	display: flex;
	align-items: stretch;
}
.hero-contact-phone-input {
	border: none !important;
	box-shadow: none !important;
}
.hero-contact-phone-input:focus {
	outline: none !important;
}
/* Yazı rengi - value ve placeholder saf beyaz */
.hero-contact-form .hero-contact-input,
.hero-contact-form .hero-contact-textarea,
.hero-contact-form .hero-contact-phone-input {
	color: #ffffff !important;
}
.hero-contact-form .hero-contact-input::placeholder,
.hero-contact-form .hero-contact-textarea::placeholder,
.hero-contact-form .hero-contact-phone-input::placeholder {
	color: #ffffff !important;
	opacity: 1;
}
.hero-contact-form .hero-contact-phone span {
	color: #ffffff !important;
}

/* ==========================================================================
   Inner Page Header - Logo siyah (diğer sayfa header'larında)
   ========================================================================== */
.hero-header-inner .hero-header-inner-logo {
	filter: brightness(0) saturate(100%);
}
.hero-header-inner .hero-header-inner-logo:hover {
	opacity: 0.85;
}

/* Inner header: front page ile aynı boşluklar, border */
.hero-header-inner header#masthead {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255, 255, 255, 0.3);
}
/* Açık arka plan (beyaz/açık) kullanıldığında border görünür olsun */
.hero-header-inner[style*="background-color: #fff"] header#masthead,
.hero-header-inner[style*="background-color: #ffffff"] header#masthead,
.hero-header-inner[style*="background-color:rgb(255, 255, 255)"] header#masthead {
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Button Colors - Referans Template Renkleri
   ========================================================================== */

/* Button Gradient Colors */
.from-buttonFrom {
    --tw-gradient-from: #4999B2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 153, 178, 0));
}

.to-buttonTo {
    --tw-gradient-to: #58B8D5;
}

.bg-gradient-to-r.from-buttonFrom.to-buttonTo {
    background-image: linear-gradient(to right, #4999B2, #58B8D5);
}

/* Primary Background Color */
.bg-primary {
    background-color: #0A1022 !important;
}

/* ==========================================================================
   FAQ Accordion - Referans Template Yapısı
   ========================================================================== */

.faq-item-wrapper {
    position: relative;
}

.faq-item-wrapper .faq-item {
    cursor: pointer;
    border: none;
    outline: none;
}

.faq-item-wrapper .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item-wrapper .faq-answer.hidden {
    display: none;
}

.faq-item-wrapper .faq-answer:not(.hidden) {
    display: block;
    max-height: 1000px;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.faq-item-wrapper .faq-icon {
    transition: transform 0.3s ease;
    user-select: none;
}

/* ==========================================================================
   Hero Section - 1023px-1700px Arası Düzenlemeler
   Header ve Form Çakışma Sorunu Çözümü
   ========================================================================== */

/* 1023px ile 1700px arası ekran boyutları için özel düzenlemeler */
@media screen and (min-width: 1023px) and (max-width: 1700px) {
	/* Hero section içindeki header - daha kompakt yap */
	section.relative header#mastheads {
		top: 20px !important;
		padding-bottom: 1rem !important;
	}
	
	/* Header sağ tarafındaki içeriği daha kompakt yap */
	section.relative header#mastheads > div.hidden.lg\:flex {
		gap: 0.75rem !important;
	}
	
	/* Header içindeki iletişim bilgileri - daha küçük font ve gap */
	section.relative header#mastheads .flex.items-center.gap-6 {
		gap: 0.75rem !important;
		font-size: 0.875rem !important;
	}
	
	/* Header içindeki menü - daha küçük font */
	section.relative header#mastheads nav {
		font-size: 1rem !important;
		gap: 1rem !important;
	}
	
	/* CTA Button - daha küçük padding */
	section.relative header#mastheads a[class*="bg-gradient-to-r"] {
		padding: 0.5rem 1rem !important;
		font-size: 0.875rem !important;
	}
	
	/* Form container - header'dan sonra başlasın ve daha sağda olsun */
	section.relative > div.relative.lg\:absolute {
		top: auto !important;
		bottom: 120px !important;
		right: 60px !important;
		transform: none !important;
		max-width: 450px !important;
	}
	
	/* Form başlığı - daha küçük */
	section.relative > div.relative.lg\:absolute h2 {
		font-size: 1.75rem !important;
		margin-bottom: 1rem !important;
	}
	
	/* Form container padding - daha küçük */
	section.relative > div.relative.lg\:absolute > div.rounded-lg {
		padding: 1.5rem !important;
	}
}

/* 1400px-1700px arası için daha fazla ayarlama */
@media screen and (min-width: 1400px) and (max-width: 1700px) {
	/* Form'u biraz daha sağa al */
	section.relative > div.relative.lg\:absolute {
		right: 80px !important;
		max-width: 480px !important;
	}
}

/* 1023px-1200px arası için ekstra kompakt düzenleme */
@media screen and (min-width: 1023px) and (max-width: 1200px) {
	/* Header içeriği daha da kompakt */
	section.relative header#mastheads .flex.items-center.gap-6 {
		font-size: 0.75rem !important;
		gap: 0.5rem !important;
	}
	
	/* Form'u daha aşağıya al */
	section.relative > div.relative.lg\:absolute {
		bottom: 100px !important;
		right: 40px !important;
		max-width: 400px !important;
	}
	
	/* Form başlığı daha küçük */
	section.relative > div.relative.lg\:absolute h2 {
		font-size: 1.5rem !important;
	}
}
