.package-card{
    max-width:1400px;
    margin:auto;
    border-radius:12px;
    overflow:hidden;
    background:#f8fafc;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* ÜST BÖLÜM */

.package-top{
    display:flex;
    align-items:center;
}

.package-col{
    flex:1;
    text-align:center;
    padding:22px 15px;
    border-right:1px solid #e6edf3;
}

.package-col:last-child{
    border-right:none;
}

.plan-name{
    text-align:left;
}

.support-badge{
    display:inline-block;
    background:#dff5e8;
    color:#1c9d5b;
    padding:6px 14px;
    border-radius:6px;
    font-size:14px;
    margin-bottom:10px;
}

.plan-title{
    font-size:22px;
    font-weight:600;
    letter-spacing:0.2px;
}

.plan-sub{
    color:#7b8a9b;
    font-size:14px;
}

.spec-title{
    font-weight:700;
    font-size:15px;
    color:#2c4b68;
}

.spec-value{
    font-size:14px;
    color:#7c8da5;
}

/* ALT BÖLÜM */

.package-bottom{
    display:flex;
    align-items:center;
    background:linear-gradient(90deg,#3eaed0,#3a6db7);
    color:white;
}

.bottom-col {
    flex: 1;
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    
    /* Ortalamak için eklenenler */
    display: flex;
    justify-content: center; /* Yatayda ortalar */
    align-items: center;     /* Dikeyde ortalar */
}

.bottom-col:last-child{
    border-right:none;
}

.discount{
    font-size:30px;
    font-weight:600;
}

.campaign {
    font-size: 13px;
    line-height: 1.5;
    
    /* Ortalamak için gerekenler */
    display: flex;
    flex-direction: column; /* İçerikleri alt alta dizer (br etkisini güçlendirir) */
    align-items: center;    /* Yatayda tam ortalar */
    justify-content: center; /* Dikeyde tam ortalar */
    text-align: center;     /* Metin kendi içinde de ortalı dursun */
}

.old-price{
    font-size:16px;
    color:#ffd6d6;
    text-decoration:line-through;
    display:block;
    opacity:0.8;
}

.price{
    font-size:32px;
    font-weight:700;
}

.price-box{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.old-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto; /* Üst-alt 0, sağ-sol otomatik yaparak blok ortalar */
    width: fit-content; /* Genişliği içeriği kadar yapar, yoksa tüm satırı kaplar */
}

.old-price{
    text-decoration:line-through;
    font-size:16px;
    opacity:.8;
}

.discount-badge{
    background:#ff4d4d;
    color:white;
    font-size:12px;
    padding:3px 8px;
    border-radius:6px;
    font-weight:600;
}

.new-price{
    font-size:36px;
    font-weight:700;
    margin: 0 auto; /* Üst-alt 0, sağ-sol otomatik yaparak blok ortalar */
    width: fit-content; /* Genişliği içeriği kadar yapar, yoksa tüm satırı kaplar */
}

.new-price span{
    font-size:14px;
    font-weight:400;
    opacity:.8;
}

.buy-btn{
    background:#4cc0df;
    border:none;
    color:white;
    padding:12px 30px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:500;
    transition:0.2s;
}

.buy-btn:hover{
    background:#36b1d2;
}

.brand{
    font-size:18px;
    font-weight:700;
    text-align:center;
}

/* ikon */

.icon{
    align-items:center;
    font-size:26px;
    margin-bottom:6px;
}

.icon svg{
    align-items:center;
    color:#2f4f6f;
}


/* EK HİZMETLER */

.addons-section{
    max-width:1400px;
    margin:70px auto;
}

.addons-title{
    text-align:center;
    color:white;
    font-size:30px;
    font-weight:700;
    margin-bottom:40px;
}

.addons-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.addon-card{
    background:#ffffff;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:all .25s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.addon-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:4px;
    width:100%;
    background:linear-gradient(90deg,#39a6c9,#2c63b8);
}

.addon-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.addon-icon{
    font-size:32px;
    margin-bottom:10px;
}

.addon-name{
    font-size:17px;
    font-weight:700;
    color:#2a3c4e;
}

.addon-desc{
    font-size:14px;
    color:#7b8a9b;
    margin-top:6px;
}

.addon-price{
    font-size:22px;
    font-weight:700;
    color:#2c63b8;
    margin-top:15px;
}

.addon-price span{
    font-size:13px;
    font-weight:400;
    color:#7b8a9b;
}

/* MOBİL */

@media(max-width:900px){

.addons-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.addons-grid{
grid-template-columns:1fr;
}

}

/* BİLGİLENDİRME NOTLARI */

.info-notes{
    max-width:1400px;
    margin:50px auto;
    padding:25px 30px;
    background:#ffffff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-left:5px solid #2c63b8;
}

.info-title{
    font-size:20px;
    font-weight:700;
    color:#2c63b8;
    margin-bottom:15px;
}

.info-item{
    font-size:14px;
    color:#4a5a6a;
    margin-bottom:10px;
    line-height:1.6;
}

.info-item strong{
    color:#2a3c4e;
}

/* CONTACT SECTION */

.contact-section{

max-width:1400px;
margin:80px auto;
}

.contact-title{

text-align:center;
color:black;
font-size:36px;
font-weight:600;
margin-bottom:50px;
position:relative;
}

.contact-title::after{

content:"";
width:80px;
height:2px;
background:#7a87a5;
display:block;
margin:10px auto 0;
}


.contact-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.contact-card{

background:linear-gradient(90deg,#3d63dd,#4b79ff);
border-radius:10px;
padding:30px;
display:flex;
align-items:center;
position:relative;
color:white;
transition:0.25s;
}

.contact-card:hover{

transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}


.contact-icon{

font-size:40px;
margin-right:20px;
opacity:0.9;
}

.contact-text{

flex:1;
}

.contact-label{

font-size:15px;
opacity:0.8;
margin-bottom:5px;
}

.contact-value{

font-size:22px;
font-weight:600;
}


.contact-arrow{

position:absolute;
top:20px;
right:20px;
font-size:18px;
opacity:0.7;
}


/* MOBILE */

@media(max-width:800px){

.contact-grid{

grid-template-columns:1fr;
}

}

/* OS SECTION */

.os-section{

max-width:1400px;
margin:80px auto;
text-align:center;

}

.os-title{

color:white;
font-size:34px;
font-weight:700;
margin-bottom:10px;

}

.os-desc{

color:#9aa8c3;
margin-bottom:40px;
text-align:center;
}

.os-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;

}

.os-card{

background:#ffffff;
border-radius:12px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:left;
position:relative;
overflow:hidden;

}

.os-card::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#39a6c9,#2c63b8);

}

.os-card-title{

font-size:20px;
font-weight:700;
margin-bottom:20px;
color:#2a3c4e;

}

.os-list{

list-style:none;
padding:0;
margin:0;

}

.os-list li{

display:flex;
justify-content:space-between;
padding:12px 0;
border-bottom:1px solid #eef2f7;
font-size:14px;
color:#4a5a6a;

}

.os-list li:last-child{

border-bottom:none;

}

.os-list span{

color:#2c63b8;
font-weight:600;

}

/* MOBILE */

@media(max-width:800px){

.os-grid{

grid-template-columns:1fr;

}

}

.image-row{

display:flex;
justify-content:center;
gap:80px;
flex-wrap:wrap;

}

.image-row img{

width:490px;
height:550px;
object-fit:cover;

}

/* MOBILE PACKAGE RESPONSIVE */

@media(max-width:900px){

.package-top{
flex-wrap:wrap;
}

.package-col{
flex: 1 1 50%;
border-right:none;
border-bottom:1px solid #e6edf3;
}

.package-col.plan-name{
flex:1 1 100%;
text-align:center;
}

.package-bottom{
flex-wrap:wrap;
text-align:center;
}

.bottom-col{
flex:1 1 50%;
border-right:none;
border-bottom:1px solid rgba(255,255,255,0.2);
}

.bottom-col:last-child{
border-bottom:none;
}

}

@media(max-width:500px){

.package-col{
flex:1 1 100%;
}

.bottom-col{
flex:1 1 100%;
}

.buy-btn{
width:100%;
}

},