/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976d2;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --secondary-color: #1976d2;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(25, 118, 210, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    padding: 20px;
}

.loader-logo {
    width: 120px;
    height: auto;
    max-width: 80vw;
    animation: spin 2s linear infinite;
    object-fit: contain;
}

.loader-content p {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 18px;
}

@media (max-width: 768px) {
    .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .loader-content {
        width: 100%;
        max-width: 100vw;
        padding: 15px;
    }
    
    .loader-logo {
        width: 100px;
        max-width: 70vw;
    }
    
    .loader-content p {
        font-size: 16px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 80px;
        max-width: 60vw;
    }
    
    .loader-content p {
        font-size: 14px;
        margin-top: 12px;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-hover);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-title {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        min-height: auto;
        padding-top: 20px;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (max-width: 480px) {
    .hero-slider {
        height: 100%;
    }
}

.hero-slider-track {
    display: flex;
    height: 100%;
    transition: transform 1s ease;
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--bg-white);
}

/* Video Slide Styles */
.hero-slide-video {
    position: relative;
    overflow: hidden;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--bg-white);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--bg-white);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-video.loaded {
    opacity: 1;
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-poster.hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}


.hero-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-main-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Text Section - Above Hero Slider */
.hero-text-section {
    background: var(--bg-white);
    padding: 40px 0;
    text-align: center;
    margin-top: 70px;
    border-bottom: 3px solid var(--primary-color);
}

.hero-text-section .hero-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(25, 118, 210, 0.1);
}

.hero-text-section .hero-main-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-text-section .hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
    color: var(--bg-white);
    text-align: center;
}

.hero-text .hero-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-text .hero-main-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}


.hero-text .hero-buttons {
    margin-top: 25px;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    padding: 40px 0;
    z-index: 2;
}

/* Adjust hero layout on tablets and mobile to prevent overlap between slider and stats */
@media (max-width: 768px) {
    .hero {
        display: block;              /* flex yerine blok düzen */
        min-height: auto;
        margin-top: 60px;
        padding-top: 0;
        padding-bottom: 0;
        overflow: visible;           /* içeriği kesme */
    }

    .hero-text {
        padding: 60px 0 30px;
    }

    .hero-slider {
        position: relative;
        height: auto;
        margin: 0 auto 30px auto;    /* slider ile stats arasına boşluk */
    }

    .hero-slide {
        height: auto;
    }

    .hero-slide {
        overflow: hidden;
    }
    
    .hero-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .slider-slide {
        height: 400px;
    }
    
    .slider-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .slider-slide {
        height: 400px;
    }
    
    .slider-slide img {
        height: 100%;
        object-fit: cover;
    }

    .hero-video,
    .video-placeholder {
        height: auto;
    }

    .hero-stats {
        position: relative;
        padding: 25px 0 35px;        /* stats için dikey alan */
    }
}

@media (max-width: 480px) {
    .hero {
        display: block;
        margin-top: 60px;
        min-height: auto;
        padding-top: 0;
        overflow: visible;
    }

    .hero-text {
        padding: 50px 0 25px;
    }

    .hero-stats {
        padding: 20px 0 30px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--bg-white);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 24px;
}

.rating-text {
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 20px;
}

/* Paketler Section */
.paketler {
    background: var(--bg-light);
}

.paketler-main,
.paketler-extra,
.paketler-special {
    margin-top: 40px;
}

.paketler-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .paketler-main,
    .paketler-extra,
    .paketler-special {
        margin-top: 30px;
    }
    
    .paketler-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .paketler-main,
    .paketler-extra,
    .paketler-special {
        margin-top: 25px;
    }
    
    .paketler-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.paket-grid-extra .paket-card {
    height: 100%;
}

.paket-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.6;
}

.paket-features li.disabled i {
    color: var(--text-light);
    opacity: 0.5;
}

.paketler-mobil-baslik {
    display: none;
}

.mobil-baslik {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .paketler-mobil-baslik {
        display: block;
    }
    
    .mobil-baslik {
        font-size: 22px;
        margin-bottom: 25px;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .mobil-baslik {
        font-size: 20px;
        margin-bottom: 20px;
        padding-top: 10px;
    }
}

.paket-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Fiyat Listesi Görseli */
.fiyat-liste-wrapper {
    width: 100%;
    margin: 40px 0;
    padding: 0;
    overflow: hidden;
}

.fiyat-liste-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.fiyat-liste-link {
    display: block;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.fiyat-liste-link:hover {
    transform: translateY(-5px);
}

.fiyat-liste-link:hover .fiyat-liste-img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fiyat-liste-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    background: transparent;
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}

.fiyat-liste-placeholder {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--border-color);
    transition: var(--transition);
}

.fiyat-liste-link:hover .fiyat-liste-placeholder {
    border-color: var(--primary-color);
    background: rgba(25, 118, 210, 0.05);
}

.fiyat-liste-placeholder h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 24px;
}

.fiyat-liste-placeholder p {
    color: var(--text-light);
    margin-bottom: 0;
}

.fiyat-liste-fallback {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .fiyat-liste-wrapper {
        margin: 30px 0;
    }

    .fiyat-liste-container {
        padding: 0 15px;
    }

    .fiyat-liste-img {
        padding: 0;
        border-radius: 8px;
        width: 100%;
        height: auto;
    }
    
    .fiyat-liste-link {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fiyat-liste-wrapper {
        margin: 20px 0;
    }

    .fiyat-liste-container {
        padding: 0 10px;
    }

    .fiyat-liste-img {
        padding: 0;
        border-radius: 5px;
        width: 100%;
        height: auto;
    }
    
    .fiyat-liste-container p {
        margin-top: 10px !important;
    }
    
    .fiyat-liste-container .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.tab-btn {
    padding: 12px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .paket-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

.paket-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .paket-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .paket-card {
        padding: 20px 15px;
        border-radius: 8px;
    }
}

.paket-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.paket-card.featured {
    border: 3px solid var(--primary-color);
}

.paket-card.premium {
    border: 3px solid var(--primary-light);
}

.paket-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.paket-card.premium .paket-badge {
    background: var(--primary-light);
    color: var(--bg-white);
}

.paket-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.paket-name {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.paket-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.paket-features {
    list-style: none;
    margin-bottom: 25px;
}

.paket-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-color);
}

.paket-features li:last-child {
    border-bottom: none;
}

.paket-features i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .paket-features {
        margin-bottom: 20px;
    }
    
    .paket-features li {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .paket-features i {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .paket-features li {
        padding: 7px 0;
        font-size: 12px;
        gap: 8px;
    }
    
    .paket-features i {
        font-size: 12px;
    }
}

.paket-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Hakkımızda Section */
.hakkimizda {
    background: var(--bg-white);
}

.hakkimizda-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.hakkimizda-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hakkimizda-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(5px);
}

.contact-link i {
    font-size: 20px;
}

.address {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.address i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Galeri Section */
.galeri {
    background: var(--bg-light);
    padding: 80px 0;
}

.galeri-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: var(--bg-light);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Yorumlar Section */
.yorumlar {
    background: var(--bg-white);
}

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.yorum-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    isolation: isolate;
    border: 1px solid rgba(25, 118, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.yorum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: var(--transition);
}

.yorum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
}

.yorum-card:hover::before {
    opacity: 1;
}

.yorum-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.yorum-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.yorum-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(25, 118, 210, 0.2);
}

.yorum-author-details {
    flex: 1;
}

.yorum-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.yorum-date {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.yorum-date i {
    font-size: 12px;
    color: var(--primary-color);
}

.google-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(66, 133, 244, 0.3);
    flex-shrink: 0;
    transition: var(--transition);
}

.yorum-card:hover .google-badge {
    transform: scale(1.1) rotate(5deg);
}

.yorum-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
    align-items: center;
}

.yorum-rating i {
    color: #ffc107;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.yorum-card:hover .yorum-rating i {
    transform: scale(1.1);
    animation: starPulse 0.6s ease-in-out;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.3); }
}

.yorum-text {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 15px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--bg-light);
    transition: var(--transition);
}

.yorum-card:hover .yorum-text {
    border-left-color: var(--primary-light);
    padding-left: 20px;
}

/* Blog Section */
.blog {
    background: var(--bg-white);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(25, 118, 210, 0.1);
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.15);
    border-color: rgba(25, 118, 210, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.blog-image i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.blog-card:hover .blog-image i {
    transform: scale(1.1) rotate(5deg);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-date i {
    color: var(--primary-color);
    font-size: 12px;
}

.blog-category {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.blog-link i {
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.blog-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 180px;
        font-size: 48px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 160px;
        font-size: 40px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}

/* Rezervasyon Section */
.rezervasyon {
    background: var(--bg-light);
}

.rezervasyon-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Hizmetler Section */
.hizmetler {
    background: var(--bg-white);
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.hizmet-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hizmet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: var(--bg-white);
}

.hizmet-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.hizmet-card:hover .hizmet-icon {
    color: var(--bg-white);
    transform: scale(1.1);
}

.hizmet-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.hizmet-card:hover .hizmet-title {
    color: var(--bg-white);
}

/* İletişim Section */
.iletisim {
    background: var(--bg-light);
}

.iletisim-content {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.iletisim-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.info-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    isolation: isolate;
}

.info-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.info-card-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-color);
    color: var(--bg-white);
}

.info-card-link:hover .info-icon {
    color: var(--bg-white);
}

.info-card-link:hover .info-title {
    color: var(--bg-white);
}

.info-card-link:hover .info-text {
    color: rgba(255, 255, 255, 0.9);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.info-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Google Maps */
.harita-container {
    margin-top: 50px;
    width: 100%;
}

.harita-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
}

.harita-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .harita-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .harita-container {
        margin-top: 30px;
    }
    
    .harita-wrapper iframe {
        height: 300px;
    }
}


/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 20px;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    z-index: 998;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    animation: float 3s ease-in-out infinite;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.floating-btn:nth-child(1) {
    animation-delay: 0s;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-btn:nth-child(3) {
    animation-delay: 0.4s;
}

.floating-btn:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

.phone-btn {
    background: var(--primary-color);
}

.phone-btn:hover {
    background: var(--primary-dark);
}

.reservation-btn {
    background: #FF9800;
}

.reservation-btn:hover {
    background: #F57C00;
}

.contact-btn {
    background: #9C27B0;
}

.contact-btn:hover {
    background: #7B1FA2;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text-dark);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        transition: var(--transition);
        padding: 20px;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 22px;
    }


    .hakkimizda-content {
        grid-template-columns: 1fr;
    }

    .iletisim-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .galeri-slider {
        padding: 0 50px;
    }

    .slider-slide {
        height: 400px;
    }
    
    .slider-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo-img {
        height: 40px;
    }

    section {
        padding: 60px 0;
    }

    .hizmetler-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .yorumlar-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 28px;
    }


    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
    }

    .paket-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .paket-grid-extra {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 15px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 16px;
        min-height: 44px; /* Touch-friendly size */
    }

    .header-content {
        padding: 12px 0;
    }

    .hero {
        margin-top: 60px;
        min-height: calc(100vh - 60px);
    }

    .hero-stats-content {
        margin-bottom: 25px;
    }
    
    .hero-stats-content .hero-title {
        font-size: 24px;
    }
    
    .hero-stats-content .hero-main-title {
        font-size: 36px;
    }
    

    .hero-stats {
        padding: 20px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .paket-badge {
        font-size: 11px;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 14px;
    }

    .logo-img {
        height: 35px;
    }

    .logo {
        gap: 10px;
    }

    .hero-text-section {
        margin-top: 60px;
        padding: 25px 0;
    }

    .hero-text-section .hero-title {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .hero-text-section .hero-main-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .paket-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .paket-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
        margin-bottom: 15px;
    }

    .hero-text-section .hero-buttons {
        gap: 10px;
    }

    .hero-text-section .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .hero-text-section {
        margin-top: 60px;
        padding: 30px 0;
    }

    .hero-text-section .hero-title {
        font-size: 20px;
    }

    .hero-text-section .hero-main-title {
        font-size: 28px;
    }

    .hero-text-section .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-text-section .hero-buttons .btn {
        width: 100%;
    }

    .hero {
        margin-top: 0;
        min-height: auto;
        padding-top: 0;
    }

    .hero-stats {
        padding: 30px 0;
    }
    
    .hero-stats-content {
        margin-bottom: 20px;
    }
    
    .hero-stats-content .hero-title {
        font-size: 20px;
    }
    
    .hero-stats-content .hero-main-title {
        font-size: 28px;
    }
    
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .rezervasyon-form {
        padding: 20px 15px;
    }

    .galeri-slider {
        padding: 0 30px;
    }

    .slider-slide {
        height: 300px;
    }
    
    .slider-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        object-fit: contain;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 70px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .floating-tooltip {
        display: none;
    }

    .scroll-top {
        bottom: 15px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    section {
        padding: 50px 0;
        overflow: hidden;
    }
    
    .container {
        overflow: hidden;
    }
    
    .paket-grid,
    .hizmetler-grid,
    .yorumlar-grid,
    .iletisim-info {
        gap: 20px;
    }
    
    .paket-card,
    .hizmet-card,
    .yorum-card,
    .info-card {
        margin-bottom: 0;
        break-inside: avoid;
    }

    .paket-card {
        padding: 20px;
    }

    .paket-name {
        font-size: 20px;
    }

    .paket-price {
        font-size: 28px;
    }

    .hizmet-card {
        padding: 20px;
    }

    .hizmet-icon {
        font-size: 36px;
    }

    .hizmet-title {
        font-size: 16px;
    }

    .yorum-card {
        padding: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .header-buttons .btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-stats {
        padding: 15px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .contact-link {
        padding: 12px;
        font-size: 14px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .yorumlar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .yorum-card {
        padding: 20px;
    }

    .yorum-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .yorum-author-info {
        width: 100%;
    }

    .google-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .yorum-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .yorum-author {
        font-size: 15px;
    }

    .yorum-date {
        font-size: 12px;
    }

    .yorum-text {
        font-size: 14px;
        padding-left: 10px;
    }

    .yorum-rating i {
        font-size: 16px;
    }
}

/* Web Tasarım Reklamı */
.web-design-credit {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-top: 3px solid rgba(0, 0, 0, 0.1);
}

.web-design-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.web-design-text {
    color: #000000 !important;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 500;
}

.web-design-text i {
    color: #1976d2;
    font-size: 18px;
}

.web-design-text strong {
    color: #000000 !important;
    font-weight: 700;
}

.web-design-link {
    color: #1976d2 !important;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.web-design-link:hover {
    border-bottom-color: #1976d2;
    transform: translateY(-2px);
    color: #1565c0;
}

.web-design-btn {
    background: #1976d2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    font-size: 15px;
}

.web-design-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    background: #1565c0;
}

.web-design-btn i {
    transition: var(--transition);
}

.web-design-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .web-design-credit {
        padding: 25px 15px;
    }

    .web-design-content {
        flex-direction: column;
        gap: 20px;
    }

    .web-design-text {
        font-size: 14px;
        text-align: center;
        color: #000000 !important;
    }

    .web-design-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .web-design-credit {
        padding: 20px 10px;
    }

    .web-design-text {
        font-size: 13px;
        color: #000000 !important;
    }

    .web-design-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
