/* =====================================================
   ODTech Solutions - Main Stylesheet
   Premium Corporate Design
   ===================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary-dark: #0a1628;
    --primary: #0d2137;
    --primary-light: #1a3a5c;
    --secondary: #0ea5e9;
    --secondary-light: #38bdf8;
    --secondary-dark: #0284c7;
    --accent: #06b6d4;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.loader span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

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

.btn-dark {
    background: var(--primary-dark);
    color: var(--white);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    color: var(--gray-500);
    font-size: 1.125rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-text .accent {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-image {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    transition: var(--transition-normal);
}

.navbar.scrolled .logo-image {
    height: 55px;
    width: 55px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.nav-cta {
    padding: 12px 24px !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm-12 12v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.05;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    color: var(--secondary-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-description {
    color: var(--gray-300);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ===== About Preview Section ===== */
.about-preview {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    border-radius: var(--radius);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
}

.service-link:hover {
    gap: 12px;
}

/* ===== Why Choose Us Section ===== */
.why-us {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
}

.why-us-card h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.why-us-card p {
    color: var(--gray-400);
}

.why-us .section-header .section-title {
    color: var(--white);
}

.why-us .section-header .section-description {
    color: var(--gray-400);
}

/* ===== Projects Section ===== */
.projects {
    background: var(--gray-50);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

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

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.project-content p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    border-radius: 50px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 20px;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--secondary);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

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

.page-header p {
    color: var(--gray-300);
    font-size: 1.25rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-300);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

/* ===== About Page ===== */
.about-full {
    padding-top: 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 50px;
}

.mission-vision {
    background: var(--gray-50);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mission-card h3 i,
.vision-card h3 i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: var(--radius);
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition-normal);
}

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

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.team-content {
    padding: 30px;
}

.team-content h3 {
    margin-bottom: 8px;
}

.team-content h3 a {
    color: var(--primary-dark);
    transition: var(--transition-normal);
}

.team-content h3 a:hover {
    color: var(--secondary);
}

.team-content .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.team-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ===== Team Page Styles ===== */
.team-intro {
    padding-top: 0;
    padding-bottom: 60px;
}

.team-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.team-intro-content h2 {
    margin-bottom: 20px;
}

.team-intro-content p {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.team-page-section {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.team-card-full {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

.team-card-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-card-full .team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-card-full .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card-full:hover .team-image img {
    transform: scale(1.05);
}

.team-card-full .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.team-card-full:hover .team-overlay {
    opacity: 1;
}

.team-card-full .team-content {
    padding: 30px;
    text-align: center;
}

.team-card-full .team-content h3 {
    margin-bottom: 8px;
}

.team-card-full .team-content h3 a {
    color: var(--primary-dark);
    transition: var(--transition-normal);
}

.team-card-full .team-content h3 a:hover {
    color: var(--secondary);
}

.team-card-full .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card-full .bio {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    border-radius: 50px;
}

/* Join Team CTA */
.join-team-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
}

.join-team-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.join-team-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.join-team-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* ===== Team Member Profile Page ===== */
.team-member-profile {
    padding-top: 0;
    padding-bottom: 80px;
    background: var(--gray-50);
}

.profile-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    padding-top: 50px;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.profile-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.profile-image {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    display: block;
}

.profile-placeholder {
    width: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
}

.profile-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.profile-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    color: var(--primary-dark);
}

.profile-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.profile-info-item:last-of-type {
    margin-bottom: 0;
}

.profile-info-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: var(--radius);
    flex-shrink: 0;
    font-size: 1rem;
}

.profile-info-item > div {
    flex: 1;
    min-width: 0;
}

.profile-info-item .label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.profile-info-item a,
.profile-info-item span:not(.label) {
    color: var(--gray-700);
    font-weight: 500;
    word-break: break-word;
    font-size: 0.95rem;
    line-height: 1.4;
}

.profile-info-item a:hover {
    color: var(--secondary);
}

.profile-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.125rem;
    transition: var(--transition-normal);
}

.social-link.linkedin {
    background: #0077b5;
    color: var(--white);
}

.social-link.twitter {
    background: #1da1f2;
    color: var(--white);
}

.social-link.github {
    background: #333;
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Profile Content */
.profile-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.profile-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--gray-100);
    text-align: center;
}

.profile-header h2 {
    margin-bottom: 10px;
    font-size: 2.25rem;
    color: var(--primary-dark);
}

.profile-header .position {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50px;
}

.profile-section {
    margin-bottom: 40px;
}

.profile-section:last-of-type {
    margin-bottom: 0;
}

.profile-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.35rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.profile-section h3 i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1rem;
}

.profile-section > p {
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 1.05rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-badge {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: var(--transition-normal);
}

.skill-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.education-list,
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.education-item,
.certification-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    transition: var(--transition-normal);
}

.education-item:hover,
.certification-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.education-item i,
.certification-item i {
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.education-item span,
.certification-item span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.profile-cta {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-100);
    justify-content: center;
}

.profile-cta .btn {
    padding: 16px 35px;
    font-size: 1rem;
}

/* Other Team Members Section */
.other-team-members {
    background: var(--gray-50);
    padding: 80px 0;
}

.other-team-members .team-card .team-content h3 a {
    color: var(--primary-dark);
}

.other-team-members .team-card .team-content h3 a:hover {
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-sidebar {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }

    .profile-image {
        min-height: 300px;
    }

    .profile-placeholder {
        font-size: 5rem;
        min-height: 300px;
    }

    .profile-content {
        padding: 40px;
    }

    .profile-header h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .team-member-profile {
        padding-bottom: 60px;
    }

    .profile-grid {
        padding-top: 30px;
    }

    .profile-sidebar {
        max-width: 100%;
    }

    .profile-image-wrapper {
        border-width: 3px;
    }

    .profile-image {
        min-height: 280px;
    }

    .profile-placeholder {
        font-size: 4rem;
        min-height: 280px;
    }

    .profile-info-card {
        padding: 25px;
    }

    .profile-content {
        padding: 30px 25px;
    }

    .profile-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .profile-header h2 {
        font-size: 1.625rem;
    }

    .profile-header .position {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .profile-section {
        margin-bottom: 30px;
    }

    .profile-section h3 {
        font-size: 1.15rem;
        gap: 12px;
    }

    .profile-section h3 i {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }

    .profile-section > p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .skills-list {
        gap: 10px;
    }

    .skill-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .education-item,
    .certification-item {
        padding: 15px 18px;
        gap: 12px;
    }

    .education-item span,
    .certification-item span {
        font-size: 0.95rem;
    }

    .profile-cta {
        flex-direction: column;
        gap: 15px;
        margin-top: 35px;
        padding-top: 30px;
    }

    .profile-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding: 25px 20px;
    }

    .profile-header h2 {
        font-size: 1.5rem;
    }

    .profile-info-item {
        gap: 12px;
    }

    .profile-info-item i {
        width: 40px;
        height: 40px;
    }
}

/* ===== Services Page ===== */
.services-page {
    padding-top: 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) .service-detail-content {
    order: 2;
}

.service-detail:nth-child(even) .service-detail-image {
    order: 1;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
}

.service-detail-features li i {
    color: var(--success);
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== Contact Page ===== */
.contact-page {
    padding-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding-top: 50px;
}

.contact-info {
    background: var(--primary-dark);
    border-radius: var(--radius-xl);
    padding: 50px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.15);
    color: var(--secondary);
    border-radius: var(--radius);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--gray-400);
    font-size: 0.95rem;
    display: block;
}

.contact-info-item a:hover {
    color: var(--secondary);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.contact-social a:hover {
    background: var(--secondary);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Alert Messages ===== */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ===== Quote Page ===== */
.quote-page {
    background: var(--gray-50);
    padding: 80px 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.quote-container h2 {
    text-align: center;
    margin-bottom: 16px;
}

.quote-container .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 40px;
}

/* ===== Feedback Page ===== */
.feedback-page {
    background: var(--gray-50);
    padding: 80px 0;
}

.feedback-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.feedback-intro {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.feedback-intro h2 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feedback-intro p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feedback-form small {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* Star Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--warning);
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.form-note i {
    color: var(--secondary);
    margin-top: 3px;
}

.form-note p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feedback-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .feedback-container {
        padding: 35px 25px;
    }

    .rating-input label {
        font-size: 1.75rem;
    }

    .feedback-success-actions {
        flex-direction: column;
    }

    .feedback-success-actions .btn {
        width: 100%;
    }
}

/* ===== Blog Page ===== */
.blog-page {
    padding-top: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--secondary);
}

.blog-excerpt {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* ===== Blog Post Page ===== */
.blog-post-page {
    padding-top: 0;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 50px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-post-meta {
    display: flex;
    gap: 25px;
    color: var(--gray-500);
}

.blog-post-featured {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-post-featured img {
    width: 100%;
}

.blog-post-content {
    font-size: 1.125rem;
    line-height: 1.9;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
    list-style: disc;
}

.blog-post-content img {
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

/* ===== Project Details Page ===== */
.project-details-page {
    padding-top: 0;
}

.project-details-container {
    padding-top: 50px;
}

.project-details-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-details-header h1 {
    margin-bottom: 20px;
}

.project-details-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.project-details-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
}

.project-details-meta span i {
    color: var(--secondary);
}

.project-featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-xl);
}

.project-featured-image img {
    width: 100%;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.project-details-content h2 {
    margin-bottom: 20px;
    margin-top: 40px;
}

.project-details-content h2:first-child {
    margin-top: 0;
}

.project-details-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.project-details-sidebar {
    position: sticky;
    top: 120px;
}

.project-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 30px;
}

.project-info-card h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.project-info-item {
    margin-bottom: 20px;
}

.project-info-item label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.project-info-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech-stack span {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary);
}

.footer-about {
    color: var(--gray-400);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--secondary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray-400);
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-contact a {
    display: block;
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.admin-login-link {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition-normal);
    opacity: 0.7;
}

.admin-login-link:hover {
    color: var(--secondary);
    opacity: 1;
}

.admin-login-link i {
    margin-right: 5px;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== Floating Feedback Button ===== */
.floating-feedback-btn {
    position: fixed;
    bottom: 100px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.floating-feedback-btn i {
    font-size: 1.25rem;
}

.floating-feedback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
    color: var(--white);
}

.floating-feedback-btn span {
    display: inline-block;
}

@media (max-width: 768px) {
    .floating-feedback-btn {
        bottom: 90px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .floating-feedback-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-feedback-btn span {
        display: none;
    }

    .floating-feedback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-feedback-btn i {
        margin: 0;
    }
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ===== No Results ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid,
    .about-intro,
    .service-detail,
    .contact-grid,
    .project-details-grid {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) .service-detail-content,
    .service-detail:nth-child(even) .service-detail-image {
        order: unset;
    }

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

    .about-image-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        padding: 40px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-stat {
        flex: 1 1 45%;
    }

    .about-features,
    .service-detail-features,
    .mission-vision-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social,
    .contact-social {
        justify-content: center;
    }

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

    .contact-info {
        order: 2;
    }

    .quote-container {
        padding: 40px 25px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .project-details-sidebar {
        position: static;
    }

    .blog-post-header h1 {
        font-size: 1.75rem;
    }

    .blog-post-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-stats {
        text-align: center;
    }

    .hero-stat {
        flex: 1 1 100%;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}
