/* ============================================
   Edigihub - Custom Styles
   Color Palette from Ubuntu Freelancers:
   Primary: #11746C | Accent: #C8D195 | Dark: #050708
   ============================================ */

:root {
    --primary: #11746C;
    --primary-dark: #0d5a54;
    --primary-light: #1a9e94;
    --accent: #C8D195;
    --accent-dark: #b3be7a;
    --dark: #050708;
    --gray: #7A7A7A;
    --light-bg: #F6F6F6;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-text-size-adjust: 100%;
}

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

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

.section-padding {
    padding: 100px 0;
}

/* ---- Typography ---- */
.section-tagline {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-taglight {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title-light {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

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

/* ---- Navbar ---- */
#mainNav {
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNav .brand-text {
    color: var(--white);
}

#mainNav .brand-accent {
    color: var(--accent);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

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

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

#mainNav.scrolled .brand-text {
    color: var(--dark);
}

#mainNav.scrolled .brand-accent {
    color: var(--primary);
}

#mainNav.scrolled .nav-link {
    color: var(--dark) !important;
}

#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
    color: var(--primary) !important;
}

#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(5, 7, 8, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: transparent;
    transition: var(--transition);
}

#mainNav.scrolled .navbar-collapse {
    background: var(--white);
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(5, 7, 8, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.btn-brand {
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
    border-radius: 100px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-brand:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 116, 108, 0.3);
}

.btn-outline-brand {
    background: transparent;
    color: var(--dark) !important;
    border: 2px solid var(--dark);
    border-radius: 100px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-outline-brand:hover {
    background: var(--dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ---- Hero Section ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-8px) translateX(4px); }
    66% { transform: translateY(4px) translateX(-4px); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.08); }
}
@keyframes drift {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

.anim-fade-up {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.anim-fade-left {
    opacity: 0;
    animation: fadeLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.82) 50%, rgba(5, 7, 8, 0.75) 100%);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: pulse-glow 6s ease-in-out infinite;
}
.hero-glow-1 {
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(17, 116, 108, 0.12) 0%, transparent 70%);
}
.hero-glow-2 {
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 209, 149, 0.06) 0%, transparent 70%);
    animation-delay: 3s;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}
.hero-particles .particle {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: drift 8s linear infinite;
}
.hero-particles .particle:nth-child(1) { left: 12%; animation-delay: 0s; animation-duration: 9s; }
.hero-particles .particle:nth-child(2) { left: 28%; animation-delay: 1.5s; animation-duration: 7s; width: 2px; height: 2px; background: var(--accent); }
.hero-particles .particle:nth-child(3) { left: 55%; animation-delay: 3s; animation-duration: 10s; }
.hero-particles .particle:nth-child(4) { left: 70%; animation-delay: 0.8s; animation-duration: 8s; width: 4px; height: 4px; }
.hero-particles .particle:nth-child(5) { left: 85%; animation-delay: 2.2s; animation-duration: 7.5s; background: var(--accent); width: 2px; height: 2px; }
.hero-particles .particle:nth-child(6) { left: 42%; animation-delay: 4s; animation-duration: 11s; }

.hero-row {
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
}

.hero-tagline {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
    border-radius: 100px;
    padding: 15px 34px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(17, 116, 108, 0.35);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 15px 34px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric {
    text-align: center;
    padding: 0 32px;
}

.hero-metric:first-child {
    padding-left: 0;
}

.hero-metric-number {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-metric-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ---- Hero Visual ---- */
.hero-visual-col {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    padding: 40px 0;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    aspect-ratio: 6/5;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 16px;
    z-index: 3;
    white-space: nowrap;
}

.hero-float-card i {
    font-size: 18px;
    color: var(--primary-light);
}

.float-card-num {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.float-card-text {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-float-1 {
    top: 8%;
    left: -16px;
    animation: float1 4s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 28%;
    right: -12px;
    animation: float2 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.hero-float-3 {
    bottom: 6%;
    left: 10%;
    animation: float3 6s ease-in-out infinite;
    animation-delay: 1.6s;
}

.float-dots {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}
.float-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
.float-dots span:nth-child(2) { background: var(--accent); }
.float-dots span:nth-child(3) { background: rgba(255,255,255,0.3); }

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.service-features li i {
    color: var(--primary);
    font-size: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ---- Why Choose Us ---- */
.why-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 500px;
}

.why-img-card {
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.why-img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 116, 108, 0.75);
    transition: var(--transition);
}

.why-img-card:hover::after {
    background: rgba(17, 116, 108, 0.85);
}

.why-img-1 {
    grid-row: 1 / 3;
}

.why-img-2 {
}

.why-img-3 {
}

.why-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.why-img-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.why-img-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.why-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon i {
    font-size: 24px;
    color: var(--white);
}

.why-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.why-feature p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ---- How It Works ---- */
.about-section {
    background: var(--white);
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid #eee;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.step-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonials-section {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 209, 149, 0.08);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 36px;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(200, 209, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 32px;
    color: var(--accent);
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.cta-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: var(--radius);
    padding: 60px 50px;
}

.cta-card h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 16px;
    color: rgba(5, 7, 8, 0.7);
    margin: 0;
}

.cta-card .btn-light {
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card .btn-light:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 116, 108, 0.3);
}

/* ---- Contact Section ---- */
.contact-section {
    background: var(--light-bg);
}

.contact-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-info-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dark);
}

.contact-info-item a,
.contact-info-item span {
    color: var(--gray);
    font-size: 14px;
}

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

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ---- Contact Form ---- */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(17, 116, 108, 0.1);
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-success p {
    color: var(--gray);
    font-size: 15px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.6);
}

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

.brand-text-light {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.brand-accent-light {
    color: var(--accent);
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-links-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary);
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 24px;
}

.footer-copy {
    font-size: 13px;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    margin: 0;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(17, 116, 108, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ---- Animations ---- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 52px;
    }
    .hero-metric {
        padding: 0 24px;
    }
    .hero-metric-number {
        font-size: 30px;
    }
    .hero-float-1 { left: -8px; }
    .hero-float-2 { right: -6px; }
    .section-title,
    .section-title-light {
        font-size: 36px;
    }
    .why-image-grid {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
    .hero-row {
        min-height: auto;
    }
    .hero-content {
        padding: 120px 0 30px;
        text-align: center;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-description {
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-metrics {
        justify-content: center;
        margin-top: 40px;
        padding-top: 28px;
    }
    .hero-metric {
        padding: 0 20px;
    }
    .hero-metric:first-child {
        padding-left: 0;
    }
    .hero-metric-number {
        font-size: 28px;
    }
    .hero-metric-label {
        font-size: 11px;
    }
    .hero-visual-col {
        margin-top: 40px;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-float-1 { left: 0; top: 4%; }
    .hero-float-2 { right: 0; bottom: 26%; }
    .hero-float-3 { left: 8%; bottom: 4%; }
    .why-image-grid {
        height: 320px;
        margin-bottom: 32px;
    }
    .why-section .row {
        flex-direction: column-reverse;
    }
    .cta-section {
        margin-top: 0;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow);
        margin-top: 12px;
    }
    .navbar-collapse .nav-link {
        color: var(--dark) !important;
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary) !important;
    }
    .service-detail-img img {
        height: 320px;
    }
    .about-story-img img {
        height: 380px;
    }
    .featured-post .row > div {
        order: unset !important;
    }
    .featured-post-img {
        min-height: 280px;
    }
    .featured-post-content {
        padding: 32px 28px;
    }
    .pricing-card.pricing-featured {
        transform: scale(1);
    }
    .pricing-card.pricing-featured:hover {
        transform: translateY(-6px);
    }
    .contact-sidebar {
        margin-top: 32px;
    }
    /* Force 2-col grids on tablets */
    .services-section .row.g-4,
    .about-section .row.g-4,
    #testimonials .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 48px 0;
    }
    .hero-section {
        min-height: auto;
    }
    .hero-row {
        min-height: auto;
    }
    .hero-content {
        padding: 110px 0 20px;
        text-align: center;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }
    .hero-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 13px;
    }
    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        margin-top: 32px;
        padding-top: 24px;
    }
    .hero-metric {
        padding: 10px 16px;
    }
    .hero-metric:first-child {
        padding-left: 16px;
    }
    .hero-metric-divider {
        height: 32px;
    }
    .hero-metric-number {
        font-size: 24px;
    }
    .hero-metric-label {
        font-size: 10px;
    }
    .hero-visual-col {
        margin-top: 32px;
    }
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-float-card {
        padding: 8px 12px;
        border-radius: 10px;
        gap: 8px;
    }
    .hero-float-card i {
        font-size: 14px;
    }
    .float-card-num {
        font-size: 13px;
    }
    .float-card-text {
        font-size: 9px;
    }
    .hero-float-1 { left: -4px; top: 2%; }
    .hero-float-2 { right: -4px; bottom: 24%; }
    .hero-float-3 { left: 4%; bottom: 2%; }
    .section-title,
    .section-title-light {
        font-size: 24px;
    }
    .section-subtitle,
    .section-subtitle-light {
        font-size: 14px;
    }
    .section-tagline,
    .section-taglight {
        font-size: 11px;
        margin-bottom: 8px;
    }
    /* 2-col grid for services, steps, testimonials, values, team */
    .services-section .row.g-4,
    .about-section .row.g-4,
    #testimonials .row.g-4,
    .why-section .why-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    /* Keep about mission + values cards 2-col */
    .row.g-4:has(.mission-card),
    .row.g-4:has(.value-card) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .service-card {
        padding: 20px 16px;
    }
    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }
    .service-icon i {
        font-size: 20px;
    }
    .service-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .service-card p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .service-features {
        display: none;
    }
    .service-link {
        font-size: 12px;
    }
    .step-card {
        padding: 20px 14px;
    }
    .step-number {
        font-size: 36px;
        margin-bottom: 8px;
    }
    .step-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .step-card p {
        font-size: 11px;
        line-height: 1.5;
    }
    .why-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
        gap: 8px;
    }
    .why-img-1 {
        grid-row: 1 / 3;
        height: 200px;
    }
    .why-img-2,
    .why-img-3 {
        height: 96px;
    }
    .why-section .row {
        flex-direction: column;
    }
    .why-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .why-features {
        gap: 14px;
    }
    .why-feature {
        gap: 10px;
    }
    .why-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .why-feature-icon i {
        font-size: 18px;
    }
    .why-feature h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .why-feature p {
        font-size: 12px;
        line-height: 1.5;
    }
    .cta-card {
        padding: 32px 20px;
        text-align: center;
    }
    .cta-card h2 {
        font-size: 22px;
    }
    .cta-card p {
        font-size: 13px;
    }
    .cta-card .btn-light {
        width: 100%;
    }
    .testimonial-card {
        padding: 20px 16px;
    }
    .testimonial-card > p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .testimonial-stars i {
        font-size: 12px;
    }
    .testimonial-author {
        gap: 10px;
    }
    .author-avatar {
        width: 36px;
        height: 36px;
    }
    .testimonial-author h5 {
        font-size: 13px;
    }
    .testimonial-author span {
        font-size: 11px;
    }
    .contact-form-card {
        padding: 24px 16px;
    }
    .form-title {
        font-size: 20px;
    }
    .contact-info-item {
        gap: 10px;
    }
    .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .contact-info-item h5 {
        font-size: 13px;
    }
    .contact-info-item a,
    .contact-info-item span {
        font-size: 12px;
    }
    .service-detail-img img {
        height: 200px;
    }
    .service-detail-text {
        font-size: 13px;
    }
    .sdf-item > i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }
    .sdf-item h5 {
        font-size: 14px;
    }
    .sdf-item p {
        font-size: 12px;
    }
    .pricing-card {
        padding: 24px 16px;
    }
    .portfolio-img img {
        height: 180px;
    }
    .portfolio-overlay-content h4 {
        font-size: 15px;
    }
    .portfolio-overlay-content p {
        font-size: 12px;
    }
    .portfolio-stat-num {
        font-size: 30px;
    }
    .portfolio-stat-label {
        font-size: 12px;
    }
    .blog-img img {
        height: 160px;
    }
    .blog-content {
        padding: 16px;
    }
    .blog-content h4 {
        font-size: 14px;
    }
    .blog-content p {
        font-size: 12px;
    }
    .featured-post-img {
        min-height: 200px;
    }
    .featured-post-content {
        padding: 20px 16px;
    }
    .featured-post-content h2 {
        font-size: 20px;
    }
    .featured-post-content p {
        font-size: 13px;
    }
    .map-placeholder {
        height: 160px;
    }
    .about-story-img img {
        height: 240px;
    }
    .about-stats-row {
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }
    .about-stat {
        min-width: calc(50% - 8px);
    }
    .about-stat-num {
        font-size: 24px;
    }
    .about-exp-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }
    .exp-number {
        font-size: 22px;
    }
    .exp-text {
        font-size: 11px;
    }
    .mission-card {
        padding: 24px 16px;
    }
    .mission-card h3 {
        font-size: 18px;
    }
    .mission-card p {
        font-size: 13px;
    }
    .mission-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    .mission-icon i {
        font-size: 22px;
    }
    .value-card {
        padding: 20px 14px;
    }
    .value-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    .value-icon i {
        font-size: 20px;
    }
    .value-card h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .value-card p {
        font-size: 12px;
    }
    .team-img {
        width: 110px;
        height: 110px;
    }
    .team-card {
        padding: 20px 14px;
    }
    .team-card h4 {
        font-size: 15px;
    }
    .team-card span {
        font-size: 12px;
    }
    /* Footer */
    .footer-legal {
        justify-content: center;
        margin-top: 12px;
    }
    .site-footer {
        padding: 48px 0 24px;
    }
    .footer-brand {
        margin-bottom: 12px;
    }
    .brand-text-light {
        font-size: 20px;
    }
    .footer-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }
    .page-header {
        padding: 110px 0 40px;
    }
    .page-title {
        font-size: 26px;
    }
    .page-description {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 36px 0;
    }
    .hero-content {
        padding: 100px 0 16px;
    }
    .hero-title {
        font-size: 27px;
        letter-spacing: -0.5px;
    }
    .hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .hero-description {
        font-size: 14px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 13px 20px;
        font-size: 12px;
    }
    .hero-metric {
        padding: 8px 12px;
    }
    .hero-metric:first-child {
        padding-left: 12px;
    }
    .hero-metric-number {
        font-size: 22px;
    }
    .hero-metric-label {
        font-size: 9px;
    }
    .hero-visual {
        max-width: 320px;
    }
    .hero-float-1 { left: 0; top: 0; }
    .hero-float-2 { right: 0; bottom: 22%; }
    .hero-float-3 { left: 2%; bottom: 0; }
    .section-title,
    .section-title-light {
        font-size: 22px;
    }
    .section-subtitle,
    .section-subtitle-light {
        font-size: 13px;
    }
    /* 2-col grid for smaller phones too */
    .services-section .row.g-4,
    .about-section .row.g-4,
    #testimonials .row.g-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .row.g-4:has(.mission-card),
    .row.g-4:has(.value-card) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-card {
        padding: 16px 12px;
    }
    .service-card h3 {
        font-size: 13px;
    }
    .service-card p {
        font-size: 11px;
    }
    .service-icon {
        width: 36px;
        height: 36px;
    }
    .service-icon i {
        font-size: 18px;
    }
    .step-card {
        padding: 16px 10px;
    }
    .step-number {
        font-size: 28px;
    }
    .step-card h3 {
        font-size: 13px;
    }
    .step-card p {
        font-size: 11px;
    }
    .cta-card {
        padding: 28px 14px;
    }
    .cta-card h2 {
        font-size: 19px;
    }
    .cta-card p {
        font-size: 12px;
    }
    .testimonial-card {
        padding: 16px 12px;
    }
    .testimonial-card > p {
        font-size: 11px;
    }
    .testimonial-author h5 {
        font-size: 12px;
    }
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .contact-info-icon {
        margin: 0 auto;
    }
    .social-links {
        justify-content: center;
    }
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .social-links-footer {
        justify-content: center;
    }
    .footer-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 13px;
    }
    .portfolio-filters {
        gap: 4px;
    }
    .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    .blog-card h4 {
        font-size: 13px;
    }
    .team-img {
        width: 90px;
        height: 90px;
    }
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    .pagination {
        gap: 2px;
    }
    .page-header {
        padding: 100px 0 32px;
    }
    .page-title {
        font-size: 22px;
    }
    .about-story-img img {
        height: 200px;
    }
    .mission-card h3 {
        font-size: 16px;
    }
    .value-card {
        padding: 16px 10px;
    }
    .value-card h4 {
        font-size: 13px;
    }
    .team-card h4 {
        font-size: 13px;
    }
    .contact-sidebar {
        padding: 24px 16px;
    }
    .sidebar-title {
        font-size: 18px;
    }
    .sidebar-text {
        font-size: 13px;
    }
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(160deg, #0a1628 0%, #0d2137 30%, #11746C 100%);
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 116, 108, 0.88) 0%, rgba(13, 90, 84, 0.92) 100%);
    z-index: 1;
}

.page-header > .container {
    position: relative;
    z-index: 2;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 209, 149, 0.06);
    z-index: 1;
}

.page-tagline {
    display: inline-block;
    background: rgba(200, 209, 149, 0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 209, 149, 0.2);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.7;
}

/* ---- About Page ---- */
.about-story-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-story-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-exp-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 8px 30px rgba(17, 116, 108, 0.4);
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.about-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.about-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ---- Mission Cards ---- */
.mission-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
}

.mission-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon i {
    font-size: 28px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.mission-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ---- Values Cards ---- */
.value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid #eee;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(17, 116, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary);
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ---- Team Cards ---- */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid #eee;
    transition: var(--transition);
}

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

.team-img {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--light-bg);
}

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

.team-social {
    position: absolute;
    inset: 0;
    background: rgba(17, 116, 108, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 16px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--accent);
}

.team-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* ---- Services Detail Page ---- */
.service-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.service-detail-img:hover img {
    transform: scale(1.03);
}

.service-detail-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sdf-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sdf-item > i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(17, 116, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.sdf-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.sdf-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ---- Pricing Cards ---- */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 2px solid #eee;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.pricing-card.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--gray);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-badge.featured {
    background: var(--primary);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.pricing-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--dark);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 16px;
}

/* ---- Portfolio Page ---- */
.portfolio-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 2px solid #e0e0e0;
    background: transparent;
    color: var(--gray);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

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

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 116, 108, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-overlay-content {
    text-align: center;
    padding: 24px;
    color: var(--white);
}

.portfolio-category {
    display: inline-block;
    background: rgba(200, 209, 149, 0.3);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.portfolio-overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.portfolio-overlay-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.portfolio-stat {
    text-align: center;
    color: var(--white);
}

.portfolio-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 8px;
}

.portfolio-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Blog Page ---- */
.featured-post {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-post-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-post-content {
    padding: 48px 40px;
}

.featured-post-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-post-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.post-meta span {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-category {
    background: rgba(17, 116, 108, 0.1);
    color: var(--primary) !important;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
}

.blog-content .post-meta {
    margin-bottom: 12px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-pagination {
    margin-top: 48px;
}

.page-link {
    color: var(--dark);
    border: 2px solid #e0e0e0;
    border-radius: 10px !important;
    margin: 0 4px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.newsletter-form .form-control {
    border-radius: 100px 0 0 100px;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
}

.newsletter-form .btn {
    border-radius: 0 100px 100px 0;
    padding: 14px 28px;
    font-weight: 700;
}

/* ---- Contact Page Sidebar ---- */
.contact-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sidebar-text {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 28px;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.sidebar-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sidebar-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(17, 116, 108, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-info-icon i {
    font-size: 20px;
    color: var(--primary);
}

.sidebar-info-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dark);
}

.sidebar-info-item a,
.sidebar-info-item span {
    font-size: 14px;
    color: var(--gray);
}

.sidebar-info-item a:hover {
    color: var(--primary);
}

.sidebar-social {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.sidebar-social h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.sidebar-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.sidebar-faq h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.faq-item {
    margin-bottom: 16px;
}

.faq-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.faq-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-subtitle {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 28px;
}

/* ---- Map Section ---- */
.map-section {
    padding: 0;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--white);
}

.map-overlay i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 12px;
}

.map-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ---- Inner Page Responsive ---- */
@media (max-width: 991px) {
    .page-header {
        padding: 150px 0 60px;
    }
    .page-title {
        font-size: 34px;
    }
    .contact-sidebar {
        margin-top: 32px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 130px 0 50px;
    }
    .page-title {
        font-size: 28px;
    }
    .page-description {
        font-size: 15px;
    }
    .about-story-img img {
        height: 260px;
    }
    .service-detail-img img {
        height: 220px;
    }
    .featured-post-content h2 {
        font-size: 20px;
    }
    .featured-post-content p {
        font-size: 13px;
    }
    .cta-stat-item {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 120px 0 40px;
    }
    .page-title {
        font-size: 24px;
    }
    .page-description {
        font-size: 14px;
    }
    .about-story-img img {
        height: 220px;
    }
    .about-exp-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
    }
    .exp-number {
        font-size: 20px;
    }
    .exp-text {
        font-size: 11px;
    }
    .service-detail-img img {
        height: 200px;
    }
    .contact-form-card,
    .contact-sidebar {
        padding: 24px 16px;
    }
    .sidebar-info-item {
        gap: 10px;
    }
    .sidebar-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .sidebar-info-icon i {
        font-size: 18px;
    }
    .sidebar-info-item h5 {
        font-size: 14px;
    }
    .sidebar-info-item a,
    .sidebar-info-item span {
        font-size: 13px;
    }
    .faq-item h6 {
        font-size: 13px;
    }
    .faq-item p {
        font-size: 12px;
    }
    .portfolio-stat-num {
        font-size: 28px;
    }
    .map-placeholder {
        height: 160px;
    }
    .map-overlay i {
        font-size: 32px;
    }
    .map-overlay h3 {
        font-size: 18px;
    }
    .map-overlay p {
        font-size: 13px;
    }
}

/* ---- Privacy & Terms Content ---- */
.privacy-content,
.terms-content {
    font-size: 16px;
    line-height: 1.8;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 14px;
}

.privacy-content h4,
.terms-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 10px;
}

.privacy-content p,
.terms-content p {
    color: #444;
    margin-bottom: 14px;
}

.privacy-content ul,
.terms-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 8px;
    color: #444;
}

@media (max-width: 767px) {
    .privacy-content,
    .terms-content {
        font-size: 15px;
    }
    .privacy-content h3,
    .terms-content h3 {
        font-size: 19px;
    }
    .privacy-content h4,
    .terms-content h4 {
        font-size: 16px;
    }
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* ---- Mobile Touch Improvements ---- */
@media (max-width: 767px) {
    .form-control,
    .form-select {
        padding: 14px 16px;
        font-size: 16px;
        -webkit-appearance: none;
    }
    .form-label {
        font-size: 13px;
    }
    .btn-brand {
        padding: 14px 28px;
        min-height: 48px;
    }
    .filter-btn {
        min-height: 40px;
    }
    a, button {
        touch-action: manipulation;
    }
}

/* ---- Print Styles ---- */
@media print {
    .navbar, .site-footer, .back-to-top, .breadcrumb {
        display: none !important;
    }
    .page-header {
        padding: 40px 0;
        background: #11746C !important;
    }
    .section-padding {
        padding: 20px 0;
    }
    body {
        font-size: 12pt;
        color: #000;
    }
}
