:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.05);
    --primary-color: #6366f1;
    /* Indigo */
    --secondary-color: #ec4899;
    /* Pink */
    --accent-color: #06b6d4;
    /* Cyan */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --glass-blur: blur(12px);
    --container-width: 1200px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjusted height for better visibility */
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Removed old text-based logo styles */

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links li a.btn-primary {
    color: #ffffff !important;
    opacity: 1;
}

.nav-links li a:hover {
    color: var(--text-main);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-elements .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: floatingOrb 10s infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: 10%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes floatingOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.badge-pill.white {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Glass Card Global */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns for the 6 items */
    gap: 30px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Google Highlight Section */
.highlight-section {
    position: relative;
    background: linear-gradient(90deg, #0f0f13 0%, #1a1a2e 100%);
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-text,
.col-img {
    flex: 1;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--accent-color);
}

.white-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.white-btn:hover {
    background: white;
    color: black;
}

.google-graphic {
    min-height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.search-bar {
    width: 80%;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-mockup i {
    font-size: 3rem;
    color: #ea4335;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* Secondary Services */
.service-row-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.service-row-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Solutions */
.solutions-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    transition: 0.3s;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Referanslar - Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    padding: 60px;
    border-radius: 20px;
}

.stat-item h3 {
    font-size: 3.5rem;
    display: inline-block;
}

.stat-item span {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Neden Biz */
.why-us-content {
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.blog-content {
    z-index: 2;
    position: relative;
}

.blog-content .category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.blog-content a {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

/* Footer */
footer {
    position: relative;
    background: #000;
    padding-top: 0;
    margin-top: 100px;
}

.cta-section {
    position: relative;
    top: -80px;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1e1e2f 0%, #161622 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.secondary-phone {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.3s;
}

.secondary-phone:hover {
    color: var(--text-main);
    transform: scale(1.05);
}

.contact-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-main {
    padding-bottom: 50px;
    padding-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.8rem;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
/* Responsive Design Improvements */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    #hero h1 {
        font-size: 3rem;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: white;
        margin: 5px 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        padding: 40px;
        border-bottom: 1px solid var(--card-border);
        height: calc(100vh - 80px);
        gap: 30px;
        font-size: 1.2rem;
    }

    /* General Layout */
    .row {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Hero Section */
    #hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Services & Cards */
    .services-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Google Services */
    .google-graphic {
        min-height: 250px;
        margin-top: 30px;
    }

    .check-list li {
        justify-content: center;
        text-align: left;
    }

    /* Secondary Services */
    .services-grid.secondary-grid {
        display: flex;
        flex-direction: column;
    }

    /* Stats */
    .stats-grid {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    /* Footer */
    .cta-section {
        top: 0;
        margin-bottom: 40px;
    }

    footer {
        margin-top: 0;
        background: #050505;
    }

    .cta-box {
        margin: 0 0 30px 0;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 40px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}