/* ===== CSS Reset and Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #f8fafc;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb 0%, #1e3a8a 100%);
}

/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    box-shadow: 0 6px 40px rgba(59, 130, 246, 0.12) !important;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo h2:hover {
    transform: scale(1.05);
    color: #60a5fa !important;
}

.logo span {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #60a5fa !important;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #ffffff !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(96, 165, 250, 0.2)),
                url('../assets/unsplash-photo-1600585154340-be6161a56a0c-w1920-8bb32ee8.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    animation: fadeInUp 1s ease, textGlow 3s ease-in-out infinite;
    letter-spacing: -2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

@keyframes textGlow {
    0%, 100% { text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4); }
    50% { text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.6); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

/* ===== Buttons ===== */
.btn {
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.btn-light {
    background: #ffffff;
    color: #1e40af;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    border: 2px solid transparent;
}

.btn-light:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    background: #f0f9ff;
    border-color: #3b82f6;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.section-header p {
    color: #cbd5e1;
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== Services Section ===== */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10%) translateY(-5%); }
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4),
                0 0 80px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.service-card:hover p {
    color: #e0e7ff;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    transition: all 0.5s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 1));
    transform: scale(1.2) rotateY(360deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1.2); }
    50% { transform: translateY(-10px) scale(1.2); }
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.8;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* ===== About Preview Section ===== */
.about-preview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
    animation: pulse 3s ease-in-out infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(225deg, #93c5fd, #3b82f6);
    border-radius: 24px;
    z-index: -2;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.about-image:hover::before {
    top: -40px;
    left: -40px;
    right: 40px;
    bottom: 40px;
    opacity: 0.25;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.25),
                0 0 60px rgba(59, 130, 246, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 35px 100px rgba(59, 130, 246, 0.35),
                0 0 80px rgba(59, 130, 246, 0.2);
}

.about-content h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.about-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.about-content .btn {
    margin-top: 1.5rem;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

/* ===== Stats Section ===== */
.stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== Projects Section ===== */
.projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.project-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientRotate 3s ease infinite;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-25px) scale(1.02);
    box-shadow: 0 35px 90px rgba(59, 130, 246, 0.3),
                0 0 60px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.project-card:hover .project-info h3 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card:hover .location {
    color: #2563eb;
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.project-card:hover .description {
    color: #1e40af;
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    z-index: 1;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.project-card:hover .project-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.1);
}

.project-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.project-info h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    position: relative;
}

.testimonials .section-header h2 {
    color: #ffffff;
}

.testimonials .section-header h2::after {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonials-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.testimonial-card:hover .testimonial-text {
    color: #1e40af;
}

.testimonial-card:hover .client-name {
    color: #1e40af;
}

.testimonial-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 3px;
    position: relative;
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    color: #475569;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.client-name {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 2px solid rgba(59, 130, 246, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

/* ===== CTA Banner Section ===== */
.cta-banner {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(59, 130, 246, 0.75)),
                url('../assets/unsplash-photo-1560518883-ce09059eeffa-w1920-543c2554.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== Blog Section ===== */
.blog {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 300% 300%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientRotate 3s ease infinite;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.4),
                0 0 60px rgba(59, 130, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blog-card:hover .blog-content h3 {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.blog-card:hover .blog-content p {
    color: #e0e7ff;
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 197, 253, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    transition: all 0.3s ease;
}

.read-more {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.read-more:hover {
    color: #93c5fd;
    gap: 1rem;
    text-shadow: 0 0 20px rgba(147, 197, 253, 0.8);
}

/* ===== Contact Strip Section ===== */
.contact-strip {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.08);
    min-height: 100px;
}

.contact-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.contact-item:hover h4 {
    color: #1e40af;
}

.contact-item:hover p {
    color: #1e40af;
}

.contact-icon {
    font-size: 2.5rem;
    filter: grayscale(0.3);
}

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item > div:last-child {
    flex: 1;
    min-width: 0;
}

.contact-item p {
    color: #64748b;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    border-top: 3px solid #60a5fa;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.8s ease;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.4s;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-section h3:hover {
    color: #dbeafe;
    transform: translateX(5px);
}

.footer-section h3 span {
    color: #93c5fd;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #bd9c82;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    color: #bd9c82;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dbeafe;
    transform: translateX(20px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: -15px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(189, 156, 130, 0.2);
    border: 1px solid rgba(189, 156, 130, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: linear-gradient(135deg, #8d6e63, #6d4c41);
    border-color: transparent;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(141, 110, 99, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(189, 156, 130, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(189, 156, 130, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(62, 39, 35, 0.2);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(141, 110, 99, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        min-width: 320px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .services,
    .projects,
    .blog,
    .testimonials,
    .about-preview {
        padding: 5rem 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid,
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        min-height: 120px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .services,
    .projects,
    .blog,
    .testimonials,
    .about-preview {
        padding: 4rem 0;
    }

    .stats {
        padding: 4rem 0;
    }

    .cta-banner {
        padding: 5rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

/* ===== Section CTA Button ===== */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn {
    padding: 14px 40px;
    font-size: 1.05rem;
}

/* ===== Warm Theme Overrides ===== */

/* ===== Featured Properties ===== */
.featured-properties {
    padding: 8rem 0;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%);
    position: relative;
    overflow: hidden;
}

.featured-properties::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(33, 37, 41, 0.5), transparent);
    pointer-events: none;
}

.featured-properties .section-header h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-properties .section-header h2::after {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.featured-properties .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.property-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.property-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.property-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.property-card:hover::after {
    opacity: 1;
}

.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    z-index: 1;
}

.property-info h3 {
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.property-location {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.property-price {
    color: #2d3748;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Company Introduction Fresh Theme */
.company-intro {
    padding: 8rem 0;
    background: #ffffff;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 2;
    color: #4a5568;
    font-weight: 400;
    position: relative;
    padding-left: 2rem;
}

/* Capabilities Fresh Theme */
.capabilities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    position: relative;
    overflow: hidden;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.capabilities .section-header {
    position: relative;
    z-index: 1;
}

.capabilities .section-header h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.capabilities .section-header h2::after {
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

.capabilities .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.capability-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #495057, #212529);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    transform: translateY(-20px) rotate(2deg);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.capability-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
    transition: all 0.5s ease;
    display: inline-block;
}

.capability-card:hover .capability-icon {
    filter: grayscale(0);
    transform: scale(1.2) rotate(360deg);
}

.capability-card h3 {
    color: #212529;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.capability-card p {
    color: #6c757d;
    line-height: 1.8;
    font-weight: 400;
}

/* Client Feedback Fresh Theme */
.client-feedback {
    padding: 8rem 0;
    background: #ffffff;
}

.feedback-card {
    background: linear-gradient(135deg, #f5f0eb 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #e8dfd6;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feedback-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(141, 110, 99, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(141, 110, 99, 0.4);
    box-shadow: 0 25px 70px rgba(109, 76, 65, 0.25);
}

.feedback-card:hover::before {
    color: rgba(141, 110, 99, 0.3);
    transform: scale(1.1);
}

.feedback-text {
    color: #3e2723;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.feedback-author h4 {
    color: #3e2723;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feedback-author p {
    color: #5d4037;
    font-size: 0.9rem;
    font-weight: 400;
}

.feedback-author img {
    transition: all 0.4s ease;
}

.feedback-card:hover .feedback-author img {
    transform: scale(1.1) rotate(5deg);
}

/* Property Info Warm Theme */
.property-info h3 {
    color: #3e2723;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.property-card:hover .property-info h3 {
    color: #6d4c41;
}

.property-location {
    color: #8d6e63;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.property-price {
    color: #3e2723;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8d6e63, #6d4c41);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Experience Section Warm Theme */
.experience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8d6e63 0%, #6d4c41 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.experience-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section Warm Theme */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(141, 110, 99, 0.95), rgba(109, 76, 65, 0.95)),
                url('../assets/unsplash-photo-1560518883-ce09059eeffa-w1920-543c2554.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Property Image Warm Theme */
.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(33, 37, 41, 0.9), transparent);
    z-index: 1;
}

/* Intro Image Warm Theme */
.intro-image {
    position: relative;
    animation: slideInRight 1s ease;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #adb5bd, #6c757d);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.intro-image:hover::before {
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    opacity: 0.5;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.intro-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Property Badge Warm Theme */
.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8d6e63, #6d4c41);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(109, 76, 65, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


/* ===== Modern Gray Theme Updates ===== */

/* Client Feedback */
.client-feedback {
    padding: 8rem 0;
    background: #ffffff;
}

.feedback-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feedback-card::before {
    color: rgba(73, 80, 87, 0.1);
}

.feedback-card:hover::before {
    color: rgba(73, 80, 87, 0.2);
}

.feedback-text {
    color: #495057;
}

.feedback-author h4 {
    color: #212529;
}

.feedback-author p {
    color: #6c757d;
}

/* Property Cards */
.property-info h3 {
    color: #212529;
}

.property-card:hover .property-info h3 {
    color: #495057;
}

.property-location {
    color: #6c757d;
}

.property-price {
    color: #212529;
    background: linear-gradient(135deg, #495057, #212529);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.property-badge {
    background: linear-gradient(135deg, #495057, #212529);
    box-shadow: 0 4px 15px rgba(33, 37, 41, 0.4);
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #495057 0%, #212529 100%);
}

.experience::after {
    background: radial-gradient(circle, rgba(206, 212, 218, 0.1) 0%, transparent 70%);
}

.experience-item:hover .experience-number {
    text-shadow: 0 4px 20px rgba(206, 212, 218, 0.5);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(73, 80, 87, 0.95), rgba(33, 37, 41, 0.95)),
                url('../assets/unsplash-photo-1560518883-ce09059eeffa-w1920-543c2554.jpg') center/cover;
}

.cta-section::after {
    background: radial-gradient(circle, rgba(206, 212, 218, 0.15) 0%, transparent 70%);
}

/* Section Headers - removed conflicting gradient text */

/* Featured Properties */
.featured-properties {
    background: #ffffff;
}

.featured-properties::before {
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.property-card {
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.property-card:hover {
    border-color: rgba(73, 80, 87, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Company Intro */
.company-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.company-intro::before {
    background: radial-gradient(circle, rgba(206, 212, 218, 0.15) 0%, transparent 70%);
}

.intro-text {
    color: #495057;
}

.intro-text::before {
    background: linear-gradient(180deg, #495057, #212529);
}

.intro-image::before {
    background: linear-gradient(135deg, #adb5bd, #6c757d);
    opacity: 0.3;
}

.intro-image:hover::before {
    opacity: 0.5;
}

.intro-image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-image:hover img {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    border-top: 3px solid #495057;
}

.footer-section h3 {
    color: #ced4da;
}

.footer-section h3:hover {
    color: #e9ecef;
}

.footer-section h3 span {
    color: #adb5bd;
}

.footer-section h4 {
    color: #ced4da;
}

.footer-contact p:hover {
    color: #ced4da;
}

.social-icon {
    background: rgba(206, 212, 218, 0.15);
    border: 1px solid rgba(206, 212, 218, 0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, #495057, #212529);
    box-shadow: 0 10px 25px rgba(73, 80, 87, 0.5);
}

/* Scroll Progress Bar */
.scroll-progress {
    background: linear-gradient(90deg, #495057, #212529);
    box-shadow: 0 2px 10px rgba(73, 80, 87, 0.5);
}

/* Selection */
::selection {
    background: linear-gradient(135deg, #495057, #212529);
    color: white;
}

/* Cursor Trail */
.cursor-trail-dot {
    background: rgba(73, 80, 87, 0.5);
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(206, 212, 218, 0.3), transparent);
}

/* Responsive Nav Menu */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #e9ecef;
    }
}


/* ===== PAGE HERO SECTION ===== */
.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ===== COMPANY STORY SECTION ===== */
.company-story {
    padding: 8rem 0;
    background: #ffffff;
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.story-content h2 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.story-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.story-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.story-image-main {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    animation: float 6s ease-in-out infinite;
}

.story-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image-main:hover img {
    transform: scale(1.05);
}

.story-image-secondary {
    grid-column: 1 / 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    animation: float 6s ease-in-out infinite 1s;
}

.story-image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image-secondary:hover img {
    transform: scale(1.05);
}

/* ===== MISSION & VALUES SECTION ===== */
.mission-values {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.mission-card {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.value-card:hover h4 {
    color: #1e40af;
}

.value-card:hover p {
    color: #1e40af;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== TEAM PREVIEW SECTION ===== */
.team-preview {
    padding: 8rem 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.team-member {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.team-member:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
}

.team-member:hover .member-info h3 {
    color: #1e40af;
}

.team-member:hover .member-bio {
    color: #1e40af;
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(30, 64, 175, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .social-link {
    transform: translateY(0);
    opacity: 1;
}

.social-link:nth-child(1) {
    transition-delay: 0.1s;
}

.social-link:nth-child(2) {
    transition-delay: 0.2s;
}

.social-link:nth-child(3) {
    transition-delay: 0.3s;
}

.social-link:hover {
    background: white;
    transform: translateY(-5px);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.why-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #3b82f6, #1e40af);
    transition: height 0.4s ease;
}

.why-item:hover::before {
    height: 100%;
}

.why-item:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.why-item:hover h3 {
    color: #1e40af;
}

.why-item:hover p {
    color: #1e40af;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: #dbeafe;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== CTA BUTTONS GROUP ===== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE - ABOUT PAGE ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-images {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-cards {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== SERVICES PAGE STYLES ===== */
.services-overview {
    padding: 6rem 0 4rem;
    background: #ffffff;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 0 8rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-detailed-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-detailed-card:hover::before {
    transform: scaleX(1);
}

.service-detailed-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.service-detailed-card:hover h3 {
    color: #1e40af;
}

.service-detailed-card:hover > p {
    color: #1e40af;
}

.service-detailed-card:hover .service-features li {
    color: #1e40af;
}

.service-detailed-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.service-detailed-card:hover .service-detailed-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-detailed-card h3 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-detailed-card > p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #475569;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    padding-left: 10px;
    color: #3b82f6;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 1rem;
    color: #1e40af;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.process-step:nth-child(even) .step-content {
    grid-column: 1;
    text-align: right;
}

.process-step:nth-child(even) .step-number {
    grid-column: 2;
}

.process-step:nth-child(odd) .step-content {
    grid-column: 3;
    text-align: left;
}

.process-step:nth-child(odd) .step-number {
    grid-column: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
    transition: all 0.4s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.step-content:hover h3 {
    color: #1e40af;
}

.step-content:hover p {
    color: #1e40af;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== INDUSTRY SEGMENTS ===== */
.industry-segments {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.segment-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.5s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.segment-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
}

.segment-card:hover .segment-content {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.segment-card:hover .segment-content h3 {
    color: #1e40af;
}

.segment-card:hover .segment-content p {
    color: #1e40af;
}

.segment-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.segment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.segment-card:hover .segment-image::after {
    opacity: 1;
}

.segment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.segment-card:hover .segment-image img {
    transform: scale(1.15);
}

.segment-content {
    padding: 2rem;
}

.segment-content h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.segment-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE - SERVICES PAGE ===== */
@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        grid-column: 2;
        text-align: left;
    }
    
    .process-step:nth-child(even) .step-number,
    .process-step:nth-child(odd) .step-number {
        grid-column: 1;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .segments-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== PROJECTS PAGE STYLES ===== */
.project-filters-section {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.projects-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.projects-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.gallery-project-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.gallery-project-card:hover {
    transform: translateY(-20px);
    border-color: #3b82f6;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.25);
}

.gallery-project-card:hover .gallery-project-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.gallery-project-card:hover .gallery-project-info h3 {
    color: #1e40af;
}

.gallery-project-card:hover .gallery-project-info > p {
    color: #1e40af;
}

.gallery-project-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.gallery-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-project-card:hover .gallery-project-image img {
    transform: scale(1.2) rotate(2deg);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(30, 64, 175, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: #1e40af;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-project-card:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-project-info {
    padding: 2rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-location {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-status {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-status.completed {
    background: #d1fae5;
    color: #065f46;
}

.project-status.ongoing {
    background: #fef3c7;
    color: #92400e;
}

.gallery-project-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gallery-project-info > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
}

.success-stats {
    padding: 6rem 0;
    background: #ffffff;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.success-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.success-item:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.success-item:hover h3 {
    color: #2563eb;
}

.success-item:hover p {
    color: #1e40af;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.success-item h3 {
    color: #3b82f6;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.success-item p {
    color: #64748b;
    font-size: 1.1rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-main {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748b;
    font-size: 1.05rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.info-card:hover h3 {
    color: #1e40af;
}

.info-card:hover p {
    color: #1e40af;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-link:hover {
    gap: 1rem;
    color: #1e40af;
}

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-top: 3px solid #3b82f6;
}

.map-container iframe {
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.faq-snippet {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* ===== BLOG PAGE STYLES ===== */
.featured-post {
    padding: 6rem 0;
    background: #ffffff;
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-wrapper:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.featured-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-content > p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-category {
    padding: 0.5rem 1.2rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-date {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #3b82f6;
}

.post-author h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.post-author span {
    color: #64748b;
    font-size: 0.85rem;
}

.blog-categories {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.categories-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.8rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.category-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
}

.blog-posts {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.blog-post-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
}

.blog-post-card:hover .post-content {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.blog-post-card:hover .post-content h3 {
    color: #1e40af;
}

.blog-post-card:hover .post-content > p {
    color: #1e40af;
}

.post-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.15);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.95);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-meta-small {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

.post-content h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.post-author-small {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.post-author-small img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.post-author-small span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-link:hover {
    gap: 1rem;
    color: #1e40af;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    border-color: #3b82f6;
    color: #3b82f6;
}

.page-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.newsletter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
}

/* ===== RESPONSIVE - PROJECTS, CONTACT, BLOG ===== */
@media (max-width: 768px) {
    .projects-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}


/* ===== SERVICE DETAILS PAGE ===== */
.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-detail-overview {
    padding: 8rem 0;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.overview-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.overview-stat {
    text-align: center;
}

.overview-stat h3 {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.overview-stat p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.overview-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.key-benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #1e40af;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.benefit-card:hover p {
    color: #1e40af;
}

.detailed-process {
    padding: 8rem 0;
    background: #ffffff;
}

.detailed-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.step-details {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
    transition: all 0.4s ease;
}

.step-details:hover {
    transform: translateX(15px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.step-details h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.step-details:hover h3 {
    color: #1e40af;
}

.step-details > p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.step-details:hover > p {
    color: #1e40af;
}

.step-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.step-list li {
    color: #475569;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.step-details:hover .step-list li {
    color: #1e40af;
}

.pricing-summary {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.featured-pricing {
    border-color: #3b82f6;
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
    transform: scale(1.05);
}

.featured-pricing:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.pricing-header h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-header h3 {
    color: #1e40af;
}

.pricing-header p {
    color: #64748b;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-header p {
    color: #1e40af;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.price-label {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    color: #1e40af;
}

.service-faq {
    padding: 8rem 0;
    background: #ffffff;
}

/* ===== RESPONSIVE - SERVICE DETAILS ===== */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-image img {
        height: 300px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-pricing {
        transform: scale(1);
    }
}

/* ===== BLOG ARTICLE PAGE STYLES ===== */
.article-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin-top: 70px;
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-meta-top {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-category {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-date,
.article-read-time {
    color: #64748b;
    font-size: 0.95rem;
}

.article-title {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.article-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.article-author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #3b82f6;
}

.article-author-info h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.article-author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.article-content-section {
    padding: 6rem 0;
    background: #ffffff;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.article-main {
    max-width: 100%;
}

.article-image-featured {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.article-image-featured img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-body {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.9;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.article-body h2 {
    color: #1e293b;
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-quote {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #3b82f6;
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 12px;
}

.article-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #1e40af;
    margin-bottom: 1rem;
}

.article-quote cite {
    color: #64748b;
    font-size: 0.95rem;
}

.article-highlight-box {
    background: #fff7ed;
    border: 2px solid #fb923c;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.article-highlight-box h3 {
    color: #ea580c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-highlight-box p {
    color: #9a3412;
    margin: 0;
}

.article-conclusion {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.article-conclusion h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-share {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.article-share h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
    color: #3b82f6;
}

.author-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: start;
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #3b82f6;
    flex-shrink: 0;
}

.author-box-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.author-box-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.related-posts-section {
    margin-top: 5rem;
}

.related-posts-section h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.related-post-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-post-content h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.related-post-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-link:hover {
    color: #1e40af;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 12px;
}

.popular-post-item:hover {
    background: #f8fafc;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.popular-post-item h4 {
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.popular-post-item span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #eff6ff;
    color: #3b82f6;
    transform: translateX(5px);
}

.category-list span {
    color: #94a3b8;
    font-size: 0.85rem;
}

.cta-widget {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* ===== TEAM PAGE STYLES ===== */
.leadership-section {
    padding: 8rem 0;
    background: #ffffff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.leader-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
}

.leader-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(30, 64, 175, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.leader-info {
    padding: 2.5rem;
}

.leader-info h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.leader-bio {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.leader-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.leader-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
}

.team-members-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.company-culture {
    padding: 8rem 0;
    background: #ffffff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.culture-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.culture-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.culture-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.2) rotate(10deg);
}

.culture-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.culture-card:hover h3 {
    color: #1e40af;
}

.culture-card p {
    color: #64748b;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.culture-card:hover p {
    color: #1e40af;
}

/* ===== PRICING PAGE STYLES ===== */
.pricing-plans-main {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.feature-comparison {
    padding: 8rem 0;
    background: #ffffff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 24px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    color: #64748b;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #1e293b;
}

.pricing-faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===== FAQ PAGE STYLES ===== */
.faq-categories-section {
    padding: 2rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-category-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
}

.faq-section {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===== CAREERS PAGE STYLES ===== */
.why-work-section {
    padding: 8rem 0;
    background: #ffffff;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.why-work-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.why-work-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.why-work-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.why-work-card:hover .why-work-icon {
    transform: scale(1.2) rotate(10deg);
}

.why-work-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.why-work-card:hover h3 {
    color: #1e40af;
}

.why-work-card p {
    color: #64748b;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.why-work-card:hover p {
    color: #1e40af;
}

.benefits-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content h4 {
    color: #1e40af;
}

.benefit-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content p {
    color: #1e40af;
}

.open-positions-section {
    padding: 8rem 0;
    background: #ffffff;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.position-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
}

.position-card:hover {
    transform: translateY(-15px);
    border-color: #3b82f6;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.position-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.position-card:hover .position-header h3 {
    color: #1e40af;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.position-type {
    padding: 0.4rem 1rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.position-location {
    color: #64748b;
    font-size: 0.9rem;
}

.position-salary {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
    flex-shrink: 0;
}

.position-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.position-card:hover .position-description {
    color: #1e40af;
}

.position-requirements {
    margin-bottom: 2rem;
}

.position-requirements h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.position-requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.position-requirements li {
    color: #64748b;
    padding-left: 1.5rem;
    position: relative;
}

.position-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

.application-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.process-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step-horizontal {
    text-align: center;
    max-width: 200px;
}

.step-number-horizontal {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.process-step-horizontal h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-step-horizontal p {
    color: #64748b;
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 2rem;
    color: #3b82f6;
}

/* ===== PROJECT DETAILS PAGE STYLES ===== */
.project-hero {
    position: relative;
    margin-top: 70px;
    height: 70vh;
    min-height: 500px;
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.project-hero-content {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    z-index: 2;
    color: white;
}

.project-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.project-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.project-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.project-summary {
    padding: 8rem 0;
    background: #ffffff;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.summary-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.spec-card:hover h4,
.spec-card:hover p {
    color: #1e40af;
}

.spec-icon {
    font-size: 2.5rem;
}

.spec-info h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.spec-info p {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
}

.project-scope {
    padding: 8rem 0;
    background: #ffffff;
}

.scope-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.scope-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.scope-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.scope-details h3 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.scope-details p {
    color: #64748b;
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
}

.timeline-date {
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.timeline-info h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-info p {
    color: #64748b;
    font-size: 0.95rem;
}

.project-results {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.result-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.result-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.result-card h3 {
    color: #3b82f6;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.result-card:hover h3 {
    color: #2563eb;
}

.result-card p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.result-card:hover p {
    color: #1e40af;
}

.result-detail {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
}

.project-testimonial {
    padding: 8rem 0;
    background: #ffffff;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.quote-icon {
    font-size: 6rem;
    color: rgba(59, 130, 246, 0.1);
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: Georgia, serif;
}

.testimonial-quote p {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #3b82f6;
}

.testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.related-projects {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.related-image {
    height: 220px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-info {
    padding: 1.5rem;
}

.related-info h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.related-info p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.related-price {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.3rem;
}

/* ===== COMPREHENSIVE RESPONSIVE STYLES ===== */

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .scope-wrapper {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta-top {
        gap: 1rem;
    }
    
    .article-image-featured img {
        height: 300px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 300px;
    }
    
    .leader-stats {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .faq-category-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .why-work-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .project-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .project-hero-content h1 {
        font-size: 2.5rem;
    }

    .project-hero-content p {
        font-size: 1.1rem;
    }
    
    .summary-specs {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item,
    .gallery-item.large {
        height: 250px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-quote {
        padding: 2.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 8rem 0 4rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-meta-top {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-image-featured img {
        height: 220px;
    }
    
    .article-body h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    
    .article-quote {
        padding: 1.5rem;
    }

    .article-quote p {
        font-size: 1.05rem;
    }
    
    .article-highlight-box {
        padding: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        text-align: center;
    }
    
    .author-box {
        padding: 2rem;
    }
    
    .author-box img {
        width: 100px;
        height: 100px;
    }
    
    .popular-post-item img {
        width: 60px;
        height: 60px;
    }
    
    .leader-image {
        height: 250px;
    }
    
    .leader-info {
        padding: 2rem;
    }
    
    .leader-info h3 {
        font-size: 1.5rem;
    }
    
    .culture-card {
        padding: 2rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }

    .why-work-card {
        padding: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .position-header {
        flex-direction: column;
        align-items: start;
    }
    
    .position-salary {
        font-size: 1.1rem;
    }
    
    .step-number-horizontal {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step-horizontal h3 {
        font-size: 1rem;
    }
    
    .process-step-horizontal p {
        font-size: 0.85rem;
    }
    
    .project-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .project-hero-content {
        bottom: 2rem;
    }
    
    .project-hero-content h1 {
        font-size: 2rem;
    }
    
    .project-hero-content p {
        font-size: 1rem;
    }
    
    .scope-item {
        flex-direction: column;
        text-align: center;
    }
    
    .scope-number {
        margin: 0 auto;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card h3 {
        font-size: 2.5rem;
    }
}
