/* ================================
   Edge Forge Digital - Main Styles
   ================================ */

/* ========== CSS Variables ========== */
:root {
    --navy: #0A1628;
    --navy-light: #1a2840;
    --blue: #4A9EFF;
    --blue-dark: #2668cc;
    --blue-light: #7bb8ff;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Navigation ========== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
}

.logo-text {
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(74, 158, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== Sections ========== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Services Preview ========== */
.services-preview {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--blue-dark);
}

/* ========== Why Us ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.why-item h3 {
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== Pricing ========== */
.pricing-preview {
    background: var(--navy);
    color: var(--white);
}

.pricing-preview .section-header h2,
.pricing-preview .section-header p {
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(74, 158, 255, 0.3);
}

.pricing-card.featured {
    position: relative;
    background: rgba(74, 158, 255, 0.1);
    border-color: var(--blue);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--blue-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
}

.price-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-md);
}

.pricing-note p {
    color: var(--white);
    margin: 0;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== Footer ========== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ========== Page Header ========== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========== Service Detail ========== */
.service-detail {
    padding: 5rem 0;
}

.service-detail.alt {
    background: var(--gray-50);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--blue);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.service-stat-card {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 1rem;
}

.stat-big {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-light);
    margin-bottom: 0.5rem;
}

.service-stat-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.seo-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.seo-package {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
}

.seo-package.featured {
    border-color: var(--blue);
    background: rgba(74, 158, 255, 0.05);
}

.seo-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin: 1rem 0;
}

.seo-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

.seo-package ul {
    margin-top: 1rem;
}

.seo-package li {
    padding: 0.5rem 0;
    color: var(--gray-600);
}

/* ========== Pricing Page ========== */
.pricing-section {
    background: var(--white);
}

.pricing-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card-full {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.pricing-card-full.featured {
    position: relative;
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.price-large .currency {
    font-size: 1.5rem;
    color: var(--blue);
}

.price-large .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--navy);
}

.pricing-body {
    padding: 2rem;
}

.pricing-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-list li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-header {
    margin-top: 2rem;
}

.timeline {
    color: var(--gray-600);
    font-style: italic;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

/* ========== SEO Pricing ========== */
.seo-pricing {
    background: var(--gray-50);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.seo-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.seo-card.featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
}

.seo-header {
    padding: 2rem;
    text-align: center;
}

.seo-price-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.seo-price-large .currency {
    font-size: 1.25rem;
    color: var(--blue);
}

.seo-price-large .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
}

.seo-price-large .period {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.seo-desc {
    color: var(--gray-600);
}

.seo-body {
    padding: 0 2rem 2rem;
}

.ideal-for {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.seo-footer {
    padding: 0 2rem 2rem;
}

.seo-note {
    text-align: center;
    padding: 1.5rem;
    background: rgba(74, 158, 255, 0.1);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

/* ========== FAQ ========== */
.faq-section,
.contact-faq {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== Portfolio ========== */
.portfolio-section {
    background: var(--white);
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

.portfolio-item.reverse {
    direction: rtl;
}

.portfolio-item.reverse > * {
    direction: ltr;
}

.portfolio-placeholder {
    aspect-ratio: 16/10;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px solid var(--gray-200);
}

.portfolio-placeholder.restaurant {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
}

.portfolio-placeholder.contractor {
    background: linear-gradient(135deg, #dbeafe 0%, #60a5fa 100%);
}

.portfolio-placeholder.ecommerce {
    background: linear-gradient(135deg, #f3e8ff 0%, #a78bfa 100%);
}

.portfolio-placeholder p {
    font-weight: 600;
    color: var(--navy);
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-content h2 {
    margin-bottom: 1rem;
}

.portfolio-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portfolio-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-col h4 {
    margin-bottom: 0.75rem;
}

.detail-col p {
    color: var(--gray-600);
    line-height: 1.7;
}

.detail-col ul {
    list-style: none;
    margin-top: 1rem;
}

.detail-col li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
}

.detail-col li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.portfolio-results {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.portfolio-results h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-light);
    margin-bottom: 0.5rem;
}

.result p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

.portfolio-features {
    margin: 2rem 0;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tags span {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.testimonial {
    background: var(--gray-50);
    padding: 2rem;
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

.portfolio-stats {
    background: var(--blue);
    color: var(--white);
    text-align: center;
}

.portfolio-stats h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-large {
    text-align: center;
}

.stat-large .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-large p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ========== Contact Page ========== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--blue);
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.contact-benefits {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.contact-benefits h3 {
    margin-bottom: 1rem;
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
}

.contact-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.calendly-container h2 {
    margin-bottom: 0.5rem;
}

.calendly-desc {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.calendly-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========== Contact Form ========== */
.quick-contact {
    background: var(--gray-50);
}

.quick-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid,
    .portfolio-item,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid.reverse,
    .portfolio-item.reverse {
        direction: ltr;
    }
    
    .pricing-grid,
    .pricing-grid-full,
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-details,
    .results-grid,
    .seo-packages {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number,
    .stat-big {
        font-size: 2rem;
    }
    
    .price .amount,
    .price-large .amount {
        font-size: 2.5rem;
    }
}
