/*
Theme Name: ThinkTrek
Theme URI: https://thinktrek.com
Author: ThinkTrek Team
Author URI: https://thinktrek.com
Description: A futuristic, professional WordPress theme with gradient backgrounds and advanced animations - Combining Passion, Innovation & Energy
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thinktrek
Tags: business, portfolio, modern, futuristic, gradient, animated, professional
*/

:root {
    --teal: #177A93;
    --dark: #050A12;
    --white: #FFFFFF;
    --light: #F8FAFB;
    --gray: #6B7280;
    --gradient-1: linear-gradient(135deg, #177A93 0%, #0d5468 100%);
    --gradient-2: linear-gradient(135deg, #050A12 0%, #177A93 100%);
    --gradient-3: linear-gradient(135deg, rgba(23, 122, 147, 0.1) 0%, transparent 100%);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.site-logo,
.footer-logo,
.floating-card h3,
.stat-number,
.service-card h3,
.project-card h3 {
    font-family: 'Archivo', sans-serif;
}

/* Animated Gradient Mesh Background */
.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.gradient-mesh::before,
.gradient-mesh::after {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    filter: blur(150px);
    animation: floatMesh 25s infinite alternate ease-in-out;
}

.gradient-mesh::before {
    background: radial-gradient(circle, rgba(23, 122, 147, 0.4) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    animation-delay: -5s;
}

.gradient-mesh::after {
    background: radial-gradient(circle, rgba(5, 10, 18, 0.2) 0%, transparent 70%);
    bottom: -400px;
    left: -400px;
    animation-duration: 30s;
}

@keyframes floatMesh {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(100px, 50px) scale(1.2) rotate(180deg); }
    100% { transform: translate(-50px, 100px) scale(0.9) rotate(360deg); }
}

/* Particle Effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
    animation: float-particle 20s infinite;
    opacity: 0.3;
}

@keyframes float-particle {
    0% { 
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { 
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Navigation */
.main-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(23, 122, 147, 0.1);
    transition: all 0.3s ease;
}

.main-navigation.scrolled {
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.site-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo .logo-part-1 {
    color: var(--dark);
}

.site-logo .logo-part-2 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-nav:hover::before {
    opacity: 1;
}

.btn-nav span {
    position: relative;
    z-index: 1;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(23, 122, 147, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 10rem 4rem 6rem;
    gap: 4rem;
    overflow: hidden;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(23, 122, 147, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(23, 122, 147, 0.2);
}

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

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 25px;
    background: rgba(23, 122, 147, 0.15);
    z-index: -1;
    transform: skewY(-2deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--dark);
    color: white;
    border: 2px solid var(--dark);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(23, 122, 147, 0.4);
}

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

.btn-secondary:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(23, 122, 147, 0.3);
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Floating Visual Card */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease 0.4s both;
}

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

.floating-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(23, 122, 147, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(23, 122, 147, 0.15);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-card:hover::before {
    opacity: 0.5;
}

.floating-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
    background-size: 200% 200%;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-family: 'Archivo', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0 6rem;
    background: var(--white);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.clients-tag {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: var(--dark);
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.client-logo svg {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.client-logo:hover svg {
    filter: grayscale(0);
}

/* Section Styles */
.section {
    padding: 8rem 4rem;
    position: relative;
}

.section-gradient {
    background: linear-gradient(135deg, var(--light) 0%, white 50%, var(--light) 100%);
}

.diagonal-section {
    position: relative;
    padding: 8rem 4rem;
    background: linear-gradient(135deg, rgba(23, 122, 147, 0.05) 0%, white 50%, rgba(23, 122, 147, 0.05) 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 4rem 0;
}

.section-header {
    max-width: 800px;
    margin-bottom: 5rem;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
}

.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Services Grid - Bento Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(23, 122, 147, 0.1);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--teal);
    box-shadow: 0 30px 80px rgba(23, 122, 147, 0.2);
}

.service-card:nth-child(1) { 
    grid-column: span 2; 
    background: linear-gradient(135deg, rgba(23, 122, 147, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-card:nth-child(4) { 
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(23, 122, 147, 0.3);
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(23, 122, 147, 0.5);
}

.service-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

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

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

.service-link:hover {
    gap: 1rem;
}

/* Projects Section */
.projects-section {
    padding: 8rem 4rem;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="80" r="2" fill="rgba(23,122,147,0.3)"/><circle cx="80" cy="20" r="3" fill="rgba(23,122,147,0.2)"/><circle cx="50" cy="50" r="1.5" fill="rgba(23,122,147,0.25)"/></svg>');
    opacity: 0.4;
    animation: float 20s infinite;
}

.projects-section .section-tag {
    color: var(--teal);
}

.projects-section .section-title {
    color: white;
}

.projects-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin-top: 4rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 30px 80px rgba(23, 122, 147, 0.3);
}

.project-image {
    width: 100%;
    height: 300px;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.project-content {
    padding: 2rem;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.project-card h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 10rem 4rem;
    background: var(--gradient-1);
    color: white;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.4;
    animation: float 15s infinite;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.btn-white {
    background: white;
    color: var(--dark);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
    display: inline-block;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 4rem 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-decoration: none;
    display: inline-block;
}

.footer-logo .logo-part-1 {
    color: white;
}

.footer-logo .logo-part-2 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--teal);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(23, 122, 147, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

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

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

    .service-card:nth-child(1),
    .service-card:nth-child(4) {
        grid-column: span 1;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        padding: 1.5rem 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hero-section,
    .section,
    .diagonal-section,
    .projects-section,
    .cta-section {
        padding: 4rem 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* WordPress Specific */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.9rem; color: var(--gray); margin-top: 0.5rem; }

.sticky { border-left: 4px solid var(--teal); padding-left: 2rem; }
.bypostauthor { font-weight: 600; }

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}
