:root {
    --primary-color: #d90a2c;
    --dark-color: #000;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --border-color: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header Styles */
#header {
    width: 100%;
}

#header .top {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 14px;
}

#header .top .row {
    align-items: center;
}

#header .top .left {
    display: flex;
    align-items: center;
}

#header .top .language {
    position: relative;
    margin-right: 20px;
}

#header .top .language span {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#header .top .language img {
    width: 20px;
    margin-right: 5px;
}

#header .top .language i {
    margin-left: 5px;
    font-size: 12px;
}

#header .top .language div {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-color);
    border-radius: 4px;
    padding: 10px;
    min-width: 120px;
    display: none;
    z-index: 10;
}

#header .top .language:hover div {
    display: block;
}

#header .top .language ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#header .top .language ul li {
    margin-bottom: 8px;
}

#header .top .language ul li:last-child {
    margin-bottom: 0;
}

#header .top .language ul li a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

#header .top .language ul li a img {
    margin-right: 8px;
}

#header .top .social ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .top .social ul li {
    margin-right: 15px;
}

#header .top .social ul li:last-child {
    margin-right: 0;
}

#header .top .social ul li a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
}

#header .top .right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .top .right li {
    margin-left: 20px;
}

#header .top .right li:first-child {
    margin-left: 0;
}

#header .top .right li a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

#header .top .right li a i {
    margin-right: 5px;
}

/* Header Bottom */
#header .bottom {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header .bottom.sticky {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#header .bottom .row {
    padding: 15px 0;
}

#header .bottom .logo img {
    height: 40px;
    transition: height 0.3s ease;
}

#header .bottom.sticky .logo img {
    height: 35px;
}

#header .bottom .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

#header .bottom .menu > li {
    position: relative;
    margin: 0 5px;
}

#header .bottom .menu > li > a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: color 0.3s;
}

#header .bottom .menu > li > a:hover,
#header .bottom .menu > li > a.active {
    color: var(--primary-color);
}

#header .bottom .menu > li > a.active {
    font-weight: 600;
}

#header .bottom .menu > li > a span {
    display: flex;
    align-items: center;
}

#header .bottom .menu > li > a span i {
    margin-left: 5px;
    font-size: 12px;
}

/* Mega Menu */
#header .bottom .menu > li .mega-menu {
    position: absolute;
    top: 100%;
    left: -200px;
    width: 800px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 100;
    border-radius: 5px;
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

#header .bottom .menu > li:hover .mega-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#header .bottom .menu > li .mega-menu strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

#header .bottom .menu > li .mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#header .bottom .menu > li .mega-menu ul li {
    margin-bottom: 15px;
}

#header .bottom .menu > li .mega-menu ul li:last-child {
    margin-bottom: 0;
}

#header .bottom .menu > li .mega-menu ul li a {
    color: var(--dark-color);
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease;
}

#header .bottom .menu > li .mega-menu ul li a:hover {
    transform: translateX(5px);
}

#header .bottom .menu > li .mega-menu ul li a i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

#header .bottom .menu > li .mega-menu ul li a strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

#header .bottom .menu > li .mega-menu ul li a span {
    display: block;
    font-size: 12px;
    color: #666;
}

#header .bottom .menu > li .mega-menu img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

#header .bottom .menu > li .mega-menu img:hover {
    transform: scale(1.03);
}

/* Right Buttons */
#header .bottom .right {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .bottom .right li {
    margin-left: 10px;
}

#header .bottom .right li:first-child {
    margin-left: 0;
}

#header .bottom .right li a.btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
}

#header .bottom .right li a.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

#header .bottom .right li a.btn span {
    display: flex;
    align-items: center;
}

#header .bottom .right li a.btn span span {
    font-weight: 700;
    margin-right: 5px;
}

#header .bottom .right li a.btn i {
    margin-left: 8px;
}

#header .bottom .right li.mmenu {
    display: none;
}

/* Mobile Menu */
.mm-menu {
    --mm-color-background: var(--light-color);
    --mm-color-text: var(--dark-color);
    --mm-color-button: var(--primary-color);
    --mm-color-border: var(--border-color);
}

.mm-listitem_selected > .mm-listitem__text {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.mm-menu a.highlight {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    #header .top .row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #header .top .right {
        margin-top: 10px;
        flex-wrap: wrap;
    }
    
    #header .top .right li {
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 5px;
    }
    
    #header .bottom .menu {
        display: none;
    }
    
    #header .bottom .right li:not(.mmenu) {
        display: none;
    }
    
    #header .bottom .right li.mmenu {
        display: block;
    }
    
    #header .bottom .right li.mmenu a.btn {
        padding: 8px;
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    #header .top .left {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #header .top .language {
        margin-bottom: 10px;
    }
}


/* Footer Styles */
#footer {
    background-color: #0a0e17;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('/assets/img/footer-pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Footer Top */
.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.slogan {
    font-size: 16px;
    margin-bottom: 20px;
    color: #b0b0b0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #b0b0b0;
    margin: 0;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer Middle */
.footer-middle {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-middle h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-middle p {
    color: #b0b0b0;
    margin: 0;
}

.footer-middle .btn {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-middle .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.footer-middle .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.footer-middle .btn:hover i {
    transform: translateX(5px);
}

/* Partners Slider */
.footer-partners {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.partner-item {
    flex: 0 0 auto;
    padding: 0 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
}

.partner-item img {
    max-height: 40px;
    max-width: 100%;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(100%);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #070a10;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.copyright {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: #777;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: var(--primary-color);
}

.designer-credit {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #555;
}

.designer-credit a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-credit a:hover {
    color: var(--primary-color);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #b00824;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-title {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 5px;
    }
    
    .partners-slider {
        gap: 15px;
    }
    
    .partner-item {
        padding: 0 10px;
    }
}

/* Hero Slider Styles */
#hero-slider {
    position: relative;
    overflow: hidden;
    background-color: #0a0e17;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-item {
    display: none;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.slider-item.active {
    display: block;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    color: #fff;
    padding-right: 30px;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(217, 10, 44, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(217, 10, 44, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-buttons .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero-buttons .btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-outline:hover {
    border-color: #fff;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 14px;
    color: #b0b0b0;
}

/* Hero Features */
.hero-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.feature-item span {
    color: #fff;
    font-size: 16px;
}

/* Hero Countries */
.hero-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.country-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.country-tag:hover {
    background-color: var(--primary-color);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.search-icon {
    top: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background-color: rgba(217, 10, 44, 0.8);
    color: #fff;
    font-size: 20px;
    animation-delay: 0.5s;
}

.chart-icon {
    bottom: 30%;
    right: 20%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    font-size: 20px;
    animation-delay: 1s;
}

.rank-badge {
    top: 30%;
    right: 25%;
    width: 40px;
    height: 40px;
    background-color: #ffc107;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    animation-delay: 1.5s;
}

.keyword-tag {
    position: absolute;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.keyword-tag:nth-child(4) {
    top: 60%;
    left: 20%;
    animation-delay: 0.5s;
}

.keyword-tag:nth-child(5) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.keyword-tag:nth-child(6) {
    bottom: 20%;
    left: 30%;
    animation-delay: 1.5s;
}

.ai-icon {
    top: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 123, 255, 0.8);
    color: #fff;
    font-size: 20px;
    animation-delay: 0.5s;
}

.data-icon {
    bottom: 30%;
    right: 20%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #0a0e17;
    font-size: 20px;
    animation-delay: 1s;
}

.code-badge {
    top: 30%;
    right: 25%;
    padding: 5px 10px;
    background-color: #28a745;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 5px;
    animation-delay: 1.5s;
}

.globe-icon {
    top: 20%;
    left: 15%;
    width: 50px;
    height: 50px;
    background-color: rgba(23, 162, 184, 0.8);
    color: #fff;
    font-size: 20px;
    animation-delay: 0.5s;
}

.flag-icon {
    bottom: 30%;
    right: 20%;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #dc3545;
    font-size: 20px;
    animation-delay: 1s;
}

.language-badge {
    top: 30%;
    right: 25%;
    padding: 5px 10px;
    background-color: #6f42c1;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border-radius: 5px;
    animation-delay: 1.5s;
}

.orbit-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Slider Background */
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle-shape {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 10, 44, 0.3) 0%, rgba(217, 10, 44, 0) 70%);
}

.dots-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-arrow {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    #hero-slider {
        min-height: auto;
    }
    
    .slider-item {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .image-container {
        height: 300px;
    }
    
    .orbit-circle {
        width: 200px;
        height: 200px;
    }
}

/* Hizmetler Bölümü Stilleri */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-row {
    margin-top: 30px;
}

.service-item-wrapper {
    margin-bottom: 30px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.service-item:hover:before {
    height: 100%;
}

.service-icon {
    margin-bottom: 20px;
}

.icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.icon-bg.primary {
    background-color: rgba(217, 10, 44, 0.1);
    color: var(--primary-color);
}

.icon-bg.secondary {
    background-color: rgba(255, 87, 34, 0.1);
    color: #ff5722;
}

.icon-bg.tertiary {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.icon-bg.quaternary {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.icon-bg.quinary {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.icon-bg.senary {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #333;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* SEO Çözümleri Bölümü Stilleri */
.seo-solutions-section {
    padding: 80px 0;
    background-color: #fff;
}

.seo-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    margin-top: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.tab-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.seo-service-item {
    display: flex;
    align-items: flex-start;
}

.seo-service-item .service-icon {
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    flex-shrink: 0;
}

.seo-service-item .service-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.seo-service-item .service-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.seo-promo {
    background: linear-gradient(135deg, #ff5722, var(--primary-color));
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.seo-promo:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.seo-promo:after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.promo-logo {
    margin: 20px 0;
}

.promo-logo img {
    max-width: 200px;
}

.promo-tagline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.corporate-image {
    position: relative;
}

.corporate-image img {
    width: 100%;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-badge .years {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    margin-top: 5px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* SEO Detay Bölümü Stilleri */
.seo-details-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.seo-details-content {
    padding-right: 30px;
}

.details-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.details-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.seo-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(217, 10, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-card .service-content {
    flex-grow: 1;
}

.service-card .service-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.service-card .service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-card .btn {
    padding: 8px 15px;
    font-size: 14px;
}

.seo-details-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }
    
    .seo-services-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-services-list {
        grid-template-columns: 1fr;
    }
    
    .seo-details-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .tab-btn:after {
        display: none;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
}

/* Referanslar Bölümü Stilleri */
.references-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.references-world-map {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.map-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
}

.world-map-img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

.references-logos {
    margin-bottom: 50px;
}

.logo-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.logo-item {
    padding: 0 15px;
    margin-bottom: 20px;
    flex: 0 0 14.28%; /* 7 logo için eşit genişlik */
    max-width: 14.28%;
    text-align: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.references-heading {
    margin-bottom: 50px;
}

.references-brands {
    margin-bottom: 50px;
}

.brand-slider {
    overflow: hidden;
}

.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.brand-item {
    flex: 0 0 18%;
    max-width: 18%;
    padding: 15px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 100%;
    height: auto;
}

.cta-button {
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c00926;
    border-color: #c00926;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 10, 44, 0.3);
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .logo-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .brand-row {
        flex-wrap: wrap;
    }
    
    .brand-item {
        flex: 0 0 30%;
        max-width: 30%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .logo-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    
    .brand-item {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .map-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .brand-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Müşteri Yorumları Bölümü Stilleri */
.testimonials-section {
    padding: 80px 0;
    background-color: #1c2640; /* Koyu lacivert arka plan */
    color: #fff;
    position: relative;
}

.testimonials-section .section-header {
    margin-bottom: 50px;
}

.testimonials-section .section-subtitle {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    background-color: rgba(255, 107, 107, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
}

.testimonials-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}

.testimonials-section .section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Stilleri */
.testimonials-slider {
    position: relative;
    margin-top: 30px;
    padding: 0 50px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
}

.testimonials-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    transition: transform 0.5s ease;
}

/* Testimonial Kart Stilleri */
.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-logo {
    margin-right: 15px;
}

.client-logo img {
    height: 40px;
    width: auto;
}

.client-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.client-position {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(217, 10, 44, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Slider Pagination */
.slider-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Alternatif Tasarım - Kart Görünümü */
.testimonial-cards-grid {
    margin-top: 80px;
    display: none; /* Varsayılan olarak gizli, ihtiyaç halinde gösterilecek */
}

.testimonial-compact-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-compact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    padding: 25px;
    position: relative;
}

.testimonial-quote:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 60px;
    color: rgba(217, 10, 44, 0.1);
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    position: relative;
    z-index: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.read-more-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.read-more-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .testimonials-section .section-title {
        font-size: 30px;
    }
    
    .testimonial-header {
        flex-direction: column;
    }
    
    .testimonial-image {
        margin-top: 20px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 26px;
    }
    
    .testimonials-slider {
        padding: 0 30px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .client-logo img {
        height: 30px;
    }
    
    .client-details h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 14px;
    }
    
    .testimonials-section .section-title {
        font-size: 24px;
    }
    
    .testimonials-section .section-description {
        font-size: 16px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
}

/* Neden BoostedCraft Bölümü Stilleri */
.why-boostedcraft-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

/* CTA Banner Stilleri */
.cta-banner {
    text-align: center;
    margin-bottom: 60px;
}

.cta-badge {
    display: inline-block;
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Süreç Adımları Stilleri */
.process-steps {
    margin-bottom: 80px;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    max-width: 100%;
    height: auto;
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    color: #1c2640;
    margin-bottom: 15px;
}

.process-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.process-line {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    z-index: 1;
}

/* Neden Biz Bölümü Stilleri */
.why-us-section {
    margin-bottom: 80px;
}

.why-us-content {
    padding-right: 30px;
}

.section-subtitle {
    display: inline-block;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.advantages-list {
    margin-bottom: 30px;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.advantage-icon {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

.advantage-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Özellikler Grid Stilleri */
.features-grid {
    margin-top: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1c2640;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Hizmet Detayları Stilleri */
.services-details {
    margin-bottom: 80px;
}

.service-row {
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    padding: 0 30px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 20px;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-images {
    position: relative;
}

.image-grid {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.secondary-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.secondary-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Karşılaştırma Bölümü Stilleri */
.comparison-section {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 15px;
}

.comparison-header {
    padding-right: 30px;
}

.comparison-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 30px;
    line-height: 1.2;
}

.comparison-title .highlight {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #c00926;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(217, 10, 44, 0.2);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.comparison-stats {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stats-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.completed-projects {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stats-label {
    font-size: 14px;
    color: #666;
}

.stats-value {
    font-size: 28px;
    font-weight: 700;
    color: #1c2640;
}

.stats-graph {
    width: 80px;
}

.stats-graph img {
    width: 100%;
    height: auto;
}

.comparison-table {
    padding: 20px;
}

.table-header {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.table-cell {
    flex: 1;
    padding: 10px;
}

.feature-name {
    font-weight: 500;
    color: #333;
}

.company-name {
    font-weight: 600;
    color: #1c2640;
    text-align: center;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #f5f5f5;
}

.feature-value {
    text-align: center;
    font-size: 20px;
}

.feature-value.positive {
    color: #4caf50;
}

.feature-value.negative {
    color: #f44336;
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .cta-title {
        font-size: 36px;
    }
    
    .process-line {
        display: none;
    }
    
    .why-us-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .service-content {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .service-row.reverse {
        flex-direction: column-reverse;
    }
    
    .comparison-header {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .comparison-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 30px;
    }
    
    .section-title, .comparison-title {
        font-size: 28px;
    }
    
    .process-item {
        margin-bottom: 40px;
    }
    
    .secondary-image {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
    
    .table-header, .table-row {
        flex-direction: column;
    }
    
    .table-cell {
        text-align: left;
        padding: 10px 0;
    }
    
    .company-name, .feature-value {
        text-align: left;
    }
    
    .feature-value:before {
        content: attr(data-feature) ": ";
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .why-boostedcraft-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .section-title, .comparison-title, .service-title {
        font-size: 24px;
    }
    
    .comparison-section {
        padding: 20px;
    }
}

/* İletişim Formları Bölümü Stilleri */
.contact-forms-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Genel Form Stilleri */
.form-control {
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 10, 44, 0.25);
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: var(--primary-color);
}

.required-mark {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary-color);
    font-size: 18px;
}

/* İletişim Formu Stilleri */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #666;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary i {
    margin-left: 10px;
}

.btn-primary:hover {
    background-color: #c00926;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 10, 44, 0.2);
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
}

/* SEO Teklif Formu Stilleri */
.seo-offer-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.seo-offer-card {
    background-color: #ff6b6b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.card-header {
    padding: 30px;
    background-color: transparent;
    border-bottom: none;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.card-body {
    padding: 0 30px 30px;
}

.btn-dark {
    background-color: #1c2640;
    border: none;
    color: #fff;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-dark i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-dark:hover {
    background-color: #131b2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(28, 38, 64, 0.2);
}

.btn-dark:hover i {
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    font-size: 18px;
    padding: 15px 30px;
}

/* CTA Kart Stilleri */
.cta-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-outline-dark {
    border: 2px solid #1c2640;
    color: #1c2640;
    background-color: transparent;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark i {
    margin-left: 10px;
}

.btn-outline-dark:hover {
    background-color: #1c2640;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(28, 38, 64, 0.1);
}

.analysis-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 25px;
}

.badge-content {
    margin-right: 15px;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.badge-subtext {
    display: block;
    font-size: 12px;
    color: #666;
}

.badge-icons {
    display: flex;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    color: #ff6b6b;
    font-size: 14px;
}

.badge-icon:first-child {
    margin-left: 0;
}

/* Ücretsiz SEO Aracı Stilleri */
.seo-tool-wrapper {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.tool-title {
    font-size: 28px;
    font-weight: 700;
    color: #1c2640;
    margin-bottom: 15px;
}

.tool-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.seo-tool-form .input-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.seo-tool-form .form-control {
    height: 60px;
    border: none;
    font-size: 16px;
}

.seo-tool-form .btn {
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
}

.seo-tool-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Bülten Aboneliği Stilleri */
.newsletter-wrapper {
    background-color: #f0f4f8;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 600;
    color: #1c2640;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 1000px;
    margin: 0 auto 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #e0e6ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c2640;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .contact-form-wrapper, .seo-offer-card, .cta-card {
        margin-bottom: 30px;
    }
    
    .seo-offer-wrapper {
        height: auto;
    }
    
    .section-title, .card-title, .cta-title, .tool-title {
        font-size: 24px;
    }
    
    .seo-tool-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-forms-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper, .seo-offer-card, .cta-card, .seo-tool-wrapper, .newsletter-wrapper {
        padding: 30px;
    }
    
    .analysis-badge {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .badge-content {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .newsletter-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .seo-tool-form .input-group {
        flex-direction: column;
    }
    
    .seo-tool-form .form-control {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .seo-tool-form .input-group-append {
        width: 100%;
    }
    
    .seo-tool-form .btn {
        width: 100%;
        border-radius: 5px;
    }
}
/* CTA Bölümleri Stilleri */

/* Hazırsanız Başlayalım CTA Bölümü */
.cta-ready-section {
    padding: 80px 0;
    background-color: #1c2640;
    position: relative;
    overflow: hidden;
}

.cta-ready-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/patterns/dots-pattern.png') no-repeat;
    background-position: right center;
    opacity: 0.05;
    z-index: 1;
}

.cta-ready-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.team-avatars {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.rating {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.rating-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-right: 5px;
}

.rating-star {
    color: #ffc107;
    font-size: 18px;
}

.avatars-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px;
    max-width: 500px;
}

.avatar-list {
    display: flex;
    align-items: center;
}

.avatar-item {
    margin-right: -10px;
    border: 2px solid #1c2640;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.avatar-item:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-more {
    background-color: #ff6b6b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-icon {
    color: #fff;
    font-size: 16px;
}

.cta-button-container {
    margin-top: 20px;
}

.btn-cta {
    background-color: #ff6b6b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 5px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #ff5252;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* CTA Banner Bölümü */
.cta-banner-section {
    padding: 0;
}

.cta-banner-wrapper {
    background-color: #c8102e;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.btn-dark {
    background-color: #1c2640;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #131b2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Partnerler Bölümü */
.partners-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.partners-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partner-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
}

/* Responsive Stilleri */
@media (max-width: 992px) {
    .cta-title {
        font-size: 36px;
    }
    
    .cta-banner-wrapper {
        padding: 30px;
    }
    
    .banner-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta-ready-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-banner-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .banner-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .partner-item {
        padding: 15px;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 26px;
    }
    
    .avatars-container {
        max-width: 300px;
    }
    
    .avatar-item {
        width: 35px;
        height: 35px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 15px;
    }
}