/* --- CSS Variables & Resets --- */
:root {
    --primary-color: #ff6b6b;
    /* Vibrant Pink/Red */
    --primary-dark: #ee5253;
    --secondary-color: #4ecdc4;
    /* Mint/Teal */
    --accent-color: #ffa502;
    /* Warm Yellow/Orange */
    --text-color: #2d3436;
    /* Dark Gray */
    --text-light: #636e72;
    /* Medium Gray */
    --bg-color: #fdfbf7;
    /* Off-white warm background */
    --white: #ffffff;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Layout Column System --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.row>[class*="col-"]>* {
    flex: 1;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.sayfa {
    padding: 20px 0 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2,
.section-title h4 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2 span,
.section-title h4 span {
    color: var(--primary-color);
}

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

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

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

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

/* --- Navigation / Header Top --- */
.header-top {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-social ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-top-social ul li {
    margin: 0;
    padding: 0;
}

.header-top-social a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.header-top-social a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-2px);
    display: inline-block;
}

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

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-top-contact ul li {
    margin: 0;
    padding: 0;
}

.header-top-contact a,
.header-top-contact span {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.header-top-contact a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* --- Navigation / Header --- */
.header {
    background-color: var(--white);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: relative;
}

.header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    animation: headerFadeIn 0.5s ease forwards;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links li a:not(.btn):hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
}

.mobile-menu-header,
.mobile-menu-contact {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -20px;
    background-color: var(--white);
    width: 335px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    list-style: none;
    border-top: 4px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu li a {
    display: flex !important;
    align-items: center;
    padding: 12px 20px 12px 15px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    transition: color 0.3s ease, background-color 0.3s ease, padding-left 0.3s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu li a::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 0.85rem;
    line-height: 1;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    color: var(--primary-color) !important;
    background-color: #fff0f0;
    padding-left: 28px !important;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 75vh;
    /* Slightly increased height */
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease-out;
    /* Smooth ongoing zoom effect */
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    color: var(--white);
    max-width: 1100px;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    /* Delay to sync with fade */
    text-align: center;
    margin: 0 auto;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content .badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-nav {
    display: none;
    /* Gizle */
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

@keyframes dotLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.8);
    width: 35px;
}

.dot.active::after {
    animation: dotLoading 5s linear forwards;
}

/* --- Services --- */
.services {
    background-color: var(--white);
}

.services-grid {
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card p {
    flex-grow: 1;
    /* Pushes content down properly */
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Service Card Variants (1 to 4) */
.service-card-1 .icon-box {
    background-color: #ffe6e6;
    color: #ff6b6b;
}

.service-card-1:hover {
    border-bottom-color: #ff6b6b;
}

.service-card-2 .icon-box {
    background-color: #e6f7ff;
    color: #4ecdc4;
}

.service-card-2:hover {
    border-bottom-color: #4ecdc4;
}

.service-card-3 .icon-box {
    background-color: #fff4e6;
    color: #ffa502;
}

.service-card-3:hover {
    border-bottom-color: #ffa502;
}

.service-card-4 .icon-box {
    background-color: #f2e6ff;
    color: #9b59b6;
}

.service-card-4:hover {
    border-bottom-color: #9b59b6;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card .icon-box img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Features (Why Choose Us) --- */
.feature-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    flex: 1;
}

.feature-card .feature-title {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Feature Card Variants (1 to 6) */
.feature-card-1 {
    border-color: #ffe6e6;
    background-color: #fffafa;
}

.feature-card-1 .feature-icon {
    background-color: #ffe6e6;
}

.feature-card-1 .feature-icon img {
    filter: invert(53%) sepia(34%) saturate(3015%) hue-rotate(319deg) brightness(101%) contrast(105%);
}

.feature-card-2 {
    border-color: #e6f7ff;
    background-color: #f7fcff;
}

.feature-card-2 .feature-icon {
    background-color: #e6f7ff;
}

.feature-card-2 .feature-icon img {
    filter: invert(79%) sepia(35%) saturate(769%) hue-rotate(124deg) brightness(88%) contrast(85%);
}

.feature-card-3 {
    border-color: #fff4e6;
    background-color: #fffaf5;
}

.feature-card-3 .feature-icon {
    background-color: #fff4e6;
}

.feature-card-3 .feature-icon img {
    filter: invert(72%) sepia(61%) saturate(2360%) hue-rotate(352deg) brightness(103%) contrast(104%);
}

.feature-card-4 {
    border-color: #f2e6ff;
    background-color: #fcf7ff;
}

.feature-card-4 .feature-icon {
    background-color: #f2e6ff;
}

.feature-card-4 .feature-icon img {
    filter: invert(47%) sepia(19%) saturate(1637%) hue-rotate(242deg) brightness(88%) contrast(87%);
}

.feature-card-5 {
    border-color: #e6fff2;
    background-color: #f5fffa;
}

.feature-card-5 .feature-icon {
    background-color: #e6fff2;
}

.feature-card-5 .feature-icon img {
    filter: invert(71%) sepia(50%) saturate(5426%) hue-rotate(107deg) brightness(87%) contrast(90%);
}

.feature-card-6 {
    border-color: #fff0f5;
    background-color: #fffafc;
}

.feature-card-6 .feature-icon {
    background-color: #fff0f5;
}

.feature-card-6 .feature-icon img {
    filter: invert(43%) sepia(61%) saturate(2222%) hue-rotate(307deg) brightness(97%) contrast(98%);
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* --- About --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    border: 5px solid var(--bg-color);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins';
}

.experience-badge p {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.about-content {
    flex: 1;
}

.sub-title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    margin-bottom: 30px;
}

.about-features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li::before {
    content: '\f058';
    /* fa-check-circle */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--white);
}

.cta-banner h2,
.cta-banner h5 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
}

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

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-color);
}

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

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-top: auto;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, #192026 0%, #0d1216 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding-top: 80px;
}

/* Footer Dekoratif Pati Ä°zleri */
footer::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.03);
    top: -80px;
    right: -80px;
    transform: rotate(35deg);
    z-index: 0;
    pointer-events: none;
}

footer::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    left: 20px;
    transform: rotate(-25deg);
    z-index: 0;
    pointer-events: none;
}

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

footer .row {
    margin-bottom: 50px;
}

footer [class*="col-"] {
    margin-bottom: 30px;
}

/* col-* flex kÄ±sÄ±tlarÄ±nÄ± sÄ±fÄ±rla (ilk kolonun asagi itmesini onlemek icin) */
footer [class*="col-"]>* {
    flex: unset !important;
}

footer [class*="col-"]>span:first-of-type {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    width: 100%;
}

footer [class*="col-"]>span:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

footer p {
    color: #a4b0be;
    margin-bottom: 20px;
}

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

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #a4b0be;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.social-links ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-links ul li {
    margin: 0;
    padding: 0;
}

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Footer Social Links Ã–zel TasarÄ±m --- */
footer .social-links {
    margin-top: 25px;
}

footer .social-links ul {
    gap: 15px;
    /* Daha belirgin bir aralÄ±k */
}

footer .social-links a {
    width: 45px !important;
    height: 45px !important;
    background-color: var(--white) !important;
    color: #1e272e !important;
    border-radius: 12px !important;
    /* Daire yerine modern kavisli kare (Squircle) */
    font-size: 1.3rem !important;
    /* Ä°konlar daha bÃ¼yÃ¼k */
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer .social-links a:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color);
    transform: translateY(-6px) scale(1.05) rotate(5deg) !important;
    box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
}

.flist ul li,
.filetisim ul li {
    margin-bottom: 12px;
}

.filetisim ul li {
    display: flex;
    gap: 15px;
    color: #a4b0be;
    align-items: flex-start;
}

.filetisim ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.flist ul li a,
.filetisim ul li a {
    color: #a4b0be;
}

.flist ul li a:hover,
.filetisim ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111417;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer-bottom p {
    color: #a4b0be;
    font-size: 0.9rem;
    margin: 0;
}

.seo-footer-links a {
    color: #576574;
    font-size: 0.8rem;
    transition: var(--transition);
}

.seo-footer-links a:hover {
    color: var(--secondary-color);
}

/* --- Internal Pages (About, Blog Detail) --- */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 110px 0 90px;
    text-align: center;
    color: var(--white);
    margin: 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

/* YaratÄ±cÄ± Dekoratif Pati Ä°zleri: */
.page-header::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 25rem;
    color: rgba(255, 255, 255, 0.07);
    top: -80px;
    right: -80px;
    transform: rotate(35deg);
    z-index: 1;
    pointer-events: none;
}

.page-header::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.09);
    bottom: -40px;
    left: 20px;
    transform: rotate(-25deg);
    z-index: 1;
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

/* Glassmorphism Breadcrumb TasarÄ±mÄ± */
.page-header .breadcrumb {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 25px;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.page-header .breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb li:first-child a {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}

.page-header .breadcrumb li:first-child a::after {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.9em;
}

.page-header .breadcrumb li a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb li+li::before {
    content: '/';
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 1.1em;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-grid {
    margin-top: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 25px 20px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Detail */
.sayfadetay img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.sayfadetay h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.sayfadetay p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sayfadetay h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.sayfadetay blockquote {
    background: #fff0f0;
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    border-radius: 0 15px 15px 0;
}

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: max-content;
    flex: none !important;
    align-self: flex-start;
}

.sidebar-widget,
.wiletisim,
.hizmetwidget,
.blogwidget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

/* Özel Blog Widget Tasarımı (Canlı, Soft Renkler) */
.blogwidget {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.12) 0%, rgba(255, 165, 2, 0.15) 100%);
    border: 1px dashed rgba(255, 107, 107, 0.3);
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3,
.wiletisim span,
.hizmetwidget span,
.blogwidget span {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

/* Simulate h3 defaults for span */
.wiletisim span,
.hizmetwidget span,
.blogwidget span {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    display: block;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
}

.sidebar-widget h3::after,
.wiletisim span::after,
.hizmetwidget span::after,
.blogwidget span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Wiletisim specific elements */
.wiletisim p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.wiletisim ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiletisim ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.wiletisim ul li:last-child {
    margin-bottom: 0;
}

.wiletisim ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.wiletisim ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.wiletisim ul li a:hover {
    color: var(--primary-color);
}

/* Hizmetler ve Blog Widget */
.hizmetwidget ul,
.blogwidget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hizmetwidget ul li,
.blogwidget ul li {
    margin-bottom: 10px;
}

.hizmetwidget ul li:last-child,
.blogwidget ul li:last-child {
    margin-bottom: 0;
}

.hizmetwidget ul li a,
.blogwidget ul li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 12px 15px;
    background: rgba(255, 107, 107, 0.05);
    /* Tasarıma uygun soft arka plan */
    border-radius: 12px;
}

.hizmetwidget ul li a::before,
.blogwidget ul li a::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9em;
    transition: var(--transition);
}

.hizmetwidget ul li a:hover,
.blogwidget ul li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.12);
    /* primary color with slightly more opacity */
    transform: translateX(5px);
}

.blogwidget ul li a {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 107, 107, 0.05);
}

.blogwidget ul li a:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.recent-post-item img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.recent-post-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-item h4 a {
    color: var(--text-color);
}

.recent-post-item h4 a:hover {
    color: var(--primary-color);
}

.recent-post-item span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background: var(--bg-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.tags a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .header-top-contact span {
        display: none;
        /* Hide location text on smaller screens */
    }

    .about-flex {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .experience-badge {
        right: 20px;
    }


}

@media (max-width: 768px) {
    .header-top-inner {
        flex-direction: column;
        gap: 8px;
    }

    .header-top-contact {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    /* MenÃ¼ iÃ§i Ã¶zel elemanlarÄ± gÃ¶rÃ¼nÃ¼r yap */
    .mobile-menu-header,
    .mobile-menu-contact {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
        /* Ä°Ã§eriden paddingi sÄ±fÄ±rladÄ±k, elementlere daÄŸÄ±tacaÄŸÄ±z */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease-in-out;
        overflow-y: auto;
        z-index: 1001;
    }

    .mobile-menu-header {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: 5px;
    }

    .mobile-menu-close {
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
        transition: var(--transition);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--bg-color);
    }

    .mobile-menu-close:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact) {
        padding: 0 20px;
        width: 100%;
        margin-bottom: 6px;
    }

    /* li.dropdown'un padding'i sadece ana a'ya uygulanÄ±r;
       dropdown-menu miras almasÄ±n diye li.dropdown'un padding'ini sÄ±fÄ±rla */
    .nav-links li.dropdown {
        padding: 0 !important;
    }

    /* Ana "Hizmetlerimiz" linki iÃ§in padding */
    .nav-links li.dropdown>a.dropdown-toggle {
        padding: 12px 20px !important;
        margin: 0 20px 0 20px;
        width: calc(100% - 40px) !important;
    }

    /* Mobil link tasarÄ±mÄ± (buton olmayÄ±p sadece yazÄ± olanlar iÃ§in) */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn) {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 12px 15px;
        background-color: var(--white);
        border-radius: 8px;
        border: none;
        box-shadow: none;
        transition: var(--transition);
        font-weight: 600;
        text-align: left;
    }

    /* EÄŸer linkin iÃ§inde bir dropdown oku (i) varsa onu en saÄŸa it */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn) i.dropdown-arrow {
        margin-left: auto !important;
    }

    /* MasaÃ¼stÃ¼ hover alt Ã§izgisini iptal et */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn)::after {
        display: none !important;
    }

    /* Hover veya aktif: sol kÄ±rmÄ±zÄ± ÅŸerit inset shadow ile (layout etkilenmez, kÄ±rpÄ±lmaz) */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn):hover,
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact)>a:not(.btn).active {
        background-color: rgba(255, 107, 107, 0.06);
        box-shadow: inset 3px 0 0 var(--primary-color);
        color: var(--primary-color);
        padding-left: 18px;
    }

    /* Randevu al butonu mobilde tam ekran geniÅŸlikte gÃ¶rÃ¼nsÃ¼n */
    .nav-links li:not(.mobile-menu-header):not(.mobile-menu-contact) .btn {
        width: 100%;
        text-align: center;
        margin-top: 5px;
        display: block;
        padding: 14px 20px;
    }

    .mobile-menu-contact {
        flex-direction: column;
        width: 100%;
        padding: 30px 0px;
        margin-top: auto;
        background-color: var(--bg-color);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        gap: 8px;
    }

    .mobile-menu-contact ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-menu-contact ul li {
        margin: 0;
        padding: 0;
    }

    .mobile-menu-contact a,
    .mobile-menu-contact span,
    .mobile-menu-contact p {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-color);
        font-size: 0.95rem;
        font-weight: 600;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    /* .nav-links li a::after pseudo elementini kaldÄ±r */
    .mobile-menu-contact a::after,
    .mobile-menu-contact a:hover::after {
        display: none !important;
    }

    .mobile-menu-contact a:hover {
        color: var(--primary-color);
        background: none !important;
    }

    .mobile-menu-contact a i,
    .mobile-menu-contact span i,
    .mobile-menu-contact p i {
        color: var(--primary-color) !important;
    }

    .mobile-menu-contact .social-links {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .mobile-menu-contact .social-links ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-menu-contact .social-links ul li {
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        /* nav-links li width:100% override */
        flex-shrink: 0;
    }

    .mobile-menu-contact .social-links a {
        width: 40px !important;
        height: 40px !important;
        background-color: var(--white) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
    }

    .mobile-menu-contact .social-links a i {
        color: var(--text-color) !important;
        transition: color 0.3s ease !important;
    }

    .mobile-menu-contact .social-links a:hover {
        background-color: var(--primary-color) !important;
        transform: translateY(-4px) scale(1.05) !important;
        box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3) !important;
        border-color: var(--primary-color) !important;
    }

    .mobile-menu-contact .social-links a:hover i {
        color: var(--white) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        border-top: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 20px 0 24px !important;
        min-width: 100%;
        background-color: transparent !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out;
    }

    .nav-links .dropdown.open .dropdown-menu {
        max-height: 400px;
        /* AlabileceÄŸi maksimum yÃ¼kseklik (animasyon iÃ§in) */
        margin-top: 4px;
    }

    .nav-links .dropdown-menu li {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        border: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    .nav-links .dropdown-menu li a {
        padding: 9px 12px !important;
        /* Daha kompakt */
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: var(--text-color) !important;
        border-left: 3px solid var(--primary-color) !important;
        border-radius: 0 8px 8px 0 !important;
        background-color: rgba(255, 107, 107, 0.04) !important;
        margin-bottom: 3px !important;
        display: flex !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        box-shadow: none !important;
        border-top: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .nav-links .dropdown-menu li a:hover {
        color: var(--primary-color) !important;
        background-color: rgba(255, 107, 107, 0.08) !important;
        padding-left: 20px !important;
    }

    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown.open .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .hero-slider {
        height: 80vh;
    }



    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-title h2,
    .section-title h4 {
        font-size: 2rem;
    }


}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-btn i {
    z-index: 2;
}

.floating-btn.whatsapp {
    background-color: #25d366;
    animation: whatsappPulse 1.2s infinite;
}

.floating-btn.whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.floating-btn.phone {
    background-color: var(--primary-color);
    animation: phonePulse 1.6s infinite 0.8s;
}

.floating-btn.phone:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.9);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.9);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 107, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}