/* Extracted styles from index.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00BCD4;
    --orange: #FF9800;
    --pink: #FF1493;
    --yellow: #FFD600;
    --red: #E91E63;
    --purple: #9C27B0;
    --lime: #CDDC39;
    --white: #FFFFFF;
    --dark: #2C3E50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.75rem 1.5rem;
    background-color: var(--cyan);
    color: white;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="stats"] {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.logo-animated {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.brain-half {
    width: 30px;
    height: 40px;
    border-radius: 20px 0 0 20px;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    animation: pulse 2s infinite;
    position: relative;
}

.brain-half::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heart-animated {
    width: 35px;
    height: 35px;
    position: relative;
    animation: heartbeat 1.5s infinite;
}

.heart-animated::before,
.heart-animated::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 28px;
    background: var(--pink);
    border-radius: 18px 18px 0 0;
}

.heart-animated::before {
    left: 18px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart-animated::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.primary-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.primary-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    position: relative;
}

.primary-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.primary-nav a:hover::before {
    width: 80%;
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #FCE4EC 40%, #FFF9C4 70%, #F1F8E9 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    font-size: 8rem;
    color: var(--cyan);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    font-size: 6rem;
    color: var(--orange);
    animation-delay: 3s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    font-size: 7rem;
    color: var(--pink);
    animation-delay: 6s;
}

.shape-4 {
    top: 30%;
    right: 25%;
    font-size: 5rem;
    color: var(--purple);
    animation-delay: 9s;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s;
}

.logo-circle {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border: 3px dashed var(--cyan);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.main-brain {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--orange) 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0,188,212,0.4);
}

.main-heart {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 1.5rem;
}

.main-heart::before,
.main-heart::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 80px;
    background: var(--pink);
    border-radius: 50px 50px 0 0;
    box-shadow: 0 10px 30px rgba(255,20,147,0.4);
}

.main-heart::before {
    left: 50px;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.main-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.puzzle-word {
    display: flex;
    gap: 0.3rem;
    margin-top: 1rem;
}

.puzzle-letter {
    width: 45px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.puzzle-letter:nth-child(1) { background: var(--yellow); }
.puzzle-letter:nth-child(2) { background: var(--orange); }
.puzzle-letter:nth-child(3) { background: var(--red); }
.puzzle-letter:nth-child(4) { background: var(--purple); }
.puzzle-letter:nth-child(5) { background: var(--pink); }
.puzzle-letter:nth-child(6) { background: var(--cyan); }
.puzzle-letter:nth-child(7) { background: var(--lime); }

.hero-text h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.badge {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge-1 { background: linear-gradient(135deg, var(--cyan), var(--purple)); }
.badge-2 { background: linear-gradient(135deg, var(--orange), var(--red)); }
.badge-3 { background: linear-gradient(135deg, var(--pink), var(--purple)); }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: white;
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: var(--cyan);
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: white;
    transform: translateY(-5px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    padding: 4rem 2rem;
    color: white;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 7rem 2rem;
    background: white;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    transition: transform 0.5s;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

.service-card:nth-child(1) .service-icon-wrapper {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
}

.service-card:nth-child(2) .service-icon-wrapper {
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

.service-card:nth-child(3) .service-icon-wrapper {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Process Section */
.process {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F5E9 100%);
}

.process-timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) .process-content {
    order: 2;
}

.process-content {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.process-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 2;
}

.process-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--cyan);
}

.process-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

/* Testimonials */
.testimonials {
    padding: 7rem 2rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    border-left: 5px solid var(--cyan);
}

.testimonial-card:nth-child(2) {
    border-left-color: var(--orange);
}

.testimonial-card:nth-child(3) {
    border-left-color: var(--pink);
}

.quote-icon {
    font-size: 3rem;
    color: var(--cyan);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.author-info h3 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #888;
    font-size: 0.95rem;
}

.stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.blog-image-wrapper {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    transition: transform 0.4s;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-card:nth-child(1) .blog-image {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.blog-card:nth-child(2) .blog-image {
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.blog-card:nth-child(3) .blog-image {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cyan);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.95rem;
}

.blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

.blog-status {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(0, 188, 212, 0.4);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: #4a4a4a;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-status p {
    margin: 0;
}

.blog-status a {
    color: var(--cyan);
    text-decoration: none;
}

.blog-status a:hover {
    text-decoration: underline;
}

.blog-status--error {
    border-color: rgba(233, 30, 99, 0.4);
    color: #c62828;
    background: rgba(233, 30, 99, 0.05);
}

.blog-list .blog-status {
    width: 100%;
    margin-bottom: 2rem;
    background: #ffffff;
}

.blog-more {
    margin-top: 3rem;
    text-align: center;
}

.blog-more .btn-secondary {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.blog-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.9), rgba(156, 39, 176, 0.9));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before,
.blog-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

.blog-hero::before {
    top: -160px;
    left: -120px;
}

.blog-hero::after {
    bottom: -180px;
    right: -140px;
}

.blog-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-hero .breadcrumbs {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-hero .breadcrumbs a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.blog-hero .breadcrumbs span {
    opacity: 0.7;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-post.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.blog-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 188, 212, 0.12);
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.blog-post h2 {
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #667085;
    margin-bottom: 1.5rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.blog-cover {
    margin: 2rem 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-body {
    margin-top: 1.5rem;
}

.blog-post-body h3,
.blog-post-body h4 {
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.blog-post p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.blog-post ul {
    margin: 1.5rem 0;
    padding-left: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.blog-post ul li {
    margin-bottom: 0.75rem;
}

.blog-post ul li strong {
    color: var(--dark);
}

.blog-post-cta {
    margin-top: 2rem;
    font-weight: 600;
}

.blog-post-cta a {
    color: var(--cyan);
    text-decoration: none;
}

.blog-post-cta a:hover {
    text-decoration: underline;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.sidebar-card p {
    color: #555;
    line-height: 1.7;
}

.sidebar-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding: 0;
}

.sidebar-list li a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-list li a:hover {
    color: var(--cyan);
}

.sidebar-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.sidebar-pill {
    background: rgba(0, 188, 212, 0.12);
    color: var(--cyan);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.sidebar-pill:hover {
    background: rgba(0, 188, 212, 0.2);
}

.blog-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(0, 188, 212, 0.1));
}

.blog-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #4a4a4a;
    line-height: 1.8;
}
/* Gallery Section */
.gallery {
    padding: 7rem 2rem;
    background: white;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.gallery-item:nth-child(1) { background: linear-gradient(135deg, var(--cyan), var(--purple)); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, var(--orange), var(--red)); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, var(--lime), var(--cyan)); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, var(--purple), var(--pink)); }

/* Contact Section */
.contact {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

address {
    font-style: normal;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.info-details strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-details a {
    color: white;
    text-decoration: none;
}

.info-details a:hover,
.info-details a:focus {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.contact-form h2 {
    color: var(--cyan);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: white;
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    font-size: 1.15rem;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.5);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    transform: translateY(-8px) rotate(15deg);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.8rem;
    color: var(--cyan);
    font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a:hover {
    color: var(--cyan);
    padding-left: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #333;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Success message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes heartbeat {
    0%, 100% { transform: rotate(45deg) scale(1); }
    25% { transform: rotate(45deg) scale(1.15); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-circle {
        width: 300px;
        height: 300px;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        left: 30px;
    }

    .process-step:nth-child(even) .process-content {
        order: 1;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .sidebar-card {
        flex: 1 1 280px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--cyan), var(--purple));
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
    }

    .primary-nav .nav-links.active,
    .primary-nav .nav-links[data-visible="true"] {
        display: flex;
    }

    .primary-nav .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .blog-hero {
        padding: 4.5rem 1.5rem;
    }

    .blog-hero h1 {
        font-size: 2.2rem;
    }

    .blog-post {
        padding: 2rem;
    }

    .blog-sidebar {
        flex-direction: column;
    }

    .sidebar-card {
        flex: 1 1 auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .services-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
