/*
Theme Name: GMBSEO Agency Theme
Theme URI: https://gmbseo.agency
Author: GMBSEO Owner
Author URI: https://web.facebook.com/profile.php?id=61579014302123
Description: Premium Custom Local SEO & Review Services Agency Theme.
Version: 1.0
Text Domain: gmbseo-agency
*/

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #10b981;
    --dark-color: #0f172a;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: #334155;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav a {
    text-decoration: none;
    color: #475569;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #94a3b8;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: 0.3s;
}

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

.service-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Fiverr Style Pricing Section */
.pricing {
    background: #f1f5f9;
    padding: 80px 0;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tab-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--dark-color);
    color: white;
}

.pricing-box {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tier-buttons {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.tier-btn {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #64748b;
    transition: 0.3s;
}

.tier-btn.active {
    background: #fff;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.pricing-content {
    padding: 30px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 20px;
    color: var(--dark-color);
}

.price-header .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.package-features {
    list-style: none;
    margin: 20px 0;
}

.package-features li {
    margin-bottom: 10px;
    font-size: 15px;
}

.package-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.btn-order {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order:hover {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    border: 5px solid var(--border-color);
    display: block;
    margin: 0 auto;
}

.fb-link {
    display: inline-block;
    margin-top: 15px;
    background: #1877F2;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #94a3b8;
    padding: 60px 0 20px 0;
}

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

footer h3, footer h4 {
    color: white;
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 20px;
    font-size: 14px;
}