:root {
    --primary: #2B3A67;       /* Koyu lacivert */
    --secondary: #496A81;     /* Mavi gri */
    --accent: #66999B;        /* Turkuaz */
    --light: #B3AF8F;        /* Açık bej */
    --dark: #1B262C;         /* Koyu lacivert */
    --white: #FFFFFF;
    --gradient: linear-gradient(120deg, var(--primary), var(--secondary));
}

/* Genel Stiller */


/* Üst İletişim Bar */
.top-contact-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.contact-info a:hover {
    color: #007bff;
}

/* Ana Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Ana Menü */
.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--accent);
}

.contact-button .btn-contact {
    position: relative;
    background: var(--gradient);
    padding: 12px 28px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.contact-button .btn-contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, var(--accent), var(--secondary));
    z-index: -2;
    transition: all 0.5s ease;
}

.contact-button .btn-contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(120deg, var(--secondary), var(--accent));
    transition: all 0.5s ease;
    z-index: -1;
}

.contact-button .btn-contact:hover::before {
    width: 100%;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }

    .main-nav a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px;
    }

    .logo {
        margin-bottom: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .slider-container {
        margin-top: 140px;
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 80px; /* Header yüksekliği kadar margin */
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 2;
    transition: background-color 0.3s;
}

.slider-button:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .slider-container {
        height: 400px;
    }
}

/* Genel Section Stilleri */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
    left: -20px;
    top: -10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* Hizmetler Bölümü */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.service-link:hover {
    color: #0056b3;
}

/* Referanslar Bölümü */
.references {
    padding: 80px 0;
    background: white;
}

.references-slider {
    overflow: hidden;
    padding: 20px 0;
}

.references-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.reference-logo {
    flex: 0 0 200px;
    margin: 0 30px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.reference-logo:hover {
    filter: grayscale(0%);
}

.reference-logo img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-230px * 5));
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    padding: 0 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #007bff;
}

.footer-section p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info span {
    display: block;
    color: #999;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

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

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

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #007bff;
    padding-left: 5px;
}

.address {
    display: flex;
    margin-bottom: 20px;
}

.address i {
    color: #007bff;
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    color: #666;
}

.footer-menu {
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #007bff;
}

/* İç Sayfa Stilleri */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1557425493-6f90ae4659fc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin: 0;
}

/* Hizmetler Detay Sayfası */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

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

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* Referanslar Grid */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.ref-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ref-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ref-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ref-item:hover img {
    transform: scale(1.1);
}

.ref-item h3 {
    margin: 15px 0 10px;
    color: #333;
}

.ref-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-menu {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 0;
    }
}

/* Referanslar Bölümü Stilleri */
.references-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #007bff;
}

.references-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reference-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: none;
}

.reference-card:hover {
    transform: translateY(-15px) rotate(2deg);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.references-button {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .references-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Hizmetler Bölümü Stilleri */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-card .card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    color: white;
    font-size: 40px;
}

.service-card .card-content {
    padding: 25px;
    text-align: center;
}

.service-card .card-content h3 {
    color: #1a1a1a;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card .card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.services-button {
    text-align: center;
    margin-top: 40px;
}

/* Hover efekti için ek stil */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-card .card-content {
        padding: 20px;
    }

    .service-card .card-content h3 {
        font-size: 20px;
    }
}

/* Araç Kaplama Bölümü */
.vehicle-wrap-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vehicle-wrap-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
    top: -150px;
    right: -150px;
}

.vehicle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vehicle-text {
    padding-right: 30px;
}

.vehicle-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.vehicle-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vehicle-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

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

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

/* Kurumsal Bölümü */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-text ul li {
    margin-bottom: 15px;
    color: #333;
}

.about-text ul li i {
    color: #007bff;
    margin-right: 10px;
}

/* İletişim Bölümü */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: white;
}

.info-item:hover i,
.info-item:hover h3,
.info-item:hover p {
    color: white;
}

.info-item i {
    font-size: 30px;
    color: #007bff;
    margin-bottom: 15px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0,188,212,0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .vehicle-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .vehicle-text,
    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .about-text ul {
        text-align: left;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlu Özellikler */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buton Stilleri */
.btn-contact, .btn-more, .btn-submit {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Hover Efekti - 1: Parlaklık */
.btn-contact::before, .btn-more::before, .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.btn-contact:hover::before, 
.btn-more:hover::before,
.btn-submit:hover::before {
    left: 100%;
}

/* Hover Efekti - 2: Scale ve Shadow */
.btn-contact:hover, 
.btn-more:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary), 0.3);
}

/* Aktif Durum Efekti */
.btn-contact:active, 
.btn-more:active,
.btn-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(var(--primary), 0.2);
}

/* Özel Buton Varyasyonları */
.service-card .btn-more {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.service-card .btn-more:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

/* Animasyonlu Loading Durumu */
.btn-submit.loading {
    position: relative;
    pointer-events: none;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .btn-contact, .btn-more, .btn-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Ripple Effect Styles */
.btn-contact, .btn-more, .btn-submit {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
} 