/* ===== Font Declarations ===== */
@font-face {
    font-family: 'Higuen Serif';
    src: url('HiguenSerif.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Color Palette */
    --purple-dark: #2d1b69;
    --purple-medium: #5e3aa8;
    --purple-light: #8b5cf6;
    --blue-medium: #3b82f6;
    --pink-medium: #ec4899;
    --yellow-medium: #fbbf24;
    --gold-light: #ffd700;
    --gold-accent: #f4e5a1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d1b69 0%, #5e3aa8 25%, #3b82f6 50%, #ec4899 75%, #fbbf24 100%);
    --gradient-secondary: linear-gradient(45deg, #8b5cf6 0%, #3b82f6 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #1a0d3e 0%, #2d1b69 100%);
    --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    
    /* Mobile Viewport Height */
    --vh: 1vh;
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-custom: 'Higuen Serif', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: #0a0520;
    color: var(--gold-accent);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== Particles.js Background ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a0520 0%, #1a0d3e 50%, #0a0520 100%);
}

#particles-js canvas {
    display: block;
    vertical-align: bottom;
}

/* Make sure all content is above particles */
.navbar,
.hero,
.zodiac-section,
.astro-learn,
.astro-news,
.services,
.contact,
.footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.navbar .container {
    max-width: 100%;
    padding: 0 max(2rem, calc((100vw - 1400px) / 2));
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Enhanced Glassmorphism Effect */
    background: rgba(10, 5, 32, 0.65);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    
    /* Elegant border and shadow */
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(236, 72, 153, 0.03) 50%,
        transparent 100%
    );
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(10, 5, 32, 0.85);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 10px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.15) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.2) inset;
}

/* ===== Instagram Stories Section ===== */
.instagram-stories {
    position: relative;
    width: 100%;
    z-index: 50;
    padding-top: 20px;
    margin-top: 70px;
    contain: layout style;
    will-change: contents;
}

.instagram-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(236, 72, 153, 0.03) 50%,
        rgba(245, 158, 11, 0.02) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.stories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.stories {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.3) transparent;
    gap: 15px;
}

.stories::-webkit-scrollbar {
    height: 6px;
}

.stories::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.stories::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.4);
    border-radius: 10px;
}

.stories::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

.stories__item {
    padding: 0;
    user-select: none;
    flex-shrink: 0;
}

.stories__item:first-child {
    padding-left: 0;
}

.stories__item:last-child {
    padding-right: 0;
}

.stories__item button {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: 0;
    transition: transform 0.2s ease;
}

.stories__item button:hover {
    transform: scale(1.05);
}

.stories__item-picture {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    padding: 3px;
    position: relative;
    border-radius: 50%;
}

.stories__item-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(26, 13, 62, 0.8);
    object-fit: cover;
    pointer-events: none;
}

.stories__item-username {
    display: none;
}

/* Active story (with gradient ring) */
.stories__item--active .stories__item-picture::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(45deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.stories__item--active .stories__item-picture img {
    box-shadow: 0 0 0 3px rgba(26, 13, 62, 0.9);
}

/* Story Viewer (Full Screen Modal) */
.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.story-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.story-viewer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10003;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer__close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.story-viewer__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10002;
}

.story-viewer__progress-bar {
    height: 100%;
    background: #fff;
    width: 0;
    transition: width 0.1s linear;
}

.story-viewer__progress-bar.active {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.story-viewer__content {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    max-height: 900px;
    background: #000;
    border-radius: 0;
    overflow: hidden;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.story-viewer__header {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10002;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    padding: 15px;
    border-radius: 12px 12px 0 0;
}

.story-viewer__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    object-fit: cover;
}

.story-viewer__username {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-viewer__time {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.story-viewer__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-viewer__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 4rem 2rem 2rem;
    z-index: 10002;
}

.story-viewer__description {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-viewer__description p {
    margin-bottom: 0.5rem;
}

.story-viewer__action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.story-viewer__action-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.story-viewer__action-btn i {
    transition: transform 0.3s ease;
}

.story-viewer__action-btn:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.story-viewer__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10003;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer__nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.story-viewer__nav--prev {
    left: 20px;
}

.story-viewer__nav--next {
    right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .instagram-stories {
        margin-top: 70px;
        padding: 15px 0;
    }
    
    .stories-wrapper {
        padding: 0 10px;
    }
    
    .stories {
        padding: 10px 5px;
    }
    
    .stories__item-picture {
        width: 60px;
        height: 60px;
    }
    
    .stories__item-username {
        font-size: 0.7rem;
        max-width: 60px;
    }
    
    .story-viewer__content {
        max-width: 100%;
        border-radius: 0;
    }
    
    .story-viewer__nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .story-viewer__close {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .stories-wrapper {
        padding: 0 8px;
    }
    
    .stories {
        padding: 8px 3px;
    }
    
    .stories__item-picture {
        width: 55px;
        height: 55px;
    }
    
    .stories__item-username {
        font-size: 0.68rem;
        max-width: 55px;
    }
    
    .story-viewer__nav {
        display: none;
    }
}

/* Story Button (old - remove if not needed) */
.story-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-btn:hover {
    transform: translateY(-3px);
}

.story-btn:active {
    transform: scale(0.95);
}

.stories__item-picture {
    position: relative;
    width: 56px;
    height: 56px;
    padding: 2.5px;
}

.stories__item-picture::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(
        45deg,
        rgba(139, 92, 246, 1) 0%,
        rgba(236, 72, 153, 1) 50%,
        rgba(251, 191, 36, 1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stories__item--active .stories__item-picture::before {
    opacity: 1;
}

.stories__item-picture img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(10, 5, 32, 1);
    transition: border-color 0.3s ease;
}

.stories__item--active .stories__item-picture img {
    border-color: rgba(10, 5, 32, 1);
}

.stories__item-username {
    font-size: 0.68rem;
    color: var(--gold-accent);
    max-width: 56px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.story-btn:hover .stories__item-username {
    color: var(--gold-light);
}

/* Story Viewer Modal */
/* Story Viewer - Full Screen Story Display */
.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-viewer.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.story-viewer__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
}

.story-viewer__close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.story-viewer__content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer__media {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viewer__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.story-viewer__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 4rem 2rem 2rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-viewer__description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.story-viewer__description p {
    margin: 0 0 0.5rem 0;
}

.story-viewer__description strong {
    font-weight: 700;
    color: #ffd700;
}

.story-viewer__action-btn {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.story-viewer__action-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.story-viewer__action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.story-viewer__action-btn:hover i {
    transform: translateX(5px);
}

.nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 75px;
    gap: 2rem;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    justify-self: start;
    padding: 0;
    margin-left: 0cm;
}

.logo i {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotateMoon 20s linear infinite;
}

.logo-svg {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    animation: rotateMoon 60s linear infinite;
    transition: all 0.3s ease;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.logo-text {
    font-family: var(--font-custom);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

@keyframes rotateMoon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover i {
    animation: rotateMoon 2s linear infinite;
}

.logo:hover .logo-svg {
    animation: rotateMoon 10s linear infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    justify-content: center;
    justify-self: center;
    background: transparent;
    margin-left: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-link.active {
    color: white;
    background: rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link.active i {
    color: var(--gold-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    justify-self: end;
    margin-right: 1cm;
    padding: 0;
    background: transparent;
}

.btn-search {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--gold-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-search:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: var(--purple-light);
    color: var(--gold-light);
    transform: scale(1.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(139, 92, 246, 0.3);
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-login i {
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
    color: var(--gold-light);
    transform: translateY(-2px);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.1rem;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-cta .fa-user-plus {
    display: none; /* Hide user-plus icon on desktop */
}

.btn-cta .arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.btn-cta:hover i {
    transform: translateX(3px);
}

/* User logged in state */
.btn-login.user-logged-in {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--gold-light);
    font-weight: 600;
}

.btn-login.user-logged-in:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: var(--purple-light);
}

/* Logout button */
.btn-cta.logout-btn {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.6), rgba(185, 28, 28, 0.6));
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-cta.logout-btn:hover {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.8), rgba(185, 28, 28, 0.8));
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.btn-cta.logout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.2);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gold-light);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 10px;
}

.hamburger span:nth-child(2) {
    top: 18px;
}

.hamburger span:nth-child(3) {
    top: 26px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #fff;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #fff;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    background: transparent;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    z-index: 10;
    transform: translateY(-30px);
}

.hero-content {
    text-align: left;
    z-index: 10;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1.5rem;
    max-width: 600px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.zodiac-wheel {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: fadeInRight 1s ease;
}

.zodiac-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6))
            drop-shadow(0 0 80px rgba(59, 130, 246, 0.4));
    animation: rotateZodiac 60s linear infinite, pulseGlow 3s ease-in-out infinite;
    will-change: transform, filter;
    content-visibility: auto;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateZodiac {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6))
                drop-shadow(0 0 80px rgba(59, 130, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.8))
                drop-shadow(0 0 120px rgba(59, 130, 246, 0.6));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge i {
    color: var(--gold-light);
    font-size: 0.9rem;
    animation: twinkleBadge 2s ease-in-out infinite;
}

.hero-badge span {
    color: var(--gold-accent);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

@keyframes twinkleBadge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-family: var(--font-custom);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    line-height: 1.15;
    animation: fadeInUp 1s ease 0.4s both;
    letter-spacing: -0.02em;
}

.mystical {
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                 0 0 60px rgba(255, 215, 0, 0.3);
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.vision {
    color: var(--gold-light);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6),
                 0 0 60px rgba(255, 215, 0, 0.3);
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: var(--font-custom);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(244, 229, 161, 0.9);
    line-height: 1.7;
    max-width: 540px;
    animation: fadeInUp 1s ease 0.6s both;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.stat-label {
    color: var(--gold-accent);
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.btn-primary,
.btn-secondary {
    padding: 0.85rem 1.8rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--gold-light);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-secondary:hover i {
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}



/* ===== Section Titles ===== */
.section-title {
    font-family: var(--font-custom);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffed4e 75%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-family: var(--font-custom);
    text-align: center;
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* ===== Zodiac Section ===== */
.zodiac-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
}

.zodiac-card {
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 1.3rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zodiac-card:hover::before {
    opacity: 1;
}

.zodiac-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--purple-light);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.zodiac-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
    color: var(--purple-light);
    display: inline-block;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.4));
    transition: transform 0.3s ease;
}

.zodiac-card:hover .zodiac-icon {
    transform: scale(1.15) rotate(5deg);
}

.zodiac-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.zodiac-date {
    color: var(--gold-accent);
    opacity: 0.75;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.btn-zodiac {
    padding: 0.5rem 1.2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--purple-light);
    color: var(--gold-accent);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-zodiac::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-zodiac:hover::before {
    left: 0;
}

.btn-zodiac:hover {
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* ===== Horoscope Periods Section ===== */
.horoscope-periods {
    padding: var(--spacing-xl) 0;
    background: rgba(10, 5, 32, 0.5);
}

/* Ana Başlık - GÜNLÜK, HAFTALIK, AYLIK */
.horoscope-main-title {
    font-family: var(--font-custom);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 3rem;
    letter-spacing: 0.3rem;
    color: #ffd700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffed4e 75%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    position: relative;
    z-index: 1;
}

/* Alt Başlık */
.horoscope-subtitle {
    font-family: var(--font-custom);
    text-align: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 4rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    font-style: italic;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 1;
    opacity: 1;
    max-width: 100%;
    line-height: 1.4;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Burç Butonları Grid */
.horoscope-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Minimalist Burç Butonu */
.zodiac-minimal-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.zodiac-minimal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 237, 78, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zodiac-minimal-btn:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.zodiac-minimal-btn:hover::before {
    opacity: 1;
}

/* Burç Sembolü - Ana Sayfa Minimal */
.horoscope-periods .zodiac-symbol {
    width: 60px;
    height: 60px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.horoscope-periods .zodiac-minimal-btn:hover .zodiac-symbol {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Burç Bilgileri */
.zodiac-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

/* Burç İsmi */
.zodiac-name {
    font-family: var(--font-custom);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.05rem;
    font-weight: 500;
}

/* Tarih Aralığı */
.zodiac-dates {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(244, 229, 161, 0.7);
    letter-spacing: 0.03rem;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .horoscope-zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .horoscope-main-title {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
        padding-top: 2rem;
    }
    
    .horoscope-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        letter-spacing: 0.15rem;
    }
    
    .horoscope-zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .zodiac-minimal-btn {
        padding: 1.2rem 0.8rem;
    }
    
    .horoscope-periods .zodiac-symbol {
        width: 50px;
        height: 50px;
    }
    
    .zodiac-name {
        font-size: 1rem;
    }
    
    .zodiac-dates {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .horoscope-main-title {
        font-size: 1.8rem;
        letter-spacing: 0.1rem;
        padding-top: 1.5rem;
    }
    
    .horoscope-subtitle {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    
    .horoscope-zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .zodiac-minimal-btn {
        padding: 1rem 0.6rem;
    }
    
    .horoscope-periods .zodiac-symbol {
        width: 40px;
        height: 40px;
    }
    
    .zodiac-name {
        font-size: 0.9rem;
    }
}

/* ===== Horoscope Hero Section ===== */
.horoscope-hero {
    position: relative;
    width: 100%;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    background: rgba(10, 5, 32, 0.5);
}

.horoscope-hero .container {
    position: relative;
    z-index: 1;
}

.horoscope-hero .zodiac-buttons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.zodiac-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0.8rem;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.6) 0%, rgba(26, 13, 62, 0.8) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gold-accent);
}

.zodiac-btn:hover {
    transform: translateY(-5px);
    border-color: var(--purple-light);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.horoscope-hero .zodiac-symbol {
    width: 50px;
    height: 50px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.zodiac-btn:hover .zodiac-symbol {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.horoscope-hero .zodiac-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
}

.zodiac-dates {
    font-size: 0.75rem;
    color: var(--gold-accent);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 968px) {
    .horoscope-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .horoscope-hero .zodiac-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .zodiac-btn {
        padding: 0.75rem 0.25rem;
    }
    
    .horoscope-hero .zodiac-symbol {
        width: 40px;
        height: 40px;
    }
    
    .horoscope-hero .zodiac-name {
        font-size: 0.85rem;
    }
    
    .zodiac-dates {
        font-size: 0.65rem;
    }
}

@media (max-width: 600px) {
    .horoscope-hero {
        padding: 6rem 0 3rem;
    }
    
    .horoscope-hero .zodiac-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .zodiac-btn {
        padding: 1rem 0.5rem;
    }
    
    .zodiac-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== AstroLearn Section ===== */
.astro-learn {
    padding: var(--spacing-xl) 0;
    background: rgba(45, 27, 105, 0.3);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.learn-card {
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.learn-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-light);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.learn-card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.learn-icon-badge {
    width: 45px;
    height: 45px;
    background: rgba(10, 5, 32, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.learn-icon-badge i {
    font-size: 1.2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.learn-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
}

.learn-badge.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.learn-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.learn-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.learn-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 5, 32, 0.7) 100%);
    z-index: 1;
}

.learn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.7;
}

.learn-card:hover .learn-image img {
    transform: scale(1.1);
    opacity: 0.9;
}

.learn-content {
    padding: 1.5rem;
}

.learn-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.learn-card p {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-learn {
    width: 100%;
    padding: 0.9rem;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.btn-learn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-learn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-learn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-learn:hover i {
    transform: translateX(4px);
}

/* ================================
   FEATURED ARTICLES SECTION
   ================================ */

.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 1200px) {
    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-articles-grid {
        grid-template-columns: 1fr;
    }
}

.featured-article-card {
    position: relative;
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.featured-article-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-light);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    animation: blink 1.5s ease-in-out infinite;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-badge i {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.featured-article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.featured-article-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 5, 32, 0.8) 100%);
    z-index: 1;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-article-card:hover .featured-article-image img {
    transform: scale(1.15);
}

.featured-article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-article-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.featured-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.featured-article-meta i {
    color: var(--gold-light);
    font-size: 0.7rem;
}

.featured-article-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-article-excerpt {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.featured-article-read-more {
    width: 100%;
    padding: 0.9rem;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.featured-article-read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.featured-article-read-more:hover::before {
    width: 300px;
    height: 300px;
}

.featured-article-read-more i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.featured-article-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.featured-article-read-more:hover i {
    transform: translateX(5px);
}

/* Show More Button */
.show-more-wrapper {
    text-align: center;
    margin: 3rem 0 1rem;
}

.btn-show-more {
    padding: 1rem 3rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--purple-light);
    border-radius: 50px;
    color: var(--purple-light);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-show-more:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-show-more i {
    transition: transform 0.3s ease;
}

.btn-show-more:hover i {
    transform: translateY(3px);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--gold-light);
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--purple-light);
}

.loading-spinner p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ================================
   END FEATURED ARTICLES SECTION
   ================================ */

/* ===== AstroNews Section ===== */
.astro-news {
    padding: var(--spacing-lg) 0;
}

.news-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.news-title-section {
    width: 100%;
}

.news-filter {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.3rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
}

.filter-btn.active {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: rgba(20, 10, 45, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
    border-color: var(--purple-light);
}

.news-card.featured {
    grid-column: span 2;
}

.news-card.featured .news-image-wrapper {
    height: 300px;
}

.news-card.featured h3 {
    font-size: 1.8rem;
}

.news-card-inner {
    position: relative;
}

.news-meta-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.news-category {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-category.trend {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.news-category.love {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.news-category.guide {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.news-reading-time {
    padding: 0.4rem 0.9rem;
    background: rgba(10, 5, 32, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.news-reading-time i {
    font-size: 0.7rem;
}

.news-image-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 5, 32, 0.8) 100%);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-date,
.news-author {
    color: var(--purple-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.news-date i,
.news-author i {
    font-size: 0.75rem;
}

.news-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--gold-accent);
}

.news-content p {
    color: var(--gold-accent);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 0.85rem;
    opacity: 0.9;
}

.news-read-more {
    color: var(--purple-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.news-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
}

.page-number.active {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.dots {
    color: var(--gold-accent);
    opacity: 0.5;
}

/* ===== Services Section ===== */
.services {
    padding: var(--spacing-xl) 0;
    background: rgba(45, 27, 105, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}

.service-card {
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-light);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.service-card.featured {
    border-color: var(--gold-light);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    opacity: 0.9;
}

.service-content {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-icon-small {
    width: 38px;
    height: 38px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.4);
}

.service-icon-small i {
    font-size: 1rem;
    color: white;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.service-desc {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.service-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.price-old {
    color: var(--gold-accent);
    text-decoration: line-through;
    font-size: 0.85rem;
    opacity: 0.6;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
}

.service-info {
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    font-size: 0.8rem;
}

.info-item i {
    color: var(--purple-light);
    font-size: 0.85rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-features li {
    color: var(--gold-accent);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.service-features i {
    color: #10b981;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.btn-service {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #fbbf24 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-service i {
    font-size: 1rem;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

/* Hidden service cards (for show more functionality) */
.service-card.hidden {
    display: none;
}

/* Show More Container */
.show-more-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.btn-show-more {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.btn-show-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.btn-show-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-show-more:hover i {
    transform: translateY(3px);
}

/* Fade in animation for revealed cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--spacing-xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gold-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(45, 27, 105, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-light);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(244, 229, 161, 0.5);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

/* ===== Footer ===== */
.footer {
    background: rgba(29, 13, 62, 0.9);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--gold-accent);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(45, 27, 105, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--gold-accent);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(244, 229, 161, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-bottom p {
    color: var(--gold-accent);
    opacity: 0.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.2rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .nav-link i {
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-card.featured .news-image-wrapper {
        height: 240px;
    }
    
    .news-card.featured h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 968px) {
    .navbar .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-actions {
        margin-right: 0;
    }
    
    .nav-content {
        height: 70px;
        display: flex;
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: transparent;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid rgba(139, 92, 246, 0.3);
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
    
    .nav-actions {
        gap: 0.7rem;
    }
    
    .btn-login span,
    .btn-search {
        display: none;
    }
    
    .btn-login {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
    }
    
    .btn-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        transform: translateY(-40px);
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        align-items: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .zodiac-wheel {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-family: var(--font-custom);
        font-size: 2.5rem;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .zodiac-card {
        padding: 1rem 0.8rem;
    }
    
    .zodiac-icon {
        font-size: 2rem;
    }
    
    .zodiac-card h3 {
        font-size: 1rem;
    }
    
    .zodiac-date {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .btn-zodiac {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .news-filter-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .news-filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .news-card h3 {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.8rem;
    }
    
    .news-cta {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-pages {
        order: -1;
    }
}

@media (max-width: 576px) {
    .zodiac-wheel {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .nav-auth {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .btn-auth {
        width: 100%;
    }
    
    .section-title {
        font-family: var(--font-custom);
        font-size: 2rem;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .learn-image {
        height: 180px;
    }
    
    .learn-content {
        padding: 1.3rem;
    }
    
    .learn-card h3 {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .news-image-wrapper {
        height: 200px !important;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* ===== Zodiac Detail Section ===== */
.zodiac-detail-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.back-button:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
    transform: translateX(-5px);
    color: var(--gold-light);
}

.zodiac-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.zodiac-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.detail-zodiac-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    flex-shrink: 0;
}

.zodiac-title-section {
    flex-grow: 1;
}

.detail-title {
    font-family: var(--font-custom);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-dates {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.detail-element {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--purple-light);
    opacity: 0.9;
}

/* Tabs */
.horoscope-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--gold-accent);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple-light);
}

.tab-btn.active {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Content Grid */
.horoscope-content-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: flex;
    justify-content: center;
    width: 100%;
}

.horoscope-card {
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    overflow-wrap: break-word;
}

.horoscope-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-light);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.horoscope-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.horoscope-card h3 i {
    color: var(--purple-light);
}

.horoscope-card p,
.horoscope-card div {
    color: var(--gold-accent);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.horoscope-card #daily-text,
.horoscope-card #weekly-text,
.horoscope-card #monthly-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Quill içerik formatları */
.horoscope-card #weekly-text p,
.horoscope-card #monthly-text p {
    margin: 0 0 1rem 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.horoscope-card #weekly-text strong,
.horoscope-card #monthly-text strong {
    font-weight: 700;
    color: #fff;
    word-wrap: break-word;
}

.horoscope-card #weekly-text em,
.horoscope-card #monthly-text em {
    font-style: italic;
}

.horoscope-card #weekly-text ul,
.horoscope-card #monthly-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    text-align: left;
    word-wrap: break-word;
}

.horoscope-card #weekly-text li,
.horoscope-card #monthly-text li {
    margin-bottom: 0.5rem;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Locked Card Styles */
.locked-card {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.locked-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blur-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    filter: blur(8px);
    opacity: 0.3;
    user-select: none;
    pointer-events: none;
}

.blur-text p {
    color: var(--gold-accent);
    font-size: 1.1rem;
    line-height: 1.8;
}

.lock-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    background: rgba(45, 27, 105, 0.95);
    border: 2px solid var(--gold-light);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lock-content i.fa-lock {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.lock-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.lock-content p {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .zodiac-detail-section {
        padding: 100px 0 60px;
    }
    
    .zodiac-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .detail-zodiac-icon {
        width: 100px;
        height: 100px;
    }
    
    .detail-title {
        font-size: 2.5rem;
    }
    
    .horoscope-tabs {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .tab-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .horoscope-card {
        padding: 1.5rem;
    }
    
    .horoscope-card p,
    .horoscope-card div {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .detail-title {
        font-size: 2rem;
    }
    
    .detail-dates {
        font-size: 1rem;
    }
    
    .detail-zodiac-icon {
        width: 80px;
        height: 80px;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .horoscope-card h3 {
        font-size: 1.1rem;
    }
    
    .horoscope-card p,
    .horoscope-card div {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .horoscope-card {
        padding: 1.2rem;
    }
    
    .locked-card {
        min-height: 350px;
    }
    
    .lock-content {
        padding: 1.5rem;
    }
    
    .lock-content i.fa-lock {
        font-size: 2.5rem;
    }
    
    .lock-content h3 {
        font-size: 1.5rem;
    }
    
    .lock-content p {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== Astro Öğren Page Styles ===== */
.astro-learn-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
    background: transparent;
}

.astro-learn-hero .hero-content {
    text-align: center;
}

.astro-learn-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.astro-learn-hero .hero-title i {
    color: var(--purple-light);
}

.astro-learn-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 300;
}

.astro-learn-content {
    padding: 80px 0;
    position: relative;
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 2rem;
    background: rgba(20, 10, 45, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.content-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.content-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold-accent);
}

/* Medium Style Articles */
.articles-list {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.medium-article {
    background: rgba(20, 10, 45, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.medium-article:hover {
    transform: translateY(-8px);
    border-color: var(--purple-light);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.medium-article:hover .article-image img {
    transform: scale(1.05);
}

.article-body {
    padding: 2.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold-accent);
    opacity: 0.8;
}

.article-meta i {
    margin-right: 0.4rem;
    color: var(--purple-light);
}

.article-date,
.reading-time {
    display: flex;
    align-items: center;
}

.medium-article h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--gold-accent);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.article-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1.2rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--purple-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--purple-light);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 1rem;
    color: var(--purple-light);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

.learn-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid var(--gold-light);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.learn-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.learn-cta p {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.cta-button i {
    font-size: 1.3rem;
}

/* Responsive for Astro Öğren */
@media (max-width: 968px) {
    .astro-learn-hero {
        padding: 100px 0 40px;
        min-height: 35vh;
    }
    
    .astro-learn-hero .hero-title {
        font-size: 3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .astro-learn-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .articles-list {
        gap: 3rem;
    }
    
    .article-image {
        height: 300px;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .medium-article h2 {
        font-size: 1.8rem;
    }
    
    .content-intro h2 {
        font-size: 2rem;
    }
    
    .learn-cta h2 {
        font-size: 2rem;
    }
    
    .learn-cta {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .astro-learn-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .astro-learn-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .articles-list {
        gap: 2rem;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .medium-article h2 {
        font-size: 1.5rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* =============================================================================
   ASTROGUNDEM PAGE STYLES - Modern News/Magazine Layout
   ============================================================================= */

/* Hero Section */
.gundem-hero {
    background: transparent;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content-gundem {
    max-width: 800px;
    margin: 0 auto;
}

.gundem-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.gundem-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

/* Category Filter Section */
.category-section {
    padding: 40px 0;
    background: rgba(20, 10, 45, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-tab:hover::before {
    left: 100%;
}

.category-tab:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.category-tab.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(168, 85, 247, 0.3));
    border-color: #d4af37;
    color: #fff;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.category-tab i {
    font-size: 1.1rem;
}

/* Featured Article Section */
.featured-section {
    padding: 60px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(20, 10, 45, 0.7);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-article:hover::before {
    opacity: 1;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37, #f0c967);
    color: #1a0a2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-category {
    display: inline-block;
    width: fit-content;
    padding: 0.4rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.featured-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.featured-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.publish-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.bookmark-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookmark-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.bookmark-btn .fas {
    color: #d4af37;
}

.featured-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.08);
}

/* Articles Section */
.articles-section {
    padding: 60px 0 100px;
}

.articles-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3.5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Articles */
.main-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    order: 1;
    grid-auto-rows: 1fr;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 2;
}

.sidebar-widget {
    background: rgba(20, 10, 45, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.widget-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.popular-tag {
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #a855f7;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: #a855f7;
    transform: translateY(-2px);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 20, 60, 0.4);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.trending-item:hover {
    background: rgba(30, 20, 60, 0.7);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.trending-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #a855f7);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trending-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Article Cards */
.article-card {
    background: rgba(30, 20, 60, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(30, 20, 60, 0.95);
}

.article-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.article-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    flex-shrink: 0;
}

.article-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image-container img {
    transform: scale(1.08);
}

.article-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.article-category-badge.guncel {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.article-category-badge.retro {
    background: rgba(168, 85, 247, 0.9);
    color: #fff;
}

.article-category-badge.dolunay {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
}

.article-category-badge.astro-takvim {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.article-category-badge.iliskiler {
    background: rgba(236, 72, 153, 0.9);
    color: #fff;
}

.article-category-badge.kariyer {
    background: rgba(245, 158, 11, 0.9);
    color: #fff;
}

.article-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background: rgba(30, 20, 60, 0.5);
}

.article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.9rem;
}

.article-card:hover .article-title {
    color: #d4af37;
}

.article-summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8rem;
}

.article-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.date-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.read-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
}

/* Load More Button */
.load-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: rgba(20, 10, 45, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* Newsletter CTA Section */
.newsletter-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(168, 85, 247, 0.1));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(20, 10, 45, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    animation: pulse 2s infinite;
}

.newsletter-cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.newsletter-cta-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form-inline input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.newsletter-form-inline button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af37, #a855f7);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .articles-container {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .gundem-hero {
        padding: 100px 0 40px;
    }
    
    .gundem-title {
        font-size: 3rem;
    }
    
    .gundem-subtitle {
        font-size: 1.1rem;
    }
    
    .category-section {
        padding: 30px 0;
        position: relative;
        top: 0;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
        scrollbar-width: thin;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-article h2 {
        font-size: 2.2rem;
    }
    
    .featured-image {
        min-height: 300px;
        order: -1;
    }
    
    .articles-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
    }
    
    .main-articles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        order: 2;
    }
    
    .article-image-container {
        height: 220px;
    }
    
    .article-content {
        padding: 1.8rem;
    }
}

@media (max-width: 600px) {
    .gundem-title {
        font-size: 2.5rem;
    }
    
    .gundem-subtitle {
        font-size: 1rem;
    }
    
    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-article h2 {
        font-size: 1.8rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    
    .featured-image {
        min-height: 200px;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .main-articles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-image-container {
        height: 200px;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.4rem;
    }
    
    .article-summary {
        font-size: 0.9rem;
    }
    
    .newsletter-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-cta-box h2 {
        font-size: 2rem;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .newsletter-form-inline button {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================================================
   HIZMETLERIMIZ PAGE STYLES - Professional Services Layout
   ============================================================================= */

/* Services Hero Section */
.services-hero {
    background: transparent;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 1rem;
}

.services-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.services-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.6;
}

/* Services Grid Section */
.services-grid-section {
    padding: 50px 0;
}

.services-grid-section .container {
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Service Card Detail */
.service-card-detail {
    background: rgba(30, 20, 60, 0.85);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-detail:hover::before {
    opacity: 1;
}

.service-card-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Featured Service */
.service-card-detail.featured {
    border: 3px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37, #f0c967);
    color: #1a0a2e;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Service Card Image */
.service-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-detail:hover .service-card-image img {
    transform: scale(1.1);
}

/* Service Card Icon */
.service-card-icon {
    width: 60px;
    height: 60px;
    margin: -30px auto 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(212, 175, 55, 0.9));
    border: 3px solid rgba(30, 20, 60, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card-detail:hover .service-card-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Service Card Content */
.service-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.2rem;
    padding-top: 0.8rem;
}

.service-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.service-card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.service-features i {
    color: #d4af37;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Service Card Footer */
.service-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: auto;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.8), rgba(212, 175, 55, 0.8));
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.service-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 1), rgba(212, 175, 55, 1));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.service-btn.primary {
    background: linear-gradient(135deg, #d4af37, #a855f7);
    border: none;
    color: #fff;
}

.service-btn.primary:hover {
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    transform: translateX(5px) translateY(-2px);
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(168, 85, 247, 0.05));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(168, 85, 247, 0.2));
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
}

.services-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(30, 20, 60, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.services-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0.5;
}

.services-cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    animation: pulse 2s infinite;
}

.services-cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.services-cta-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #d4af37, #a855f7);
    border: none;
    color: #fff;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.cta-secondary-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

.cta-secondary-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .services-grid-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .services-hero {
        padding: 100px 0 40px;
    }
    
    .services-hero-title {
        font-size: 2.8rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
    
    .service-card-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin: 0 auto;
    }
    
    .service-card-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .service-card-description {
        text-align: center;
    }
    
    .service-card-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .featured-badge {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-center h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid-section .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .services-grid-section {
        padding: 40px 0;
    }

    .services-hero {
        padding: 90px 0 30px;
    }

    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card-detail {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }

    .service-card-image {
        height: 150px;
    }
    
    .service-card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .service-card-title {
        font-size: 1.5rem;
    }

    .service-card-description {
        font-size: 0.9rem;
    }

    .service-card-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .services-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .services-cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .section-header-center p {
        font-size: 0.95rem;
    }
}

/* ===== ADVANCED MOBILE RESPONSIVE - HOMEPAGE ===== */

/* Tablet & Mobile - 992px */
@media (max-width: 992px) {
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 90px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Zodiac Grid */
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* News Grid */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Global Container */
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 0;
        width: 100%;
    }
    
    .nav-content {
        padding: 0 1rem;
        gap: 1rem;
        width: 100%;
        grid-template-columns: auto 1fr auto;
    }
    
    .logo {
        font-size: 1.3rem;
        padding: 0;
    }
    
    .logo-svg {
        width: 35px;
        height: 35px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
        padding: 0;
        margin: 0;
    }
    
    .logo-text {
        font-family: var(--font-custom);
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 5, 32, 0.98) 0%, rgba(26, 13, 62, 0.98) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link i {
        font-size: 1.2rem;
    }
    
    /* Mobile: Show auth buttons next to hamburger */
    .nav-actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .nav-actions .btn-search {
        display: none; /* Hide search on mobile */
    }
    
    .nav-actions .nav-divider {
        display: none; /* Hide divider on mobile */
    }
    
    .nav-actions .btn-login {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        background: rgba(139, 92, 246, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(139, 92, 246, 0.3);
    }
    
    .nav-actions .btn-login span {
        display: none; /* Hide "Giriş Yap" text, show only icon */
    }
    
    .nav-actions .btn-login i {
        margin: 0;
    }
    
    .nav-actions .btn-cta {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(99, 102, 241, 0.8) 100%);
        backdrop-filter: blur(10px);
    }
    
    .nav-actions .btn-cta .fa-user-plus {
        display: inline-block; /* Show user-plus icon on mobile */
    }
    
    .nav-actions .btn-cta .arrow-icon {
        display: none; /* Hide arrow icon on mobile */
    }
    
    .nav-actions .btn-cta span {
        display: none; /* Hide "Üye Ol" text, show only icon */
    }
    
    .nav-actions .btn-cta i {
        margin: 0;
        transform: rotate(0deg);
    }
    
    /* Profile button on mobile - smaller and icon only */
    .btn-profile {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
        background: rgba(139, 92, 246, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(139, 92, 246, 0.3) !important;
        margin-right: 0.5rem !important;
        gap: 0.3rem !important;
    }
    
    .btn-profile i {
        font-size: 1rem !important;
    }
    
    /* Ensure profile button stays small even when menu is active */
    .nav-menu.active ~ .nav-content .btn-profile,
    .nav-actions .btn-profile {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
        gap: 0.3rem !important;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0;
        margin-right: 0;
        padding: 0.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 85px 0 30px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-wrapper {
        transform: translateY(-50px);
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-badge i {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        letter-spacing: 0.05rem;
    }
    
    .hero-content p {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 1.6rem;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.3rem;
        font-size: 0.95rem;
    }
    
    /* Features Section Mobile */
    .features {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-family: var(--font-custom);
    }
    
    .section-subtitle {
        font-family: var(--font-custom);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Zodiac Section Mobile */
    .zodiac {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .zodiac-card {
        padding: 1.5rem 1rem;
    }
    
    .zodiac-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .zodiac-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .zodiac-date {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .btn-zodiac {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* News Section Mobile */
    .news {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .news-filter-buttons {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .news-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .news-card {
        padding: 0;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-meta {
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .news-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .news-date {
        font-size: 0.75rem;
    }
    
    .news-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .news-cta {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cta-box {
        padding: 2.5rem 1rem;
        text-align: center;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .cta-icon i {
        font-size: 1.8rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .cta-box p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .contact-items {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
        font-size: 0.85rem;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    /* Global */
    .container {
        padding: 0 0.8rem;
    }
    
    .navbar .container {
        padding: 0 0.8rem;
    }
    
    .nav-content {
        padding: 0 0.8rem;
        gap: 0.5rem;
    }
    
    /* Make auth buttons smaller on very small screens */
    .nav-actions {
        gap: 0.3rem;
        margin-right: 0.3rem;
    }
    
    .nav-actions .btn-login,
    .nav-actions .btn-cta {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: auto;
    }
    
    /* Profile button even smaller on tiny screens */
    .btn-profile {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        margin-right: 0.3rem !important;
        gap: 0.2rem !important;
    }
    
    .btn-profile i {
        font-size: 0.9rem !important;
    }
    
    /* Ensure profile button stays small even when menu is active */
    .nav-menu.active ~ .nav-content .btn-profile,
    .nav-actions .btn-profile {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
        gap: 0.2rem !important;
    }
    
    .hamburger {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .hamburger span {
        width: 20px;
    }
    
    /* Hero Ultra Small */
    .hero-content {
        padding: 0 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.02rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Section Headers */
    .section-header {
        padding: 0 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Features */
    .features-grid {
        padding: 0 0.8rem;
    }
    
    /* Zodiac Cards Ultra Small */
    .zodiac-grid {
        gap: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .zodiac-card {
        padding: 1.2rem 0.8rem;
    }
    
    .zodiac-icon {
        font-size: 2rem;
    }
    
    .zodiac-card h3 {
        font-size: 1rem;
    }
    
    .zodiac-date {
        font-size: 0.7rem;
    }
    
    .btn-zodiac {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* News Cards Ultra Small */
    .news-grid {
        padding: 0 0.8rem;
    }
    
    .news-filter-buttons {
        padding: 0 0.8rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-card h3 {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
    
    /* CTA Ultra Small */
    .cta-box {
        padding: 2rem 0.8rem;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 0.9rem;
    }
    
    /* Contact Ultra Small */
    .contact-content {
        padding: 0 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem 0.8rem;
    }
    
    /* Footer Ultra Small */
    .footer-content {
        gap: 2rem;
        padding: 0 0.8rem;
    }
}

/* Extra Small Mobile - 375px */
@media (max-width: 375px) {
    .container {
        padding: 0 0.6rem;
    }
    
    .navbar .container,
    .nav-content {
        padding: 0 0.6rem;
    }
    
    .hero-content {
        padding: 0 0.6rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header {
        padding: 0 0.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .zodiac-grid,
    .news-grid {
        padding: 0 0.6rem;
    }
    
    .feature-card {
        padding: 1.5rem 0.8rem;
    }
    
    .zodiac-card {
        padding: 1rem 0.6rem;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .cta-box {
        padding: 2rem 0.6rem;
    }
    
    .contact-content {
        padding: 0 0.6rem;
    }
    
    .contact-form {
        padding: 1.5rem 0.6rem;
    }
    
    .footer-content {
        padding: 0 0.6rem;
    }
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .nav-link {
        min-height: 48px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-zodiac,
    .news-cta,
    .btn-submit {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    .news-filter-btn {
        min-height: 44px;
        padding: 0.7rem 1.3rem;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .zodiac-card:hover,
    .news-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .feature-card:active,
    .zodiac-card:active,
    .news-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-zodiac:active {
        transform: scale(0.96);
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 80px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid,
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Safe Area for Notched Devices (iPhone X+) */
@supports (padding: max(0px)) {
    .navbar,
    .hero,
    .features,
    .zodiac,
    .news,
    .cta-section,
    .contact,
    .footer {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    
    .nav-menu.active {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Dark Mode Support for Mobile */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: linear-gradient(135deg, rgba(10, 5, 32, 0.95) 0%, rgba(26, 13, 62, 0.95) 100%);
    }
    
    .nav-menu {
        background: linear-gradient(135deg, rgba(10, 5, 32, 0.98) 0%, rgba(26, 13, 62, 0.98) 100%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .feature-card:hover,
    .zodiac-card:hover,
    .news-card:hover {
        transform: none !important;
    }
}

/* ===== LOGIN PAGE STYLING ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
}

/* Login Card */
.login-card {
    background: rgba(10, 5, 32, 0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    padding: 2rem 1.75rem;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 4px 0 0 rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(139, 92, 246, 0.25);
    animation: cardEntrance 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.8) 25%, 
        rgba(212, 175, 55, 0.8) 50%, 
        rgba(139, 92, 246, 0.8) 75%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.login-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(212, 175, 55, 0.3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    border: 2px solid rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    animation: iconFloat 4s ease-in-out infinite;
    position: relative;
}

.login-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from 0deg,
        rgba(139, 92, 246, 0.6),
        rgba(212, 175, 55, 0.6),
        rgba(139, 92, 246, 0.6)
    );
    border-radius: 20px;
    z-index: -1;
    animation: rotate 4s linear infinite;
    opacity: 0.7;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    line-height: 1.2;
}

.login-header p {
    color: rgba(244, 229, 161, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* Input Groups */
.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.input-group label i {
    font-size: 0.9rem;
    color: rgba(139, 92, 246, 0.9);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 0.9rem 1rem;
    padding-right: 2.75rem;
    background: rgba(10, 5, 32, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--gold-accent);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-wrapper input::placeholder {
    color: rgba(244, 229, 161, 0.35);
    font-size: 0.9rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.8);
    background: rgba(10, 5, 32, 0.8);
    box-shadow: 
        0 0 0 4px rgba(139, 92, 246, 0.15),
        0 10px 25px rgba(139, 92, 246, 0.25);
    transform: translateY(-2px);
}

.input-wrapper.focused {
    animation: inputGlow 0.3s ease;
}

@keyframes inputGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.input-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(139, 92, 246, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: rgba(139, 92, 246, 1);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(244, 229, 161, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.password-toggle:hover {
    color: var(--gold-light);
    transform: translateY(-50%) scale(1.15);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

/* Login Button */
.login-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
    text-transform: uppercase;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover::before {
    left: 100%;
}

.login-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.7),
        0 0 40px rgba(139, 92, 246, 0.5);
}

.login-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-btn.loading {
    pointer-events: none;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.login-btn.loading .btn-loader {
    display: flex;
}

/* Messages */
.message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1.3rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: messageSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes messageSlide {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.error-message {
    background: rgba(220, 38, 38, 0.25);
    border: 2px solid rgba(220, 38, 38, 0.6);
    border-left: 5px solid rgba(220, 38, 38, 1);
    color: #fca5a5;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.error-message i {
    font-size: 1.4rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.25);
    border: 2px solid rgba(34, 197, 94, 0.6);
    border-left: 5px solid rgba(34, 197, 94, 1);
    color: #86efac;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.success-message i {
    font-size: 1.4rem;
}

/* Footer */
.login-footer {
    margin-top: 2rem;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0 1.25rem;
    color: rgba(244, 229, 161, 0.5);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(139, 92, 246, 0.4), 
        transparent);
}

.divider span {
    padding: 0 1.25rem;
    font-weight: 500;
}

.signup-link {
    text-align: center;
    color: rgba(244, 229, 161, 0.85);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.signup-link a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.signup-link a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.signup-link a:hover {
    color: var(--gold-accent);
    transform: translateX(3px);
}

.signup-link a:hover::after {
    width: calc(100% - 1.5rem);
}

.signup-link a i {
    transition: transform 0.3s ease;
}

.signup-link a:hover i {
    transform: translateX(4px);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
    border-radius: 50%;
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float1 15s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);
    animation: float2 18s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent);
    animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.15); }
    66% { transform: translate(30px, -20px) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.2); }
}

/* Home Button */
.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.home-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.home-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.home-btn:hover i {
    transform: scale(1.15);
}

.home-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 576px) {
    .login-page {
        padding: 85px 1rem 1.5rem;
    }

    .login-card {
        padding: 1.75rem 1.5rem;
        border-radius: 20px;
    }

    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        border-radius: 18px;
    }

    .login-icon::after {
        border-radius: 18px;
    }

    .login-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .login-header p {
        font-size: 0.9rem;
    }

    .input-group {
        margin-bottom: 1.1rem;
    }

    .input-group label {
        font-size: 0.85rem;
    }

    .input-wrapper input {
        padding: 0.85rem 1rem;
        padding-right: 2.5rem;
        font-size: 0.9rem;
    }

    .login-btn {
        padding: 0.95rem;
        font-size: 0.95rem;
    }

    .message {
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
    }

    .divider {
        margin: 1.25rem 0 1rem;
        font-size: 0.85rem;
    }

    .signup-link {
        font-size: 0.85rem;
    }

    .shape {
        opacity: 0.7;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 180px;
        height: 180px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    .home-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .home-btn i {
        font-size: 1rem;
    }
}

/* Keep old auth-page for signup compatibility */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 1rem 1rem;
    background: transparent; /* Şeffaf arkaplan - arka sayfayı gösterir */
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.auth-form {
    width: 100%;
    max-width: 380px;
    max-height: 86vh;
    overflow-y: auto;
    padding: 2rem 1.75rem;
    background: rgba(10, 5, 32, 0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 4px 0 0 rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(139, 92, 246, 0.25);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-form:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 2px 0 0 rgba(255, 255, 255, 0.25) inset,
        0 0 80px rgba(139, 92, 246, 0.35);
    transform: translateY(-2px);
}

/* Custom scrollbar for auth form */
.auth-form::-webkit-scrollbar {
    width: 5px;
}

.auth-form::-webkit-scrollbar-track {
    background: rgba(10, 5, 32, 0.3);
    border-radius: 10px;
}

.auth-form::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 10px;
}

.auth-form::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.auth-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(212, 175, 55, 0.25));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: iconFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.auth-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.auth-form h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.auth-subtitle {
    color: rgba(244, 229, 161, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.auth-form label i {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(139, 92, 246, 0.8);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 2.8rem !important;
}

.toggle-password {
    position: absolute;
    right: 0.65rem;
    background: none;
    border: none;
    color: rgba(244, 229, 161, 0.6);
    cursor: pointer;
    padding: 0.4rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--gold-light);
    transform: scale(1.1);
}

.auth-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(10, 5, 32, 0.6);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--gold-accent);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
}

.auth-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(10, 5, 32, 0.6);
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--gold-accent);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-body);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b5cf6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.auth-form select option {
    background: #1a0d3e;
    color: var(--gold-accent);
    padding: 0.5rem;
}

.auth-form input::placeholder {
    color: rgba(244, 229, 161, 0.4);
    font-size: 0.9rem;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.8);
    background: rgba(10, 5, 32, 0.8);
    box-shadow: 
        0 0 0 4px rgba(139, 92, 246, 0.15),
        0 8px 20px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    color: rgba(244, 229, 161, 0.6);
    font-size: 0.8rem;
}

.form-hint i {
    font-size: 0.75rem;
}

.auth-form .btn-primary {
    width: 100%;
    padding: 1rem;
    margin-top: 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
}

.auth-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.auth-form .btn-primary:hover::before {
    left: 100%;
}

.auth-form .btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(139, 92, 246, 0.4);
}

.auth-form .btn-primary:active:not(:disabled) {
    transform: translateY(-1px);
}

.auth-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0 1.25rem;
    color: rgba(244, 229, 161, 0.5);
    font-size: 0.9rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.form-divider span {
    padding: 0 0.9rem;
}

.auth-link {
    text-align: center;
    margin: 0;
    color: rgba(244, 229, 161, 0.8);
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.auth-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.auth-link a:hover {
    color: var(--gold-accent);
}

.auth-link a:hover::after {
    width: 100%;
}

.form-error {
    display: none;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(220, 38, 38, 0.5);
    border-left: 4px solid rgba(220, 38, 38, 0.9);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.95rem;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.form-success {
    display: none;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(34, 197, 94, 0.5);
    border-left: 4px solid rgba(34, 197, 94, 0.9);
    border-radius: 12px;
    color: #86efac;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.form-success i {
    font-size: 1.3rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Admin & Profile Pages ===== */
.admin-page,
.profile-page {
    min-height: 100vh;
    padding: 120px 1.5rem 2rem;
}

.admin-page h1,
.profile-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    background: rgba(26, 13, 62, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.card h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

/* Table Styling */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.table thead {
    background: rgba(139, 92, 246, 0.2);
}

.table th {
    padding: 1rem;
    text-align: left;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.4);
}

.table td {
    padding: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.table tbody tr:hover {
    background: rgba(139, 92, 246, 0.1);
}

.table .btn {
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    background: rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table .btn:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.table .btn.danger {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

.table .btn.danger:hover {
    background: rgba(220, 38, 38, 0.5);
}

.table .btn.small {
    padding: 0.375rem 0.875rem;
    font-size: 0.8rem;
}

/* Profile List */
.profile-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.profile-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: rgba(10, 5, 32, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-list li strong {
    color: var(--gold-light);
}

/* Buttons */
.btn {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

/* Profile Button */
.btn-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
}

.btn-profile:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(212, 175, 55, 0.3));
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-profile i {
    font-size: 1.1rem;
}

.btn-logout {
    padding: 0.625rem 1.25rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
}

/* Responsive Auth Pages */
@media (max-width: 576px) {
    .auth-page {
        padding: 80px 0.75rem 1rem;
    }

    .auth-form {
        padding: 1.75rem 1.5rem;
        max-width: 100%;
        max-height: 88vh;
        border-radius: 20px;
    }
    
    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        border-radius: 18px;
    }

    .auth-header {
        margin-bottom: 1.5rem;
    }

    .auth-form h2 {
        font-size: 1.75rem;
    }

    .auth-subtitle {
        font-size: 0.9rem;
    }

    .auth-form label {
        font-size: 0.85rem;
    }

    .auth-form input {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .auth-form .btn-primary {
        padding: 0.95rem;
        font-size: 0.95rem;
    }

    .auth-form .form-group {
        margin-bottom: 1.1rem;
    }

    .password-input-wrapper input {
        padding-right: 2.5rem !important;
    }

    .toggle-password {
        right: 0.5rem;
        font-size: 0.9rem;
        padding: 0.3rem;
    }

    .form-divider {
        margin: 1.25rem 0 1rem;
        font-size: 0.85rem;
    }

    .auth-link {
        font-size: 0.85rem;
    }

    .form-hint {
        font-size: 0.8rem;
    }

    .form-error,
    .form-success {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
    }
    
    .table .btn.small {
        padding: 0.25rem 0.5rem;
    }
}

/* ====================== PROFILE PAGE ====================== */
.profile-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
}
