:root {
    --primary: #1995ad;
    --primary-light: #5bc1d7;
    --primary-dark: #0d6e7f;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark: #212529;
    --success: #28a745;
    --white: #ffffff;
}

/* WHMCS Header için Özel Düzenleme */
#header, 
#header *:not(.container):not(.btn-01) {
    margin: initial;
    padding: initial;
    font-family: inherit;
    box-sizing: border-box;
}

#header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#header .nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

#header .nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

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

/* Genel Stiller */
body {
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-01 {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-01:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Pricing Section */
.section-gap {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header h2 span {
    color: var(--primary);
    position: relative;
}

.section-header h2 span.b-line:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.plan-policy {
    background-color: rgba(25, 149, 173, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.plan-policy .icon {
    margin-right: 15px;
}

.plan-policy p {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.nav-item-tabs {
    display: flex;
    justify-content: center;
    background-color: var(--light-gray);
    padding: 5px;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.nav-links {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 6px;
}

.nav-links.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Plan Cards */
.plan-style-one {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--light-gray);
    position: relative;
}

.plan-style-one:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(25, 149, 173, 0.1);
    border-color: var(--primary-light);
}

.plan-style-one h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.plan-style-one .icon {
    margin-bottom: 20px;
}

.plan-style-one .icon img {
    width: 50px;
    height: 50px;
}

.plan-style-one label {
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 10px;
    display: block;
}

.plan-style-one .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.plan-style-one .price sup {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
}

.plan-style-one .btn-01 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.plan-style-one .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-style-one .list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.plan-style-one .list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    margin-right: 10px;
}

/* Features Section */
.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(25, 149, 173, 0.1);
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(25, 149, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Management Features */
.feature-style-ten {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-style-ten .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(25, 149, 173, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 1.3rem;
}

.feature-style-ten .content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-style-ten .content p {
    color: var(--gray);
}

/* Deployment Section */
.bor-radius {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-item-tabs {
        flex-direction: column;
        max-width: 300px;
    }
    
    .nav-links {
        width: 100%;
    }
    
    #header .container {
        flex-direction: column;
    }
    
    #header .nav {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    #header .nav {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
	
	
    #header .nav {
        flex-direction: column;
        gap: 5px;
    }
}