/* 
    Swift Relocators - Custom CSS 
    Design Focus: Gradients, Glassmorphism, CSS Art, and Responsiveness
*/

:root {
    --primary-gradient: linear-gradient(45deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #00d2ff;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --bg-light: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Abstract Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #4158D0;
    top: -100px;
    right: -100px;
    animation: float 20s infinite alternate;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #C850C0;
    bottom: -50px;
    left: -50px;
    animation: float 15s infinite alternate-reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #FFCC70;
    top: 40%;
    left: 20%;
    animation: float 25s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(200, 80, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 80, 192, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 2px solid #eee;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* Article Section */
.article-section {
    padding: 4rem 0;
}

.blog-post {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.post-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.category {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.post-content a {
    color: #4158D0;
    font-weight: 700;
    border-bottom: 2px solid #C850C0;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 5px;
    background: var(--primary-gradient);
    margin: 0 auto;
    border-radius: 10px;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #C850C0;
    box-shadow: var(--shadow);
}

.icon-shape {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    transform: rotate(45deg);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info {
    flex: 1;
    min-width: 250px;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: #C850C0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    border-radius: 3px;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .blog-post { padding: 3rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        display: none; /* In a real app, JS would toggle this */
    }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
    .blog-post { padding: 2rem; }
    .post-header h2 { font-size: 1.8rem; }
}
