/* KIDAS DRAFT Font - koy font dosyanı fonts/ klasörüne */
@font-face {
    font-family: 'KIDAS DRAFT';
    src: url('fonts/KIDAS-DRAFT.woff2') format('woff2'),
         url('fonts/KIDAS-DRAFT.woff') format('woff'),
         url('fonts/KIDAS-DRAFT.ttf') format('truetype'),
         url('fonts/KIDAS-DRAFT.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    background: linear-gradient(180deg, #3FA0D8 0%, #4BB0E8 100%);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    background: linear-gradient(180deg, #FF8A4D 0%, #FF7A3D 50%, #E86420 100%);
    border-radius: 30px;
    padding: 0.3rem;
    box-shadow:
        0 6px 15px rgba(232, 100, 32, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 30px 30px 0 0;
    pointer-events: none;
}

.nav a {
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav a.active {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    color: #333;
    text-shadow: none;
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.nav a:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

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

.social-icon {
    width: 32px;
    height: 32px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.btn-documents {
    background-color: #FF6B5B;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    display: none;
}

.btn-documents:hover {
    background-color: #FF5544;
}

/* Hero Section */
.hero {
    background: radial-gradient(ellipse at center, #6FCCF5 0%, #5BC0F8 35%, #3FA0D8 80%, #2E8BC0 100%);
    padding: 3rem 4rem 5rem;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
}

.hero-content {
    max-width: 460px;
    position: relative;
    z-index: 5;
    color: white;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 400px;
}

.btn-start {
    font-family: 'Poppins', sans-serif;
    background-color: #FF7A3D;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 122, 61, 0.4);
}

.btn-start:hover {
    background-color: #FF6B2B;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 61, 0.5);
}

.rocket-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rocket-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-image {
    position: relative;
    z-index: 4;
    max-width: 520px;
    width: 100%;
    text-align: center;
    align-self: flex-end;
    margin-bottom: -2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.online-sales {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #6B4FC7;
    color: white;
    padding: 1.2rem 1.5rem 1.3rem;
    border-top-left-radius: 40px;
    text-align: center;
    z-index: 6;
    box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.15);
    width: 180px;
}

.online-sales img {
    width: 115%;
    height: auto;
    display: block;
    margin: -3rem auto 0.8rem;
    position: relative;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.online-sales h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.3px;
}

.online-sales a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background-color: #5BC0F8;
    padding: 0.5rem 1.4rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.online-sales a:hover {
    background-color: #4BB0E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: currentColor;
}

.search-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* Publications section indicator */
.publications-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #8DD8F8 0%, #7ACDF5 100%);
    padding: 0.8rem 2rem;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Cloud decorations */
.cloud {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

.cloud img {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.cloud-1 {
    top: 15%;
    left: 8%;
    width: 180px;
}

.cloud-2 {
    top: 8%;
    right: 5%;
    width: 200px;
}

.cloud-3 {
    bottom: 25%;
    left: 3%;
    width: 220px;
}

.cloud-4 {
    bottom: 15%;
    right: 30%;
    width: 190px;
    z-index: 1;
}

/* Responsive - Large Desktop */
@media (max-width: 1400px) {
    .hero {
        padding: 3rem 3rem 5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-image {
        max-width: 340px;
        margin-right: 3rem;
    }
}

/* Laptop */
@media (max-width: 1200px) {
    header {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
    }

    .logo img {
        height: 66px;
    }

    .nav {
        gap: 0.2rem;
        padding: 0.25rem;
    }

    .nav a {
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 300px;
        margin-right: 2rem;
    }

    .cloud-1 { width: 140px; }
    .cloud-2 { width: 160px; }
    .cloud-3 { width: 180px; }
    .cloud-4 { width: 150px; }
}

/* Tablet */
@media (max-width: 1024px) {
    header {
        flex-wrap: wrap;
        padding: 0.8rem 1.2rem;
    }

    .nav {
        order: 3;
        flex: 1 0 100%;
        justify-content: center;
        overflow-x: auto;
        gap: 0.2rem;
    }

    .nav a {
        font-size: 0.7rem;
        padding: 0.45rem 0.8rem;
    }

    .header-right {
        order: 2;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        max-width: 280px;
        margin: 0 auto;
    }

    .online-sales {
        width: 150px;
        padding: 1rem 1.2rem;
    }

    .online-sales img {
        margin-top: -2.5rem;
    }

    .online-sales h3 {
        font-size: 1rem;
    }

    .cloud-1 { width: 120px; top: 20%; left: 3%; }
    .cloud-2 { width: 130px; top: 8%; left: 50%; }
    .cloud-3 { width: 140px; bottom: 30%; left: 2%; }
    .cloud-4 { width: 120px; bottom: 25%; right: 5%; }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    header {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }

    .logo img {
        height: 56px;
    }

    .nav {
        gap: 0.15rem;
        padding: 0.2rem;
    }

    .nav a {
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon img {
        width: 14px;
        height: 14px;
    }

    .hero {
        padding: 2rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-start {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-image {
        max-width: 220px;
    }

    .online-sales {
        position: static;
        transform: none;
        margin: 1.5rem auto 0;
        width: 130px;
    }

    .publications-indicator {
        font-size: 1rem;
        bottom: 0.5rem;
    }

    .cloud-1 { width: 80px; top: 15%; left: 2%; }
    .cloud-2 { width: 90px; top: 5%; right: 5%; left: auto; }
    .cloud-3 { width: 100px; bottom: 40%; left: 2%; }
    .cloud-4 { width: 85px; bottom: 30%; right: 3%; }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    header {
        padding: 0.5rem 0.8rem;
    }

    .logo img {
        height: 48px;
    }

    .nav {
        gap: 0.1rem;
        padding: 0.15rem;
    }

    .nav a {
        font-size: 0.6rem;
        padding: 0.35rem 0.55rem;
    }

    .social-icon {
        width: 26px;
        height: 26px;
    }

    .social-icon img {
        width: 12px;
        height: 12px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn-start {
        padding: 0.6rem 1.3rem;
        font-size: 0.8rem;
    }

    .hero-image {
        max-width: 180px;
    }

    .cloud-1 { width: 60px; }
    .cloud-2 { width: 70px; }
    .cloud-3 { width: 75px; }
    .cloud-4 { width: 65px; }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .nav a {
        font-size: 0.55rem;
        padding: 0.3rem 0.45rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        max-width: 150px;
    }
}

/* Publications Cards Section */
.publications {
    padding: 0;
    background-color: #ffffff;
}

.publications-container {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.pub-card {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-size: cover;
    background-position: center;
}

.pub-card.fenomen {
    background-image: url('public/Mask-Group-5@2x.png');
}

.pub-card.becerikli {
    background-image: url('public/Mask-Group-6@2x.png');
}

.pub-card.bilsem {
    background-image: url('public/Mask-Group-7@2x.png');
}

/* Colored overlays on top of background images */
.pub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.75;
}

.pub-card.fenomen::before {
    background: linear-gradient(135deg, #8E5BC7 0%, #6B4FC7 100%);
}

.pub-card.becerikli::before {
    background: linear-gradient(135deg, #E8479F 0%, #D63384 100%);
}

.pub-card.bilsem::before {
    background: linear-gradient(135deg, #F5A623 0%, #E89011 100%);
}

.card-inner {
    border-radius: 25px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 220px;
    border: 3px solid #FFFFFF;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.card-inner:hover {
    transform: rotate(3deg) translateY(-5px);
}

.card-text {
    padding-right: 120px;
}

.pub-card.fenomen .card-inner {
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #8E5BC7 0%, #6B4FC7 100%);
}

.pub-card.becerikli .card-inner {
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #E8479F 0%, #D63384 100%);
}

.pub-card.bilsem .card-inner {
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, #F5A623 0%, #E89011 100%);
}

.card-text {
    flex: 1;
    text-align: left;
}

.card-logo {
    max-width: 140px;
    max-height: 55px;
    margin-bottom: 0.8rem;
    object-fit: contain;
    display: block;
}

.card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.card-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 100%);
    color: #555;
    padding: 0.4rem 0.35rem 0.4rem 1.1rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -2px 3px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 25px 25px 0 0;
    pointer-events: none;
}

.card-btn span.arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.pub-card.fenomen .card-btn span.arrow {
    background: linear-gradient(135deg, #9F6FD8 0%, #6B4FC7 100%);
}

.pub-card.becerikli .card-btn span.arrow {
    background: linear-gradient(135deg, #F26BB0 0%, #D63384 100%);
}

.pub-card.bilsem .card-btn span.arrow {
    background: linear-gradient(135deg, #FFB93D 0%, #E89011 100%);
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.25),
        0 3px 6px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -2px 3px rgba(0, 0, 0, 0.08);
}

.card-character {
    width: 200px;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: -1.5rem;
    bottom: -0.2rem;
    z-index: 3;
    max-width: none;
}

/* Publications Responsive */
@media (max-width: 1024px) {
    .publications-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .publications-container {
        grid-template-columns: 1fr;
    }

    .pub-card {
        min-height: 340px;
        padding: 2.5rem 1.5rem;
    }

    .card-inner {
        max-width: 420px;
    }

    .card-character {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .pub-card {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .card-inner {
        padding: 1.2rem 1rem;
        gap: 0.6rem;
    }

    .card-logo {
        max-width: 110px;
        max-height: 45px;
    }

    .card-desc {
        font-size: 0.7rem;
        margin-bottom: 0.7rem;
    }

    .card-btn {
        font-size: 0.7rem;
    }

    .card-character {
        width: 95px;
    }
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-btn {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 19%;
    bottom: 13%;
    background: linear-gradient(180deg, #FF8A4D 0%, #FF7A3D 50%, #E86420 100%);
    color: #FFFFFF;
    padding: 1.8rem 3.5rem;
    border: none;
    border-radius: 35px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 20px rgba(232, 100, 32, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.4),
        inset 0 -3px 5px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 20px rgba(232, 100, 32, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .banner-btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
        bottom: 12%;
    }
}

@media (max-width: 768px) {
    .banner-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        bottom: 10%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .banner-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        bottom: 8%;
        border-radius: 20px;
    }
}

/* Yakından Tanıyalım Section */
.tanit {
    position: relative;
    background: radial-gradient(ellipse at center, #6FCCF5 0%, #5BC0F8 35%, #3FA0D8 80%, #2E8BC0 100%);
    padding: 6rem 2rem 7rem;
    overflow: hidden;
}

.tanit-torn-top {
    position: absolute;
    top: -120px;
    left: -10%;
    width: 120%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    display: block;
}

.tanit-scissors {
    position: absolute;
    top: -2.5rem;
    left: -7rem;
    width: 380px;
    height: auto;
    z-index: 3;
    transform: rotate(-15deg);
}

.tanit-corner-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.tanit-corner-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: auto;
    z-index: 3;
    pointer-events: none;
    transform: scaleX(-1);
}

.tanit-dash {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.tanit-dash-tl {
    top: 30px;
    left: 0;
    width: 600px;
    height: auto;
}

.tanit-dash-tr {
    top: 30px;
    right: 0;
    width: 600px;
    height: auto;
}

.tanit-dash-bl {
    bottom: -120px;
    left: 0;
    width: 450px;
    height: auto;
}

.tanit-dash-br {
    bottom: -20px;
    right: 0;
    width: 600px;
    height: auto;
}

@media (max-width: 1200px) {
    .tanit-dash {
        width: 480px;
    }

    .tanit-dash-bl {
        width: 360px;
    }
}

@media (max-width: 1024px) {
    .tanit-dash {
        width: 380px;
    }

    .tanit-dash-bl {
        width: 280px;
    }

    .tanit-dash-tl,
    .tanit-dash-tr {
        top: 50px;
    }

    .tanit-dash-bl,
    .tanit-dash-br {
        bottom: 50px;
    }
}

@media (max-width: 768px) {
    .tanit-corner-left,
    .tanit-corner-right {
        width: 100px;
    }

    .tanit-dash {
        width: 160px;
    }

    .tanit-dash-tl,
    .tanit-dash-tr,
    .tanit-dash-bl,
    .tanit-dash-br {
        left: 10px;
        right: 10px;
    }

    .tanit-dash-tl,
    .tanit-dash-tr {
        top: 40px;
    }

    .tanit-dash-bl,
    .tanit-dash-br {
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .tanit-corner-left,
    .tanit-corner-right {
        width: 70px;
    }

    .tanit-dash {
        width: 110px;
    }
}

.tanit h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.tanit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.tanit-card {
    position: relative;
    padding: 2.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-image: url('public/Group-132.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 440px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.tanit-card:nth-child(2) {
    transform: rotate(1.5deg);
}

.tanit-card:nth-child(3) {
    transform: rotate(-1deg);
}

.tanit-card:hover {
    transform: rotate(0deg) translateY(-5px);
}

.tanit-card-border {
    border: 2.5px dashed;
    border-radius: 18px;
    padding: 1.8rem 1.2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    min-height: 380px;
}

.tanit-card.purple .tanit-card-border {
    border-color: #8E5BC7;
}

.tanit-card.pink .tanit-card-border {
    border-color: #E8479F;
}

.tanit-card.orange .tanit-card-border {
    border-color: #F5A623;
}

.tanit-card-img {
    width: 170px;
    height: 170px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tanit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tanit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.tanit-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    flex-grow: 1;
}

.detail-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    color: #FFFFFF;
    padding: 0.4rem 0.4rem 0.4rem 1.3rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 3px rgba(0, 0, 0, 0.1);
    min-width: 130px;
}

.tanit-card.purple .detail-btn {
    background: linear-gradient(180deg, #9F6FD8 0%, #7C4FC2 100%);
    box-shadow:
        0 4px 10px rgba(124, 79, 194, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 3px rgba(0, 0, 0, 0.1);
}

.tanit-card.pink .detail-btn {
    background: linear-gradient(180deg, #F26BB0 0%, #D63384 100%);
    box-shadow:
        0 4px 10px rgba(214, 51, 132, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 3px rgba(0, 0, 0, 0.1);
}

.tanit-card.orange .detail-btn {
    background: linear-gradient(180deg, #FFB93D 0%, #E89011 100%);
    box-shadow:
        0 4px 10px rgba(232, 144, 17, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -2px 3px rgba(0, 0, 0, 0.1);
}

.detail-btn::after {
    content: '→';
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tanit-card.purple .detail-btn::after {
    color: #7C4FC2;
}

.tanit-card.pink .detail-btn::after {
    color: #D63384;
}

.tanit-card.orange .detail-btn::after {
    color: #E89011;
}

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

@media (max-width: 1024px) {
    .tanit-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tanit-scissors {
        width: 90px;
        left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tanit {
        padding: 5rem 1.5rem 6rem;
    }

    .tanit h2 {
        font-size: 1.6rem;
    }

    .tanit-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 360px;
    }

    .tanit-scissors {
        width: 70px;
        left: 1rem;
        top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .tanit {
        padding: 4rem 1rem 5rem;
    }

    .tanit h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .tanit-scissors {
        width: 55px;
    }
}

/* =========================
   FOOTER (site-wide)
   ========================= */
.site-footer {
    background: linear-gradient(180deg, #7C5FC7 0%, #6B4FC7 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
    border-top: 4px solid #FF7A3D;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.4fr 1fr;
    gap: 2.5rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    color: #FFB266;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-about .footer-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #FFB266;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #FFB266;
}

.footer-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
}

.footer-social a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease;
}

.footer-social a:hover img {
    filter: none;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    margin: 0;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-privacy:hover {
    color: #FFB266;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.2rem 1.5rem;
        gap: 1.8rem;
    }

    .footer-bottom {
        padding: 1rem 1.2rem;
        flex-direction: column;
        text-align: center;
    }
}
