/* Modern Diyetisyen Web Sitesi CSS */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #81C784;
    --accent-color: #2E7D32;
    --light-green: #E8F5E8;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 12px 30px;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}


/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-text {
    font-weight: 500;
}

.top-bar-contact {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-contact i {
    margin-right: 5px;
}

/* Header */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-decoration: none;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-login i {
    margin-right: 5px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-number i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.phone-number span {
    color: var(--text-light);
    flex-shrink: 0;
}

.phone-number strong {
    color: var(--text-dark);
    font-weight: 600;
    flex-shrink: 0;
}

.menu-icon {
    background: #FF6B6B;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    grid-template-rows: repeat(3, 4px);
    gap: 2px;
}

.menu-grid span {
    background: var(--white);
    border-radius: 1px;
}

/* Dropdown hover functionality */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 0;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary-color);
}

/* Remove dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--white);
    clip-path: polygon(
        0% 100%,
        0% 70%,
        8% 55%,
        15% 40%,
        22% 30%,
        30% 25%,
        38% 35%,
        45% 20%,
        52% 30%,
        60% 15%,
        68% 25%,
        75% 20%,
        82% 40%,
        90% 25%,
        100% 35%,
        100% 100%
    );
    z-index: 10;
}

/* Dağ gölgesi efekti */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, var(--white) 100%);
    clip-path: polygon(
        0% 100%,
        0% 75%,
        10% 60%,
        18% 45%,
        25% 35%,
        32% 30%,
        40% 40%,
        48% 25%,
        55% 35%,
        62% 20%,
        70% 30%,
        78% 25%,
        85% 45%,
        92% 30%,
        100% 40%,
        100% 100%
    );
    z-index: 9;
    opacity: 0.7;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="%23FFB74D" opacity="0.6"/><circle cx="80" cy="20" r="1.5" fill="%23FFB74D" opacity="0.8"/><circle cx="15" cy="70" r="1" fill="%23FFB74D" opacity="0.7"/><circle cx="85" cy="80" r="2.5" fill="%23FFB74D" opacity="0.5"/></svg>');
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: var(--white);
}

.hero-btn::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 650px;
    height: 650px;
}

.hero-main-image {
    width: 520px;
    height: 520px;
    border-radius: 50% 30% 50% 30%;
    border: 8px solid #C8E6C9;
    object-fit: cover;
    position: absolute;
    top: 65px;
    left: 65px;
    z-index: 3;
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Dönen sarı toburcuklar */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bubble {
    position: absolute;
    background: linear-gradient(135deg, #FFD54F, #FFF176);
    border-radius: 50%;
    opacity: 0.8;
    animation: float-rotate 8s linear infinite;
}

.bubble-1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 12px;
    height: 12px;
    top: 30%;
    right: 15%;
    animation-delay: -1s;
}

.bubble-3 {
    width: 18px;
    height: 18px;
    bottom: 25%;
    left: 15%;
    animation-delay: -2s;
}

.bubble-4 {
    width: 10px;
    height: 10px;
    bottom: 35%;
    right: 20%;
    animation-delay: -3s;
}

.bubble-5 {
    width: 14px;
    height: 14px;
    top: 15%;
    left: 50%;
    animation-delay: -4s;
}

.bubble-6 {
    width: 16px;
    height: 16px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.bubble-7 {
    width: 11px;
    height: 11px;
    bottom: 15%;
    left: 40%;
    animation-delay: -6s;
}

.bubble-8 {
    width: 13px;
    height: 13px;
    top: 45%;
    left: 5%;
    animation-delay: -7s;
}

.bubble-9 {
    width: 9px;
    height: 9px;
    top: 10%;
    right: 25%;
    animation-delay: -1.5s;
}

.bubble-10 {
    width: 17px;
    height: 17px;
    bottom: 40%;
    left: 30%;
    animation-delay: -3.5s;
}

.bubble-11 {
    width: 8px;
    height: 8px;
    top: 70%;
    left: 20%;
    animation-delay: -5.5s;
}

.bubble-12 {
    width: 20px;
    height: 20px;
    bottom: 10%;
    right: 30%;
    animation-delay: -2.5s;
}

.bubble-13 {
    width: 6px;
    height: 6px;
    top: 35%;
    left: 70%;
    animation-delay: -4.5s;
}

.bubble-14 {
    width: 14px;
    height: 14px;
    bottom: 60%;
    right: 5%;
    animation-delay: -6.5s;
}

.bubble-15 {
    width: 11px;
    height: 11px;
    top: 80%;
    left: 60%;
    animation-delay: -0.5s;
}

.bubble-16 {
    width: 7px;
    height: 7px;
    top: 25%;
    right: 40%;
    animation-delay: -7.5s;
}

@keyframes float-rotate {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.8;
    }
}

/* Dekoratif elementler */
.hero-decorative {
    position: absolute;
    z-index: 1;
}

.hero-leaf-1 {
    top: 100px;
    left: -20px;
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    border-radius: 0 100% 0 100%;
    transform: rotate(-15deg);
}

.hero-leaf-2 {
    bottom: 150px;
    left: 20px;
    width: 40px;
    height: 60px;
    background: linear-gradient(45deg, #66BB6A, #A5D6A7);
    border-radius: 0 100% 0 100%;
    transform: rotate(25deg);
}

.hero-lemon-1 {
    top: 200px;
    left: 150px;
    width: 50px;
    height: 25px;
    background: #FFD54F;
    border-radius: 50%;
    transform: rotate(-20deg);
}

.hero-lemon-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 20px;
    background: #FFF176;
    border-radius: 50%;
}

.hero-lemon-2 {
    bottom: 200px;
    left: 200px;
    width: 40px;
    height: 20px;
    background: #FFD54F;
    border-radius: 50%;
    transform: rotate(45deg);
}

.hero-lemon-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 15px;
    background: #FFF176;
    border-radius: 50%;
}

.hero-dot-1 {
    top: 150px;
    right: 100px;
    width: 12px;
    height: 12px;
    background: #FFB74D;
    border-radius: 50%;
}

.hero-dot-2 {
    bottom: 100px;
    right: 150px;
    width: 8px;
    height: 8px;
    background: #FFB74D;
    border-radius: 50%;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="20" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="90" cy="30" r="1.5" fill="%234CAF50" opacity="0.1"/><circle cx="20" cy="80" r="0.8" fill="%234CAF50" opacity="0.1"/><circle cx="80" cy="70" r="1.2" fill="%234CAF50" opacity="0.1"/></svg>');
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin: 0 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ddd;
    font-size: 1.2rem;
    margin: 0 2px;
}

.stars i.active {
    color: #FFD700;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Blog Section */
.blog-section {
    background: var(--light-gray);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-date i {
    margin-right: 5px;
}

.blog-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    background: var(--white);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="80" cy="20" r="1.5" fill="%234CAF50" opacity="0.1"/><circle cx="15" cy="70" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="85" cy="80" r="2" fill="%234CAF50" opacity="0.1"/></svg>');
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-brand-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.3);
}

.contact-icon i {
    color: var(--white);
    font-size: 0.6rem;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact {
        display: none !important;
    }
    
    /* İletişim Bilgileri başlığını da gizle */
    .footer-section:has(.footer-contact) {
        display: none !important;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Footer brand'ı ortala */
    .footer-brand {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-brand-text {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-top: 3rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .hero-section {
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 4rem;
        min-height: 70vh;
    }
    
    .hero-content {
        order: 2;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: 1;
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    .hero-image-container {
        width: 300px !important;
        height: 300px !important;
        position: relative;
    }
    
    .hero-main-image {
        width: 250px !important;
        height: 250px !important;
        top: 25px !important;
        left: 25px !important;
        border-width: 4px;
    }
    
    .floating-bubbles {
        display: none;
    }
    
    .hero-decorative {
        display: none;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    /* Top Bar Mobile */
    .top-bar .row {
        text-align: center;
    }
    
    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        text-align: center !important;
        margin-bottom: 5px;
    }
    
    .top-bar-contact {
        display: block;
        margin-top: 5px;
    }
    
    /* Header Mobile */
    .header-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 1rem;
    }
    
    .btn-login {
        display: block;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .phone-number {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .menu-icon {
        display: none !important;
    }
    
    /* Mobile Menu Fix */
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Blog Styles */
.blog-content {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.blog-content {
    padding: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 0.8rem;
    margin-top: -1.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--light-gray);
    border-radius: 8px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.blog-meta .blog-date {
    margin-top: 0;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: var(--transition);
    margin-top: -0.5rem;
    display: block;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    margin-left: 0;
    text-align: left;
}

/* Blog Card Button */
.blog-card .btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.search-form .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: var(--transition);
}

.post-content h6 a:hover {
    color: var(--primary-color);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-widget .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.newsletter-widget .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-widget .btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.newsletter-widget .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Featured Services */
.featured-services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.featured-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="25" r="1.2" fill="%234CAF50" opacity="0.08"/><circle cx="85" cy="35" r="1.8" fill="%234CAF50" opacity="0.08"/><circle cx="25" cy="75" r="1" fill="%234CAF50" opacity="0.08"/><circle cx="75" cy="65" r="1.5" fill="%234CAF50" opacity="0.08"/></svg>');
    z-index: 1;
}

.featured-services-section .container {
    position: relative;
    z-index: 2;
}

.featured-service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.featured-service-card:hover::before {
    transform: scaleX(1);
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.featured-service-card:hover .service-image img {
    transform: scale(1.1);
}

.featured-service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.featured-service-card:hover h4 {
    color: var(--primary-color);
}

.featured-service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

.service-features i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.featured-service-card .btn {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* BMI Calculator Styles */
.about-quote {
    padding: 2rem 0;
}

.quote-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
    text-align: center;
}

.badge-text {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.badge-subtitle {
    display: block;
    font-size: 0.9rem;
    margin-top: 2px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quote-box {
    background: var(--light-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-author {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
}

.bmi-calculator {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
}

.calculator-header h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.calculator-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.bmi-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bmi-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.bmi-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.bmi-result {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.result-card h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bmi-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.bmi-number {
    font-size: 3rem;
    font-weight: 700;
}

.bmi-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.bmi-status {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.ideal-weight {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.recommendation {
    font-size: 1rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

/* BMI Status Colors */
.bmi-severe-underweight {
    background: #2980b9 !important;
}

.bmi-underweight {
    background: #3498db !important;
}

.bmi-normal {
    background: #27ae60 !important;
}

.bmi-overweight {
    background: #f39c12 !important;
}

.bmi-obese {
    background: #e74c3c !important;
}

.bmi-severe-obese {
    background: #c0392b !important;
}

.bmi-extreme-obese {
    background: #8b0000 !important;
}

/* Additional Info Styles */
.additional-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.info-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* Login Page Styles */
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8f0 100%);
}

.login-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.login-title {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.login-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

.info-item i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.input-group-text {
    background: var(--light-green);
    border: 2px solid var(--border-color);
    border-right: none;
    color: var(--primary-color);
}

.form-control {
    border-left: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-control:focus + .input-group-text,
.input-group-text:has(+ .form-control:focus) {
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .featured-service-card {
        padding: 2rem 1.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .bmi-calculator {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .quote-box {
        padding: 1.5rem;
    }
    
    .bmi-number {
        font-size: 2.5rem;
    }
    
    .login-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
}

/* Blog Detail Styles */
.blog-detail {
    background: var(--white);
}

.blog-detail-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.blog-featured-image {
    margin-bottom: 2rem;
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.blog-meta {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 20px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-date {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-author {
    color: var(--text-light);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-views {
    color: var(--text-light);
}

.blog-content {
    margin-bottom: 2rem;
}

.blog-excerpt {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-text h1, .blog-text h2, .blog-text h3, .blog-text h4, .blog-text h5, .blog-text h6 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-text h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.blog-text p {
    margin-bottom: 1.5rem;
}

.blog-text ul, .blog-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-text li {
    margin-bottom: 0.5rem;
}

.blog-text blockquote {
    background: var(--light-green);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    font-style: italic;
    font-size: 1.1rem;
}

.blog-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.blog-share {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.blog-share h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-facebook {
    background: #3b5998;
    color: var(--white);
    border: none;
}

.btn-facebook:hover {
    background: #2d4373;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-twitter {
    background: #1da1f2;
    color: var(--white);
    border: none;
}

.btn-twitter:hover {
    background: #0d8bd9;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-linkedin {
    background: #0077b5;
    color: var(--white);
    border: none;
}

.btn-linkedin:hover {
    background: #005885;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-2px);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-post:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.related-post .post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post .post-content {
    flex: 1;
}

.related-post .post-content h6 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
}

.related-post .post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post .post-content h6 a:hover {
    color: var(--primary-color);
}

.related-post .post-content small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Mobile Responsive for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-content {
        padding: 1.5rem;
    }
    
    .blog-featured-image img {
        height: 250px;
    }
    
    .blog-meta {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .blog-meta span {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .blog-excerpt {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .blog-text {
        font-size: 1rem;
    }
    
    .blog-text h2 {
        font-size: 1.5rem;
    }
    
    .blog-text h3 {
        font-size: 1.3rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-buttons .btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post .post-image {
        width: 100%;
        height: 150px;
        align-self: center;
    }
}

/* Modern Contact Page Styles */
.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.contact-info-card h5 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card:hover h5 {
    color: var(--primary-color);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Working Hours Styling */
.working-hours {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.working-hours h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.hour-item .day {
    font-weight: 500;
    color: var(--text-dark);
}

.hour-item .time {
    font-weight: 600;
    color: var(--primary-color);
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    background: var(--white);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

/* Enhanced Map Container */
.contact-map h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.contact-map h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

#map {
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

/* Enhanced FAQ Section */
.accordion-item {
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--light-green), rgba(76, 175, 80, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234CAF50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    /* Mobilde 2x2 düzen için col-6 kullan */
    .contact-info-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-card h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .working-hours {
        padding: 1.5rem;
    }
    
    .hour-item {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1rem 0.6rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-info-card h5 {
        font-size: 0.9rem;
    }
    
    .contact-info-card p {
        font-size: 0.8rem;
    }
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .working-hours {
        padding: 1.5rem;
    }
    
    .hour-item {
        padding: 10px 12px;
    }
}

/* How We Work Section */
.how-we-work-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="25" r="1.5" fill="%234CAF50" opacity="0.06"/><circle cx="80" cy="35" r="2" fill="%234CAF50" opacity="0.06"/><circle cx="30" cy="75" r="1.2" fill="%234CAF50" opacity="0.06"/><circle cx="70" cy="65" r="1.8" fill="%234CAF50" opacity="0.06"/></svg>');
    z-index: 1;
}

.how-we-work-section .container {
    position: relative;
    z-index: 2;
}

.work-step-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.work-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.work-step-card:hover::before {
    transform: scaleX(1);
}

.work-step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-color);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.step-icon i {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.work-step-card:hover .step-icon i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.work-step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.work-step-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.work-step-card:hover h4 {
    color: var(--primary-color);
}

.work-step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Step Connection Lines (Desktop Only) */
@media (min-width: 992px) {
    .work-step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -50px;
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        transform: translateY(-50%);
        z-index: 1;
        opacity: 0.3;
    }
    
    .work-step-card:not(:last-child):hover::after {
        opacity: 0.8;
        animation: flow 2s ease-in-out infinite;
    }
}

@keyframes flow {
    0%, 100% {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }
    50% {
        background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    }
}

/* Mobile Responsive for How We Work */
@media (max-width: 768px) {
    .work-step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .step-icon i {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
        top: -6px;
        right: -6px;
    }
    
    .work-step-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .work-step-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .work-step-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .step-icon i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
        top: -5px;
        right: -5px;
    }
    
    .work-step-card h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .work-step-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Modern Experience Cards */
.experience-card-modern {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.experience-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.experience-card-modern:hover::before {
    transform: scaleX(1);
}

.experience-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.15);
    border-color: var(--primary-color);
}

.experience-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.experience-icon-modern::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card-modern:hover .experience-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.experience-card-modern:hover .experience-icon-modern::after {
    opacity: 0.3;
}

.experience-card-modern h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.experience-card-modern:hover h4 {
    color: var(--primary-color);
}

.experience-card-modern p {
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Responsive for Experience Cards */
@media (max-width: 768px) {
    .experience-card-modern {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem;
    }
    
    .experience-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .experience-card-modern h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .experience-card-modern p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .experience-card-modern {
        padding: 1.2rem 0.8rem !important;
        margin-bottom: 1.2rem;
    }
    
    .experience-icon-modern {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 0.8rem;
    }
    
    .experience-card-modern h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .experience-card-modern p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.2rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .section-subtitle-enhanced {
        font-size: 1rem;
    }
    
    .ultra-modern-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 0.9rem;
    }
    
    .goal-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .goal-option label {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
    }
    
    .goal-option label i {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
    }
    
    
    .info-card,
    .contact-card,
    .trust-card {
        padding: 1.5rem;
    }
    
    .phone-number a {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 10px;
    }
    
    .step {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .step-circle {
        margin-bottom: 0;
        margin-right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .ultra-modern-form-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .ultra-modern-input input,
    .ultra-modern-select select,
    .ultra-modern-textarea textarea {
        padding: 15px 40px 15px 15px;
        font-size: 0.9rem;
    }
    
    .ultra-modern-input label,
    .ultra-modern-select label,
    .ultra-modern-textarea label {
        font-size: 0.9rem;
        left: 15px;
    }
    
    .ultra-modern-input i,
    .ultra-modern-select i,
    .ultra-modern-textarea i {
        right: 15px;
        font-size: 1rem;
    }
    
    .goal-option label {
        padding: 0.8rem;
    }
    
    .goal-option label i {
        font-size: 1.3rem;
    }
    
    .goal-option label span {
        font-size: 0.9rem;
    }
    
    .btn-nav {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .info-card,
    .contact-card,
    .trust-card {
        padding: 1.2rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step span {
        font-size: 0.8rem;
    }
}

/* Modern Alert Styles */
.modern-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 350px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    overflow: hidden;
}

.modern-alert-info {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: var(--white);
}

.modern-alert-success {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.modern-alert-error {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: var(--white);
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 12px;
}

.alert-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-content span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.alert-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Success Modal Styles */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease-out;
}

.success-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: bounceIn 0.6s ease-out;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.success-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Error Message Styles for Form Inputs */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    border-left: 3px solid #dc3545;
    animation: slideDown 0.3s ease-out;
}

.ultra-modern-input.error input,
.ultra-modern-select.error select,
.ultra-modern-textarea.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.ultra-modern-input.error i,
.ultra-modern-select.error i,
.ultra-modern-textarea.error i {
    color: #dc3545;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Focus and Filled States */
.ultra-modern-input.focused input,
.ultra-modern-select.focused select,
.ultra-modern-textarea.focused textarea {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.ultra-modern-input.focused label,
.ultra-modern-select.focused label,
.ultra-modern-textarea.focused label,
.ultra-modern-input.filled label,
.ultra-modern-select.filled label,
.ultra-modern-textarea.filled label {
    transform: translateY(-25px) scale(0.85);
    color: var(--primary-color);
}

.ultra-modern-input.focused i,
.ultra-modern-select.focused i,
.ultra-modern-textarea.focused i {
    color: var(--primary-color);
}

/* Mobile Responsive for Alerts and Modals */
@media (max-width: 768px) {
    .modern-alert {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 2rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .success-content {
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
    }
    
    .success-icon i {
        font-size: 1.5rem;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe57;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
