/* TRENDS LANDING PAGE - CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 30%, #4a3066 60%, #6b4d8a 100%);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: shimmer 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(-10%, -10%); opacity: 0.8; }
    50% { transform: translate(5%, 5%); opacity: 0.5; }
    75% { transform: translate(-5%, 10%); opacity: 0.7; }
}

.corner-light-top {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.corner-light-bottom {
    position: fixed;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.circuit-corner {
    position: fixed;
    bottom: 350px;
    right: -20px;
    width: 700px;
    height: 700px;
    background-image: url('images/circuit-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.circuit-corner2 {
    position: fixed;
    bottom: 1070px;
    right: 1450px;
    width: 550px;
    height: 550px;
    background-image: url('images/circuit-bg2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.4;
    pointer-events: none;
    z-index: 20;
}

.circuit-corner3 {
    position: fixed;
    bottom: 200px;
    left: -250px;
    width: 410px;
    height: 410px;
    background-image: url('images/circuit-bg3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.cursor-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.4));
    animation: floatCursor 4s ease-in-out infinite;
}

@keyframes floatCursor {
    0%, 100% { transform: translate(0, 0) rotate(-20deg); }
    50% { transform: translate(-5px, -8px) rotate(-18deg); }
}

.cursor-1 { top: 27%; left: 18%; width: 45px; height: 45px; opacity: 1; animation-delay: 0s; }
.cursor-2 { top: 25%; left: 30%; width: 35px; height: 35px; opacity: 0.7; animation-delay: 0.8s; }
.cursor-3 { top: 17%; left: 19%; width: 32px; height: 32px; opacity: 0.5; animation-delay: 1.6s; }
.cursor-7 { top: 20%; left: 10%; width: 28px; height: 28px; opacity: 1; animation-delay: 2.4s; }
.cursor-9 { top: 13%; left: 25%; width: 42px; height: 42px; opacity: 0.4; animation-delay: 3s; }
.cursor-11 { top: 35%; left: 1%; width: 38px; height: 38px; opacity: 0.75; animation-delay: 3.5s; }
.cursor-4 { top: 35%; right: 1%; width: 40px; height: 40px; opacity: 0.8; animation-delay: 0.4s; }
.cursor-5 { top: 13%; right: 20%; width: 45px; height: 45px; opacity: 1; animation-delay: 1.2s; }
.cursor-6 { top: 20%; right: 3%; width: 44px; height: 44px; opacity: 1; animation-delay: 2s; }
.cursor-8 { top: 19%; right: 24.5%; width: 35px; height: 35px; opacity: 0.8; animation-delay: 1.8s; }
.cursor-10 { top: 25.5%; right: 15%; width: 33px; height: 33px; opacity: 0.65; animation-delay: 2.8s; }
.cursor-12 { top: 26%; right: 30%; width: 38px; height: 38px; opacity: 1; animation-delay: 3.2s; }


.container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

header {
    padding: 30px 0;
    position: relative;
    min-height: 80px;
}

.logo {
    position: absolute;
    top: 35px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 38px;
    font-weight: 400;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(255, 107, 53, 0.3));
}

.logo span {
    position: relative;
    top: 4px;
}
.cta-btn {
    display: inline-block;
    display: inline-block;
    margin-top: 40px;      /* üst boşluk */
    margin-bottom: 0px;   /* alt boşluk */
    padding: 30px 85px;
    background: linear-gradient(135deg, #ff6b35, #ff8556);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-12px) scale(1.03);
    border-color:rgba(221, 215, 225, 0.723);
    border: 3px solid #ffffff;
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
    background: #31da77;
}

.contact-btn {
    position: absolute;
    padding: 16px 45px;
    border: 3px solid #ff6b35;
    border-radius: 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 500;
    z-index: 20;
}

.contact-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.contact-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.btn-phone { left: 20px; top: 220px; }
.btn-website { right: 20px; top: 350px; }
.btn-email { right: 20px; top: 220px; }

.hero {
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.hero-image {
    max-width: 650px;
    margin: 0 auto 55px;
    animation: floatMonitor 3.5s ease-in-out infinite;
}

@keyframes floatMonitor {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

.monitor {
    background: linear-gradient(145deg, #b8b8b8 0%, #d8d8d8 50%, #c8c8c8 100%);
    border-radius: 22px 22px 0 0;
    padding: 18px 18px 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.screen {
    width: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #0f1e3a 100%);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9.5;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
}

.screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 30, 58, 0.9) 100%);
    z-index: 1;
}

.screen-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.screen-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.screen-features {
    width: 100%;
    max-width: 450px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.screen-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 3;
}


.monitor-stand {
    width: 32%;
    height: 55px;
    background: linear-gradient(135deg, #909090 0%, #b8b8b8 50%, #a0a0a0 100%);
    margin: 0 auto;
    clip-path: polygon(35% 0%, 65% 0%, 90% 100%, 10% 100%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.monitor-base {
    width: 50%;
    height: 22px;
    background: linear-gradient(135deg, #606060 0%, #808080 100%);
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 -2px 4px rgba(0,0,0,0.3);
}

.hero-content {
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.15;
}

.hero p {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    margin-top: 20px;
}

.price-title {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.price-amount {
    margin-top: 20px;
    font-size: 52px;
    font-weight: 700;
    color: #ff6b35; /* istersen yeşile çevirebiliriz */
}
/* ============================================
   PROJELER BÖLÜMÜ - AYARLANMIŞ VERSİYON
   ============================================ */

.projects {
    padding-top: 0px;
    margin-top: 0px;   /* Hero'nun altına giriyor */
    padding-bottom: 60px;
}
.projects h2 {
    font-size: 42px; /* 40px'ten biraz büyüttüm */
    margin-bottom: 40px; /* 30px'ten 40px'e artırdım */
    text-align: center;
    padding-left: 0px;
    color: #ff6b35;
    font-weight: 700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px; /* Kartlar arası boşluk */
    row-gap: 35px; /* SATIR ARASI BOŞLUK - Bu önemli! */
    padding: 0 60px;
    align-items: stretch;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.project-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px; /* 14px'ten 16px'e */
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(211, 209, 209, 0.981);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 360px; /* 340px'ten 360px'e artırdım */
}

.card-image {
    width: 100%;
    height: 200px; /* 180px'ten 200px'e artırdım */
    background: #fff;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.card-content {
    padding: 20px 18px; /* 18px 16px'ten biraz artırdım */
    background: rgba(45, 27, 78, 0.85);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 19px; /* 18px'ten 19px'e */
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
    min-height: 28px; /* 26px'ten 28px'e */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 14px; /* 12px'ten 14px'e */
    font-size: 15px;
    text-align: center;
    min-height: 24px; /* 22px'ten 24px'e */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.card-btn {
    width: 100%;
    padding: 14px; /* 12px'ten 14px'e */
    background: rgba(188, 129, 255, 0.271);
    border: 1px solid #ffffff;
    border-radius: 10px; /* 8px'ten 10px'e */
    color: white;
    font-size: 16px; /* 15px'ten 16px'e */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-btn:hover {
    background: #ba89ffd8;
    transform: scale(1.05);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02); /* -8px'ten -10px'e */
    border-color: #ff6b35;
    box-shadow: 0 22px 45px rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.project-card:hover .card-image img {
    transform: scale(1.12); /* 1.1'den 1.12'ye */
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183, 131, 239, 0.93), rgba(218, 183, 255, 0.93));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px; /* 14px'ten 15px'e */
    font-weight: 600;
    color: white;
    padding: 18px; /* 15px'ten 18px'e */
}

.project-card:hover .card-overlay {
    opacity: 1;
}


/* ============================================
   PAGİNATİON (SAYFALAMA) SİSTEMİ
   ============================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    padding: 0 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.pagination-btn:hover:not(:disabled) svg {
    transform: translateX(3px);
}

.pagination-btn:first-child:hover:not(:disabled) svg {
    transform: translateX(-3px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: scale(1.1);
}

.page-number.active {
    background: linear-gradient(135deg, #ff6b35, #ff8556);
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}
/* ============================================
   RESPONSIVE AYARLAR
   ============================================ */

@media (max-width: 1400px) {
    .projects-grid { 
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        row-gap: 35px; /* Satır arası boşluk korundu */
    }
    .project-card {
        min-height: 350px;
    }
}
/* Mobil uyum */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
        padding: 0 30px;
    }
    
    .pagination-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .page-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
@media (max-width: 1100px) {
    .projects-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        row-gap: 30px; /* Orta ekranda biraz azalttım */
    }
}

@media (max-width: 768px) {
    .projects h2 { 
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .projects-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
        row-gap: 25px; /* Mobilde daha az */
        padding: 0 30px;
    }
    
    .card-image {
        height: 220px;
    }
    
    .project-card {
        min-height: 380px;
    }
}


@media (max-width: 900px) {

    .logo { 
        position: relative; 
        left: 0; 
        top: 0; 
        margin-bottom: 20px;
        
    }
    
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 40px ;
        min-height: auto;
        
    }
    
    .btn-phone, .btn-website, .btn-email { 
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin: 8px;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .cursor-decoration, .circuit-corner, .circuit-corner2, .circuit-corner3 { 
        display: none; 
    }
    
    .hero {
        margin-top: 0px;
    }

    .hero-image {
        margin-top: -30px;
    }
}

/* Kart Link Stilleri */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card-link:hover {
    text-decoration: none;
}
/* ============================================
   iPHONE SE VE KÜÇÜK EKRANLAR (320px - 375px)
   ============================================ */

@media (max-width: 400px) {
    
    /* Container padding küçült */
    .container {
        padding: 0 15px;
    }
    
    /* ===== HEADER BÖLÜMÜ ===== */
    
    header {
        padding: 20px 10px;
        min-height: auto;
    }
    
    .logo {
        font-size: 28px; /* 38px'ten küçült */
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .logo-icon {
        width: 35px; /* 50px'ten küçült */
        height: 35px;
    }
    
    .contact-btn {
        padding: 12px 20px; /* 16px 45px'ten küçült */
        font-size: 14px; /* 20px'ten küçült */
        border-width: 2px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%; /* 350px yerine tam genişlik */
        justify-content: center;
    }
    
    .contact-icon {
        width: 16px; /* 18px'ten küçült */
        height: 16px;
    }
    
    /* ===== HERO BÖLÜMÜ ===== */
    
    .hero {
        padding: 20px 0 40px 0;
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 100%; /* 550px yerine tam genişlik */
        margin: 0 auto 25px;
        padding: 0 10px;
    }
    
    .monitor {
        padding: 10px 10px 8px;
        border-radius: 16px 16px 0 0;
    }
    
    .screen-content {
        padding: 20px 15px;
    }
    
    .screen-title {
        font-size: 16px; /* 20px'ten küçült */
        margin-bottom: 6px;
    }
    
    .screen-features {
        max-width: 100%;
    }
    
    .feature-item {
        padding: 8px 12px; /* 10px 16px'ten küçült */
        margin-bottom: 6px;
        font-size: 11px; /* 12px'ten küçült */
        border-radius: 6px;
    }
    
    .monitor-stand {
        height: 35px; /* 45px'ten küçült */
    }
    
    .monitor-base {
        height: 15px; /* 18px'ten küçült */
    }
    
    /* ===== HERO İÇERİK ===== */
    
    .hero-content {
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 28px; /* 48px'ten küçült */
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px; /* 24px'ten küçült */
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .price-box {
        margin-top: 12px;
        margin-bottom: 8px;
    }
    
    .price-title {
        font-size: 18px; /* 24px'ten küçült */
        margin-bottom: 6px;
    }
    
    .price-amount {
        margin-top: 10px;
        font-size: 36px; /* 46px'ten küçült */
    }
    
    .cta-btn {
        margin-top: 20px;
        padding: 18px 40px; /* 24px 70px'ten küçült */
        font-size: 18px; /* 22px'ten küçült */
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    /* ===== PROJELER BÖLÜMÜ ===== */
    
    .projects {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    
    .projects h2 {
        font-size: 28px; /* 40px'ten küçült */
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr; /* Tek sütun */
        gap: 20px;
        row-gap: 20px;
        padding: 0 15px;
    }
    
    /* ===== KART BOYUTLARI ===== */
    
    .project-card {
        min-height: 340px;
        border-radius: 14px;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 16px 14px;
    }
    
    .card-title {
        font-size: 17px;
        min-height: 24px;
        margin-bottom: 6px;
    }
    
    .card-subtitle {
        font-size: 14px;
        min-height: 20px;
        margin-bottom: 10px;
    }
    
    .card-btn {
        padding: 12px;
        font-size: 15px;
        border-radius: 8px;
    }
    
    .card-overlay {
        font-size: 13px;
        padding: 12px;
    }
    
    /* ===== PAGİNATİON ===== */
    
    .pagination {
        flex-direction: column; /* Dikey yerleşim */
        gap: 12px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .pagination-btn {
        width: 100%; /* Tam genişlik */
        padding: 14px 20px;
        font-size: 15px;
        justify-content: center;
    }
    
    .pagination-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .pagination-numbers {
        order: -1; /* Sayfa numaraları en üste */
        width: 100%;
        justify-content: center;
        gap: 8px;
    }
    
    .page-number {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    
    /* ===== ARKA PLAN ELEMANLARI GİZLE ===== */
    
    .cursor-decoration,
    .circuit-corner,
    .circuit-corner2,
    .circuit-corner3,
    .corner-light-top,
    .corner-light-bottom {
        display: none !important;
    }
    
    /* ===== GENEL AYARLAR ===== */
    
    body {
        font-size: 14px;
    }
    
    /* Scroll davranışı */
    html {
        scroll-padding-top: 20px;
    }
}

/* ============================================
   EKSTRA KÜÇÜK EKRANLAR (iPhone SE 1. Nesil - 320px)
   ============================================ */

@media (max-width: 340px) {
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .cta-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .contact-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .projects h2 {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-subtitle {
        font-size: 13px;
    }
    
    .page-number {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 40px;
        padding: 0 30px;
    }
    
    .pagination-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .page-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
