/********** HR CONSULTING CIRCLE - MEDIA CLUB INSPIRED **********/
/********** Bold, Flowing, Modern Design with Ettuso Colors **********/

:root {
    --primary: #A3B18A; /* Sage Green */
    --secondary: #D99873; /* Terracotta */
    --light: #FAFAF9; /* Warm Off-White */
    --dark: #1F1F1F; /* Rich Black */
    --muted: #6B6B6B; /* Neutral Grey */
    --accent: #E5ECD9; /* Light Sage */
}

/* ========================================
   RESET & SMOOTH BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* ========================================
   TYPOGRAPHY - BOLD & IMPACTFUL
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.display-1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.display-5 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
}

/* ========================================
   LAYOUT - FULL WIDTH SECTIONS
======================================== */
section,
.container-fluid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.py-6,
section {
    padding: 120px 8%;
}

.pt-6 {
    padding-top: 120px;
}

.pb-6 {
    padding-bottom: 120px;
}

/* ========================================
   BUTTONS - BOLD & MODERN
======================================== */
.btn {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 18px 42px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: -0.01em;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(163, 177, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(163, 177, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   NAVBAR - CLEAN & FLOATING
======================================== */
.navbar {
    background: rgba(250, 250, 249, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(163, 177, 138, 0.1);
    padding: 24px 8%;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    letter-spacing: -0.02em;
}

/* Navbar başlık stili düzeltmesi */
.navbar-brand h1 {
    font-size: 1.5rem !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

@media (max-width: 576px) {
    .navbar-brand h1 {
        font-size: 1.2rem !important;
        max-width: 200px !important;
    }
}

@media (max-width: 360px) {
    .navbar-brand h1 {
        font-size: 1rem !important;
        max-width: 160px !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 24px;
    transition: all 0.2s ease;
    text-transform: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.sticky-top {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========================================
   HERO BANNER - CIRCLE CONCEPT ANIMATION
======================================== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #E5ECD9 0%, #FAFAF9 50%, #F0E5D8 100%);
}

/* Circle Animation Canvas */
.circle-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Circles - Orbital Movement */
.orbit-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    animation: orbit 25s infinite ease-in-out;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: #A3B18A;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: #D99873;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: #A3B18A;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.circle-4 {
    width: 140px;
    height: 140px;
    background: #D99873;
    bottom: 20%;
    right: 15%;
    animation-delay: 6s;
}

.circle-5 {
    width: 100px;
    height: 100px;
    background: #A3B18A;
    top: 50%;
    left: 45%;
    animation-delay: 8s;
}

@keyframes orbit {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-30px, 40px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, -30px) scale(0.9);
        opacity: 0.35;
    }
    75% {
        transform: translate(-20px, -20px) scale(1.05);
        opacity: 0.3;
    }
}

/* Center Circle Formation */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 3px dashed rgba(163, 177, 138, 0.3);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
    z-index: 2;
}

.center-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(217, 152, 115, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(163, 177, 138, 0) 0%, 
        rgba(163, 177, 138, 0.3) 50%, 
        rgba(163, 177, 138, 0) 100%);
    transform-origin: left center;
    animation: pulse-line 3s ease-in-out infinite;
    z-index: 1;
}

.line-1 {
    top: 30%;
    left: 15%;
    width: 200px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 20%;
    width: 180px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.line-3 {
    bottom: 25%;
    left: 25%;
    width: 220px;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

/* Floating Dots */
.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #A3B18A;
    border-radius: 50%;
    opacity: 0.6;
    animation: float-dot 20s infinite ease-in-out;
}

.dot-1 { top: 25%; left: 20%; animation-delay: 0s; }
.dot-2 { top: 70%; left: 30%; animation-delay: 3s; }
.dot-3 { top: 40%; right: 25%; animation-delay: 6s; }
.dot-4 { bottom: 30%; right: 35%; animation-delay: 9s; }
.dot-5 { top: 55%; left: 50%; animation-delay: 12s; }

@keyframes float-dot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(163, 177, 138, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(163, 177, 138, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5%;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(163, 177, 138, 0.15);
    color: #5A6B4A;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(163, 177, 138, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1F1F1F;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #A3B18A 0%, #8FA077 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #6B6B6B;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Decorative Circles */
.circle-decoration {
    position: absolute;
    border: 2px solid rgba(163, 177, 138, 0.2);
    border-radius: 50%;
    z-index: 3;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: rotate 30s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .center-circle {
        width: 250px;
        height: 250px;
    }

    .center-circle::before {
        width: 180px;
        height: 180px;
    }

    .orbit-circle {
        width: 80px !important;
        height: 80px !important;
    }

    .hero-banner {
        min-height: 80vh;
    }

    .connection-line {
        display: none;
    }
}

/* ========================================
   ABOUT SECTION - ALTERNATING LAYOUT
======================================== */
#about-section {
    background: #ffffff;
    padding: 0;
}

#about-section .row {
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 700px;
}

#about-section .col-lg-6 {
    padding: 80px 8% !important;
}

/* Remove all decorative elements */
#about-section::before,
#about-section::after {
    display: none;
}

#about-section .col-lg-6:first-child > div {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

#about-section .col-lg-6:first-child > div::before {
    display: none;
}

#about-section h4 {
    font-size: 3.5rem !important;
    line-height: 1.15;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 2.5rem !important;
    padding: 0;
    font-style: normal;
    letter-spacing: -0.03em;
}

#about-section h4::before,
#about-section h4::after {
    display: none;
}

#about-section p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem !important;
}

#about-section p:first-of-type::first-letter {
    float: none;
    font-size: inherit;
}

#about-section p + p::before {
    display: none;
}

/* Right Column - Green Background */
#about-section .col-lg-6:last-child {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%);
    padding: 80px 8% !important;
}

#about-section .bg-primary {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

#about-section .bg-primary::before {
    display: none;
}

#about-section .d-flex.text-white {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px !important;
    margin-bottom: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#about-section .d-flex.text-white:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

#about-section .d-flex.text-white::before {
    display: none;
}

#about-section .bg-white.text-primary.rounded-circle {
    width: 64px !important;
    height: 64px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#about-section .bg-white.text-primary.rounded-circle i {
    color: var(--primary) !important;
    font-size: 1.75rem !important;
}

#about-section .ps-4 h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

#about-section .ps-4 p {
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ========================================
   SERVICES - CARD GRID
======================================== */
#services-section {
    background: var(--accent);
    padding: 120px 8%;
}

.service-item {
    background: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    padding: 48px 40px;
    height: auto;
    min-height: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-item::after {
    display: none;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(163, 177, 138, 0.25);
}

.service-item .bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%) !important;
    width: 80px !important;
    height: 80px !important;
}

.service-item i {
    font-size: 2rem;
}

.service-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 16px;
}

.service-item p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
}

/* ========================================
   SUCCESS CARDS - TESTIMONIAL STYLE
======================================== */
.container-fluid.py-6.px-5 {
    padding: 120px 8% !important;
    background: #ffffff;
}

.card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(163, 177, 138, 0.25);
}

.card.shadow-lg::before {
    display: none;
}

.card-body {
    padding: 48px 40px;
}

.card .bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%) !important;
    width: 72px !important;
    height: 72px !important;
}

.card i {
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 24px 0 16px;
}

.card-text {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ========================================
   TEAM - MODERN GRID CARDS
======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 3/4;
    background: #ffffff;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(163, 177, 138, 0.25);
}

.team-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%);
    padding: 32px 24px;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.team-card:hover .team-content {
    transform: translateY(0);
}

.team-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.team-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-linkedin:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #ffffff;
}

/* ========================================
   SECTION HEADERS - BOLD
======================================== */
.text-center h1,
.text-center .display-5 {
    color: var(--dark);
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.text-center hr {
    width: 80px !important;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary)) !important;
    opacity: 1;
    margin: 0 auto 4rem;
    border: none;
    border-radius: 3px;
}

/* ========================================
   FOOTER - CLEAN
======================================== */
.bg-primary.text-secondary {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%) !important;
}

.bg-dark {
    background: var(--dark) !important;
}

footer h1,
footer .display-5 {
    color: #ffffff;
    font-size: 2.5rem;
}

footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* ========================================
   TOPBAR
======================================== */
.container-fluid.bg-secondary {
    background: var(--accent) !important;
}

.top-shape {
    background: linear-gradient(135deg, var(--primary) 0%, #8FA077 100%) !important;
}

.top-shape::before {
    background: var(--primary) !important;
}

.top-shape p {
    color: #ffffff !important;
}

.top-shape i {
    color: #ffffff !important;
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(163, 177, 138, 0.3);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(163, 177, 138, 0.4);
}

/* ========================================
   UTILITIES
======================================== */
.bg-secondary {
    background: var(--accent) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8FA077, #C37A58);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .display-1 {
        font-size: 3.5rem;
    }

    section,
    .py-6 {
        padding: 80px 5%;
    }

    #about-section .col-lg-6 {
        padding: 60px 5% !important;
    }

    #about-section h4 {
        font-size: 2.5rem !important;
    }

    .navbar {
        padding: 20px 5%;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .text-center h1,
    .text-center .display-5 {
        font-size: 2.5rem;
        padding: 0 15px;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .service-item {
        padding: 30px 20px;
        min-height: auto;
    }

    .service-item h3 {
        font-size: 1.5rem;
        margin: 20px 0 12px;
        word-wrap: break-word;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    section,
    .py-6 {
        padding: 60px 5%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-center h1,
    .text-center .display-5 {
        font-size: 2rem;
        padding: 0 10px;
        margin-bottom: 1rem;
    }

    .container-fluid.pt-6.px-5 {
        padding: 60px 15px !important;
    }

    .service-item {
        margin: 0 10px;
    }

    .team-card {
        margin: 0 10px;
    }

    /* Section başlıkları için ek padding */
    .text-center.mx-auto.mb-5 {
        padding: 0 15px;
        margin-bottom: 30px !important;
    }
    
    /* Container padding düzenlemesi */
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Row spacing düzenlemesi */
    .row.g-5 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
}

/* Ek olarak küçük ekranlar için güvenli alan */
@media (max-width: 320px) {
    .text-center h1,
    .text-center .display-5 {
        font-size: 1.75rem;
    }

    .service-item h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   SMOOTH ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Footer telefon numarası renk düzeltmesi */
.container-fluid.bg-dark .bi-telephone.text-primary,
.container-fluid.bg-dark a.text-secondary,
.container-fluid.bg-dark p.mb-0,
.container-fluid.bg-dark p.mb-2 {
    color: var(--light) !important;
}

/* Footer contact info color fix */
.container-fluid.bg-dark .text-primary,
.container-fluid.bg-dark a,
.container-fluid.bg-dark p,
.container-fluid.bg-dark i {
    color: rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 576px) {
    .container-fluid.bg-dark .text-primary,
    .container-fluid.bg-dark a,
    .container-fluid.bg-dark p,
    .container-fluid.bg-dark i {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .container-fluid.bg-dark .bi-telephone.text-primary {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* Contact page banner color override */
.contact-banner {
    background: #E5ECD9 !important;
}

/* Footer input responsive fix */
@media (max-width: 576px) {
    .footer .input-group {
        flex-wrap: nowrap;
    }

    .footer .form-control {
        font-size: 14px;
        padding: 8px 12px;
        height: auto;
        min-height: 45px;
    }

    .footer .input-group .btn {
        padding: 8px 15px;
        white-space: nowrap;
        font-size: 14px;
    }

    .footer .form-control::placeholder {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 360px) {
    .footer .form-control {
        font-size: 13px;
        padding: 6px 10px;
    }

    .footer .input-group .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Form control placeholder fix */
.form-control {
    transition: all 0.3s ease;
}

.form-control:not(:placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: 0.25rem;
}

.form-control::placeholder {
    transition: all 0.3s ease;
    opacity: 1;
}

.form-control:focus::placeholder {
    opacity: 0.7;
    transform: translateY(-5px);
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .form-control {
        font-size: 14px;
        padding: 0.5rem 0.75rem;
    }

    .form-control::placeholder {
        font-size: 14px;
        transform: none;
    }

    .form-floating > .form-control::placeholder {
        color: transparent;
    }

    .form-floating > .form-control:focus::placeholder {
        color: rgba(0,0,0,0.4);
    }
}

/* Form floating label fix */
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating > .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all .2s ease-in-out;
}

.form-floating > .form-control:focus::placeholder,
.form-floating > .form-control:not(:placeholder-shown)::placeholder {
    opacity: 0;
    transform: scale(0.85) translateY(-0.5rem);
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: #6c757d;
}

@media (max-width: 576px) {
    .form-floating > .form-control {
        height: calc(3rem + 2px);
        padding: 0.75rem;
        font-size: 14px;
    }

    .form-floating > label {
        padding: 0.75rem;
        font-size: 14px;
    }

    .form-floating > .form-control:focus::placeholder,
    .form-floating > .form-control:not(:placeholder-shown)::placeholder {
        transform: scale(0.85) translateY(-0.25rem);
    }
}

/* Footer icon colors */
.container-fluid.bg-dark .bi-arrow-right.text-primary,
.container-fluid.bg-dark .bi-geo-alt.text-primary,
.container-fluid.bg-dark .bi-envelope-open.text-primary,
.container-fluid.bg-dark .bi-telephone.text-primary {
    color: #A3B18A !important;
}

@media (max-width: 576px) {
    .container-fluid.bg-dark .bi-arrow-right.text-primary,
    .container-fluid.bg-dark .bi-geo-alt.text-primary,
    .container-fluid.bg-dark .bi-envelope-open.text-primary,
    .container-fluid.bg-dark .bi-telephone.text-primary {
        color: #A3B18A !important;
    }
}