:root {
    /* Primary Colors */
    --primary-color: #2d9670;
    --primary-hover: #258a5f;
    --primary-light: rgba(45, 150, 112, 0.1);
    --primary-shadow: rgba(45, 150, 112, 0.3);
    --primary-border: rgba(45, 150, 112, 0.2);
    
    /* Secondary Colors */
    --secondary-color: #00364c;
    --secondary-light: rgba(0, 54, 76, 0.1);
    --secondary-border: rgba(0, 54, 76, 0.3);
    
    /* Text Colors */
    --text-primary: #2c2c2c;
    --text-secondary: #666;
    --text-light: #999;
    --text-dark: #555;
    --text-white: white;
    --text-white-transparent: rgba(255, 255, 255, 0.8);
    --text-white-light: rgba(255, 255, 255, 0.6);
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #e9ecef;
    --bg-border: #f0f0f0;
    --bg-dark: #1a1a1a;
    --bg-dark-alt: #2a2a2a;
    
    /* Gradient Backgrounds */
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-primary: linear-gradient(90deg, #2d9670, #258a5f);
    
    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-heavy: rgba(0, 0, 0, 0.1);
    --shadow-darker: rgba(0, 0, 0, 0.15);
    --shadow-darkest: rgba(0, 0, 0, 0.3);
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.05);
    --border-medium: #e9ecef;
    --border-header: rgba(0, 54, 76, 0.1);
    --border-white: rgba(255, 255, 255, 0.1);
    --border-white-medium: rgba(255, 255, 255, 0.4);
    --border-white-heavy: rgba(255, 255, 255, 0.6);
    --border-white-strong: rgba(255, 255, 255, 0.8);
    
    /* Header Colors */
    --header-bg: rgba(255, 255, 255, 0.95);
    --header-scrolled: rgba(45, 150, 112, 0.98);
    --header-shadow: rgba(0, 0, 0, 0.08);
    --header-shadow-scrolled: rgba(0, 0, 0, 0.15);
    
    /* Pattern Colors */
    --pattern-light: rgba(0, 54, 76, 0.03);
    --pattern-dots: rgba(87, 177, 190, 0.05);
    
    /* Additional colors found in CSS */
    --shadow-black: rgba(0, 0, 0, 0.5);
    --transparent: transparent;
    --black: #000;
    --white: #fff;
    --text-blue-light: rgba(87, 177, 190, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-white);
}

#paymentModal {
    display: none;
}

.header {
    background: var(--header-bg);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-header);
    box-shadow: 0 2px 20px var(--header-shadow);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: var(--header-scrolled) !important;
    box-shadow: 0 4px 20px var(--header-shadow-scrolled) !important;
}

.header.scrolled .nav-links a {
    color: var(--text-white) !important;
}

.header.scrolled .hamburger span {
    background: var(--text-white) !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--shadow-black);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: -5px 0 20px var(--shadow-heavy);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--bg-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--bg-border);
    color: var(--secondary-color);
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--transparent);
}

.mobile-nav-links a svg {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-light);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-nav-links a:hover svg,
.mobile-nav-links a.active svg {
    color: var(--primary-color);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
	margin-top:130px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    margin-bottom: 3rem;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--primary-shadow);
    cursor: pointer;
}

.btn-secondary {
    background: var(--transparent);
    color: var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--secondary-border);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 150, 112, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: rgba(0, 54, 76, 0.5);
    transform: translateY(-2px);
}

.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px var(--shadow-darkest);
    border: 1px solid var(--border-white);
}

.slider-container {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(var(--transparent), rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 3rem;
}

.slide-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.slide-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow-heavy);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    z-index: 15;
    margin: 0;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border-white-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-white-heavy);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--border-white-strong);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,54,76,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

/* Section Scroll Margin */
.section {
    padding: 8rem 3rem;
    scroll-margin-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.services-section {
    background: var(--bg-white);
    color: var(--secondary-color);
    position: relative;
    padding: 8rem 3rem;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="30" height="30"><circle cx="15" cy="15" r="1" fill="rgba(87,177,190,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.services-section .section-title {
    color: var(--secondary-color);
}

.services-section .section-title::after {
    background: var(--primary-color);
}

.services-section .section-subtitle {
    color: var(--text-secondary);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.category-tab {
    background: var(--bg-light);
    color: var(--text-secondary);
    border: 2px solid var(--border-medium);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-tab.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-shadow);
}

.category-tab:hover {
    background: var(--bg-lighter);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: all 0.4s ease;
}

.services-grid.loading {
    opacity: 0.5;
    transform: translateY(20px);
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    transition: all 0.4s ease;
    border: 1px solid var(--bg-border);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-darker);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.service-card-content {
    padding: 2rem 1.5rem;
    text-align: center;
    overflow: visible;
    position: relative;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.service-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-border);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    outline: none;
    font-family: 'Poppins';
    font-size: 13px;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.phone-wrapper {
    position: relative;
    margin-bottom: 1rem;
    z-index: 100;
}

.phone-input-row {
    display: flex;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
}

.phone-input-row:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.country-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--bg-light);
    border: none;
    border-right: 1px solid var(--border-medium);
    cursor: pointer;
    min-width: 90px;
    outline: none;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.country-btn:hover {
    background: var(--bg-lighter);
}

.country-flag {
    width: 18px !important;
    height: 14px !important;
    margin-right: 6px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.country-code {
    font-weight: 600;
    margin-right: 6px;
    color: var(--secondary-color);
}

.dropdown-icon {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.7rem;
}

.country-btn.open .dropdown-icon {
    transform: rotate(180deg);
}

.phone-number {
    flex: 1;
    border: none;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    outline: none;
    background: var(--transparent);
    color: var(--secondary-color);
}

.phone-number::placeholder {
    color: var(--text-light);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 200px;
    overflow: hidden;
    z-index: 999999;
    box-shadow: 0 10px 30px var(--shadow-darker);
    display: none;
}

.country-dropdown.show {
    display: block;
}

.search-box {
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 1px solid var(--border-medium);
    width: 100%;
    outline: none;
    font-size: 0.85rem;
    background: var(--bg-white);
    color: var(--secondary-color);
}

.search-box::placeholder {
    color: var(--text-light);
}

.countries-list {
    max-height: 150px;
    overflow-y: auto;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--bg-border);
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: var(--bg-light);
}

.country-option.selected {
    background: var(--primary-light);
    color: var(--primary-color);
}

.country-name {
    flex: 1;
    margin-left: 8px;
    font-weight: 500;
}

.country-dial {
    font-weight: 600;
    color: var(--text-secondary);
}

.service-card .btn-add-cart {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-card .btn-add-cart:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.news-section {
    background: var(--gradient-light);
    padding: 8rem 3rem;
    position: relative;
}

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

.news-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-darker);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.news-content {
    padding: 2.5rem 2rem 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-border);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

.news-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px var(--shadow-darkest);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-btn.primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.modal-btn.secondary {
    background: var(--bg-light);
    color: var(--secondary-color);
    border: 2px solid var(--border-medium);
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.modal-btn.primary:hover {
    background: var(--primary-hover);
}

.modal-btn.secondary:hover {
    background: var(--bg-lighter);
}

.bank-details-modal {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px var(--shadow-darkest);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.show .bank-details-modal {
    transform: scale(1);
}

.bank-info {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.bank-info h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.bank-detail span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.bank-detail span:last-child {
    color: var(--secondary-color);
    font-weight: 700;
}

.copy-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-hover);
}

.copy-btn:active {
    transform: scale(0.95);
}

.about-section {
    background: var(--gradient-light);
    padding: 8rem 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.feature-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.footer {
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 5rem 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.footer-section a {
    color: var(--text-white-transparent);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section p {
    color: var(--text-white-transparent);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-border);
    font-size: 1.2rem;
    color: var(--text-white-transparent);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-shadow);
    color: var(--text-white);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Category page specific styles */
.main-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10rem 3rem 3rem;
    min-height: 100vh;
	margin-top:130px;
}

.sidebar {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    border: 1px solid var(--bg-border);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--transparent);
}

.category-link:hover {
    background: var(--bg-lighter);
    color: var(--secondary-color);
    transform: translateX(5px);
}

.category-link.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-hover);
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--primary-shadow);
}

.content-area {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    border: 1px solid var(--bg-border);
}

.content-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.content-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    transition: all 0.4s ease;
    border: 1px solid var(--bg-border);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-darker);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.product-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.btn-order {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.btn-order:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: var(--text-white);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Main page specific styles */
.main {
    padding-top: 100px;
    min-height: 100vh;
}

.page-header {
    background: var(--gradient-light);
    padding: 6rem 3rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,54,76,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-section {
    padding: 6rem 3rem;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-info {
    background: var(--bg-white);
    max-width: 800px;
    width: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-hover);
}

/* Blog page specific styles */
.main-content {
    margin-top: 100px;
    padding: 4rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Bank accounts page specific styles */
.container.bank-accounts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    margin-top: 100px;
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.bank-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px var(--shadow-darker);
}

.bank-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-border);
}

.bank-logo {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--bg-lighter);
}

.bank-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

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

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: var(--bg-lighter);
    transform: translateX(5px);
}

.detail-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-value {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px var(--primary-shadow);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-weight: 400;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.product-info {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-heavy);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-white);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-white-light);
    font-size: 0.9rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.blog-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px var(--shadow-heavy);
}

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

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

.blog-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.blog-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

.blog-actions {
    text-align: center;
    margin-bottom: 4rem;
}

.btn-back {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px var(--primary-shadow);
}

.btn-back:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 150, 112, 0.4);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-darker);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.blog-content {
    padding: 2.5rem 2rem 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-border);
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.page-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-link {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--transparent);
    border-radius: 10px;
}

.page-link:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    border-color: var(--primary-border);
}

.page-item.pagination-active .page-link {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Desktop Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .nav {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        gap: 0.8rem;
    }
    
    .category-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .blog-title {
        font-size: 2.5rem;
    }
    
    .main-content {
        padding: 3rem 2rem;
    }
    
    .blog-content {
        padding: 2rem;
    }

    .main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

/* Tablet & Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .nav {
        padding: 0 1.5rem;
        /* Mobilde logo ortada olsun */
        justify-content: center;
        position: relative;
        min-height: 60px;
    }

    .logo {
        /* Logo mobilde tam ortada */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        /* Hamburger sağ üstte */
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero {
        padding: 100px 1.5rem 4rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
        scroll-margin-top: 70px;
    }
    
    .services-section {
        padding: 4rem 1.5rem;
    }

    .news-section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-section.about-page {
        padding: 4rem 1.5rem;
    }

    .content-area {
        padding: 2rem 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
    }

    .news-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }

    .page-header {
        padding: 4rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

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

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .main-container {
        padding: 1rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container.bank-accounts {
        padding: 2rem 1rem;
    }

    .banks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bank-card {
        padding: 2rem 1.5rem;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .detail-value {
        width: 100%;
        justify-content: space-between;
    }

    .main-content {
        padding: 3rem 1.5rem;
    }
    
    .main-content.blog-detail {
        padding: 2rem 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav {
        padding: 0 1rem;
        min-height: 55px;
    }

    .logo img {
        height: 45px;
    }

    .mobile-menu {
        width: 260px;
    }

    .hamburger {
        right: 1rem;
    }

    .hero {
        padding: 110px 1rem 3rem;
    }

    .section {
        padding: 3rem 1rem;
        scroll-margin-top: 75px;
    }
}: 1rem;
        text-align: left;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
    }

    .news-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-excerpt {
        font-size: 0.9rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }

    .page-header {
        padding: 4rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

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

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .main-container {
        padding: 1rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container.bank-accounts {
        padding: 2rem 1rem;
    }

    .banks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bank-card {
        padding: 2rem 1.5rem;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .detail-value {
        width: 100%;
        justify-content: space-between;
    }

    .main-content {
        padding: 3rem 1.5rem;
    }
    
    .main-content.blog-detail {
        padding: 2rem 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
}