/* 
* Fal Yorumcum - Ana CSS Dosyası
* Tasarım: Modern, Mor-Turuncu Renk Paleti
*/

/* Root Variables */
:root {
    --primary-color: #8e24aa;
    --primary-light: #c158dc;
    --primary-dark: #5c007a;
    --secondary-color: #4a148c;
    --secondary-light: #7c43bd;
    --secondary-dark: #12005e;
    --accent-color: #ff9800;
    --accent-light: #ffc947;
    --accent-dark: #c66900;
    --text-color: #333;
    --text-light: #707070;
    --background-color: #f8f5ff;
    --card-bg: #ffffff;
    --border-radius: 20px;
    --box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.min-vh-80 {
    min-height: 80vh;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-bottom {
    padding-bottom: 100px;
}

.bg-light-purple {
    background-color: rgba(142, 36, 170, 0.03);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar Styles */
.navbar {
    padding: 20px 0;
    background-color: var(--primary-dark);
    transition: var(--transition);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.navbar-brand {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--accent-light);
}

.brand-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.toggler-line {
    width: 100%;
    height: 2px;
    background-color: white;
    display: block;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.toggler-line:nth-child(1) {
    top: 25%;
}

.toggler-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.toggler-line:nth-child(3) {
    bottom: 25%;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 40%;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 70%;
}

.header-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.header-btn-outline {
    border: 2px solid white;
    color: white;
}

.header-btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.header-btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.header-btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    color: white;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-description {
    color: var(--text-light);
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
}

.btn-primary-gradient::before {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 36, 170, 0.2);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary::before {
    background: var(--primary-color);
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light::before {
    background: white;
}

.btn-outline-light:hover {
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}

.btn-light-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 36px;
}

.btn-light-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-dark));
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTAiIGhlaWdodD0iMTUwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiLz48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHg9IjI1IiB5PSIyNSIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMjUiIHJ5PSIyNSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    padding-left: 40px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img.main-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.float-1 {
    top: 5%;
    left: 15%;
    animation-delay: 0s;
}

.float-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    font-size: 2.5rem;
}

.float-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.float-4 {
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
    font-size: 2.7rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* Fortune Cards */
.fortune-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.fortune-card::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.fortune-card::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition);
}

.fortune-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 36, 170, 0.1);
}

.fortune-card:hover::before {
    transform: scale(2.5);
}

.fortune-card:hover::after {
    transform: scale(2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(142, 36, 170, 0.05);
    border-radius: 50%;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(142, 36, 170, 0.2);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fortune-icon {
    font-size: 2.5rem;
    display: inline-block;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-link {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.card-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: var(--transition);
}

.card-link:hover {
    color: var(--accent-dark);
}

.card-link:hover::after {
    width: 100%;
}

.card-link i {
    transition: var(--transition);
    margin-left: 3px;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Steps Section */
.steps-container {
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
    z-index: 0;
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.2;
    z-index: -1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 36, 170, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.team-position {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.team-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    margin-top: 20px;
    height: calc(100% - 20px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    font-family: 'Georgia', serif;
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.2;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid rgba(142, 36, 170, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiLz48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHg9IjI1IiB5PSIyNSIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMjUiIHJ5PSIyNSIvPjwvc3ZnPg=='),
                linear-gradient(135deg, var(--primary-color), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Blog Section */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(142, 36, 170, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}

.blog-date .day {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.blog-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--accent-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blog-link {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    font-size: 0.9rem;
}

.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-dark);
}

.blog-link:hover::after {
    width: 100%;
}

.blog-link i {
    transition: var(--transition);
    margin-left: 3px;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-info {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(142, 36, 170, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text p, .contact-text a {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.form-control {
    border: 1px solid rgba(142, 36, 170, 0.1);
    border-radius: 10px;
    padding: 12px 20px;
    height: auto;
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-container::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 90px;
        padding-bottom: 70px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-wrapper {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTAiIGhlaWdodD0iMTUwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiLz48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW9wYWNpdHk9IjAuMDMiIHg9IjI1IiB5PSIyNSIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMjUiIHJ5PSIyNSIvPjwvc3ZnPg==');
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    position: relative;
    padding-left: 18px;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 22px;
}

.footer-links a:hover::before {
    left: 5px;
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--accent-color);
    color: white;
}

.contact-item a, 
.contact-item span {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.contact-item:hover a,
.contact-item:hover span {
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: white;
}

/* Animation for footer social icons */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-icon:hover {
    animation: pulse 1s infinite;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .footer [class*="col-"]:not(:last-child) {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
}

.newsletter-form .btn-accent {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 30px;
    padding: 0 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    z-index: 10;
}

.newsletter-form .btn-accent:hover {
    background: var(--accent-light);
}

.newsletter-form .input-group {
    position: relative;
}

/* Payment Icons */
.payment-icons {
    color: rgba(255, 255, 255, 0.7);
}

.payment-icons i {
    transition: var(--transition);
}

.payment-icons i:hover {
    color: white;
    transform: translateY(-3px);
}

/* Content Wrapper */
.content-wrapper {
    padding-top: 80px; /* To prevent content from being hidden behind the fixed navbar */
}

/* Auth Pages Styles */
.auth-card {
    background: white;
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.auth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.auth-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.auth-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.auth-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.auth-form .form-control,
.auth-form .form-select {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(142, 36, 170, 0.1);
}

.auth-form .form-control:focus,
.auth-form .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(142, 36, 170, 0.15);
    border-color: var(--primary-color);
}

.auth-form .input-group-text {
    background-color: rgba(142, 36, 170, 0.05);
    border: 1px solid rgba(142, 36, 170, 0.1);
    color: var(--primary-color);
    border-radius: 10px 0 0 10px;
}

.auth-form .input-group .form-control {
    border-radius: 0 10px 10px 0;
}

.auth-btn {
    padding: 12px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.auth-footer {
    color: var(--text-light);
}

.auth-divider {
    position: relative;
    text-align: center;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    display: inline-block;
    padding: 0 15px;
    background-color: white;
    position: relative;
    color: var(--text-light);
}

.social-btn {
    padding: 10px 15px;
    transition: var(--transition);
    border-radius: 10px;
}

.social-btn:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.login-section, .register-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(142, 36, 170, 0.03), rgba(255, 152, 0, 0.03));
}

.text-sm {
    font-size: 0.875rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(142, 36, 170, 0.25);
    border-color: var(--primary-color);
}

/* Auth Responsive */
@media (max-width: 767px) {
    .auth-title {
        font-size: 1.5rem;
    }
    
    .auth-icon {
        font-size: 2.5rem;
    }
} 